* hildon-widgets/hildon-time-editor.h: indent, improve readability.
[hildon] / hildon-widgets / hildon-time-editor.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005 Nokia Corporation.
5  *
6  * Contact: Luc Pionchon <luc.pionchon@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_TIME_EDITOR_H__
26 #define __HILDON_TIME_EDITOR_H__
27
28 #include <gtk/gtkcontainer.h>
29
30 G_BEGIN_DECLS
31
32 #define HILDON_TYPE_TIME_EDITOR            (hildon_time_editor_get_type())
33
34 #define HILDON_TIME_EDITOR(obj)            (GTK_CHECK_CAST (obj,           HILDON_TYPE_TIME_EDITOR, HildonTimeEditor))
35 #define HILDON_TIME_EDITOR_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), HILDON_TYPE_TIME_EDITOR, HildonTimeEditorClass))
36
37 #define HILDON_IS_TIME_EDITOR(obj)         (GTK_CHECK_TYPE       (obj,     HILDON_TYPE_TIME_EDITOR))
38 #define HILDON_IS_TIME_EDITOR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_TIME_EDITOR))
39
40
41 typedef struct _HildonTimeEditor      HildonTimeEditor;
42 typedef struct _HildonTimeEditorClass HildonTimeEditorClass;
43
44 struct _HildonTimeEditor {
45     GtkContainer parent;
46 };
47
48 struct _HildonTimeEditorClass {
49     GtkContainerClass parent_class;
50 };
51
52
53 GType      hildon_time_editor_get_type(void) G_GNUC_CONST;
54 GtkWidget *hildon_time_editor_new(void);
55
56
57 void       hildon_time_editor_set_time           (HildonTimeEditor * editor,
58                                                   guint              hours,
59                                                   guint              minutes,
60                                                   guint              seconds);
61
62 void       hildon_time_editor_get_time           (HildonTimeEditor * editor,
63                                                   guint            * hours,
64                                                   guint            * minutes,
65                                                   guint            * seconds);
66
67 #ifndef HILDON_DISABLE_DEPRECATED
68 void       hildon_time_editor_show_seconds         (HildonTimeEditor * editor, gboolean enable);
69 void       hildon_time_editor_enable_duration_mode (HildonTimeEditor * editor, gboolean enable);
70 #endif /* HILDON_DISABLE_DEPRECATED */
71
72
73 void       hildon_time_editor_set_duration_range (HildonTimeEditor * editor,
74                                                   guint              min_seconds,
75                                                   guint              max_seconds);
76
77 void       hildon_time_editor_get_duration_range (HildonTimeEditor * editor,
78                                                   guint            * min_seconds,
79                                                   guint            * max_seconds);
80
81 void       hildon_time_editor_set_ticks          (HildonTimeEditor * editor, guint    ticks);
82 guint      hildon_time_editor_get_ticks          (HildonTimeEditor * editor);
83
84 void       hildon_time_editor_set_show_seconds   (HildonTimeEditor * editor, gboolean show_seconds);
85 gboolean   hildon_time_editor_get_show_seconds   (HildonTimeEditor * editor);
86
87 void       hildon_time_editor_set_show_hours     (HildonTimeEditor * editor, gboolean show_hours);
88 gboolean   hildon_time_editor_get_show_hours     (HildonTimeEditor * editor);
89
90 void       hildon_time_editor_set_duration_mode  (HildonTimeEditor * editor, gboolean duration_mode);
91 gboolean   hildon_time_editor_get_duration_mode  (HildonTimeEditor * editor);
92
93 void       hildon_time_editor_set_duration_min   (HildonTimeEditor * editor, guint    duration_min);
94 guint      hildon_time_editor_get_duration_min   (HildonTimeEditor * editor);
95
96 void       hildon_time_editor_set_duration_max   (HildonTimeEditor * editor, guint    duration_max);
97 guint      hildon_time_editor_get_duration_max   (HildonTimeEditor * editor);
98
99
100 G_END_DECLS
101 #endif /* __HILDON_TIME_EDITOR_H__ */