changes related to temperature and layout
[monky] / src / timeinfo.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
14  *      (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30 #ifndef _TIMEINFO_H
31 #define _TIMEINFO_H
32
33 /* for the times_in_seconds configuration variable and it's users */
34 void set_times_in_seconds(char);
35 char times_in_seconds(void);
36
37 /* since time and utime are quite equal, certain functions
38  * are shared in between both text object types. */
39
40 /* parse args passed to *time objects */
41 void scan_time(struct text_object *, const char *);
42 void scan_tztime(struct text_object *, const char *);
43
44 /* print the time */
45 void print_time(struct text_object *, char *, int);
46 void print_utime(struct text_object *, char *, int);
47 void print_tztime(struct text_object *, char *, int);
48
49 /* free object data */
50 void free_time(struct text_object *);
51 void free_tztime(struct text_object *);
52
53 #endif /* _TIMEINFO_H */
54
55 void print_format_time(struct text_object *obj, char *p, int p_max_size);