1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/*
* This file is a part of hildon
*
* Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
*
* Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#ifndef HILDON_DISABLE_DEPRECATED
#ifndef __HILDON_TIME_EDITOR_H__
#define __HILDON_TIME_EDITOR_H__
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define HILDON_TYPE_TIME_EDITOR \
(hildon_time_editor_get_type())
#define HILDON_TIME_EDITOR(obj) \
(G_TYPE_CHECK_INSTANCE_CAST (obj, \
HILDON_TYPE_TIME_EDITOR, HildonTimeEditor))
#define HILDON_TIME_EDITOR_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), HILDON_TYPE_TIME_EDITOR, \
HildonTimeEditorClass))
#define HILDON_IS_TIME_EDITOR(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE (obj, HILDON_TYPE_TIME_EDITOR))
#define HILDON_IS_TIME_EDITOR_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_TIME_EDITOR))
typedef enum
{
HILDON_DATE_TIME_ERROR_NO_ERROR = -1,
HILDON_DATE_TIME_ERROR_MAX_HOURS,
HILDON_DATE_TIME_ERROR_MAX_MINS,
HILDON_DATE_TIME_ERROR_MAX_SECS,
HILDON_DATE_TIME_ERROR_MAX_DAY,
HILDON_DATE_TIME_ERROR_MAX_MONTH,
HILDON_DATE_TIME_ERROR_MAX_YEAR,
HILDON_DATE_TIME_ERROR_MIN_HOURS,
HILDON_DATE_TIME_ERROR_MIN_MINS,
HILDON_DATE_TIME_ERROR_MIN_SECS,
HILDON_DATE_TIME_ERROR_MIN_DAY,
HILDON_DATE_TIME_ERROR_MIN_MONTH,
HILDON_DATE_TIME_ERROR_MIN_YEAR,
HILDON_DATE_TIME_ERROR_EMPTY_HOURS,
HILDON_DATE_TIME_ERROR_EMPTY_MINS,
HILDON_DATE_TIME_ERROR_EMPTY_SECS,
HILDON_DATE_TIME_ERROR_EMPTY_DAY,
HILDON_DATE_TIME_ERROR_EMPTY_MONTH,
HILDON_DATE_TIME_ERROR_EMPTY_YEAR,
HILDON_DATE_TIME_ERROR_MIN_DURATION,
HILDON_DATE_TIME_ERROR_MAX_DURATION,
HILDON_DATE_TIME_ERROR_INVALID_CHAR,
HILDON_DATE_TIME_ERROR_INVALID_DATE,
HILDON_DATE_TIME_ERROR_INVALID_TIME
} HildonDateTimeError;
typedef struct _HildonTimeEditor HildonTimeEditor;
typedef struct _HildonTimeEditorClass HildonTimeEditorClass;
struct _HildonTimeEditor
{
GtkContainer parent;
};
struct _HildonTimeEditorClass
{
GtkContainerClass parent_class;
gboolean (*time_error) (HildonTimeEditor *editor,
HildonDateTimeError type);
};
GType G_GNUC_CONST
hildon_time_editor_get_type (void);
GtkWidget*
hildon_time_editor_new (void);
void
hildon_time_editor_set_time (HildonTimeEditor *editor,
guint hours,
guint minutes,
guint seconds);
void
hildon_time_editor_get_time (HildonTimeEditor *editor,
guint *hours,
guint *minutes,
guint *seconds);
void
hildon_time_editor_set_duration_range (HildonTimeEditor *editor,
guint min_seconds,
guint max_seconds);
void
hildon_time_editor_get_duration_range (HildonTimeEditor *editor,
guint *min_seconds,
guint *max_seconds);
void
hildon_time_editor_set_ticks (HildonTimeEditor *editor,
guint ticks);
guint
hildon_time_editor_get_ticks (HildonTimeEditor *editor);
void
hildon_time_editor_set_show_seconds (HildonTimeEditor *editor,
gboolean show_seconds);
gboolean
hildon_time_editor_get_show_seconds (HildonTimeEditor *editor);
void
hildon_time_editor_set_show_hours (HildonTimeEditor *editor,
gboolean show_hours);
gboolean
hildon_time_editor_get_show_hours (HildonTimeEditor *editor);
void
hildon_time_editor_set_duration_mode (HildonTimeEditor *editor,
gboolean duration_mode);
gboolean
hildon_time_editor_get_duration_mode (HildonTimeEditor *editor);
void
hildon_time_editor_set_duration_min (HildonTimeEditor *editor,
guint duration_min);
guint
hildon_time_editor_get_duration_min (HildonTimeEditor *editor);
void
hildon_time_editor_set_duration_max (HildonTimeEditor *editor,
guint duration_max);
guint
hildon_time_editor_get_duration_max (HildonTimeEditor *editor);
void
hildon_time_editor_get_time_separators (GtkLabel *hm_sep_label,
GtkLabel *ms_sep_label);
G_END_DECLS
#endif /* __HILDON_TIME_EDITOR_H__ */
#endif /* HILDON_DISABLE_DEPRECATED */
|