hildon 2.1.42 Reference Manual | ||||
---|---|---|---|---|
HildonTimeSelector; GtkWidget* hildon_time_selector_new (void); gboolean hildon_time_selector_set_time (HildonTimeSelector *selector, guint hours, guint minutes); void hildon_time_selector_get_time (HildonTimeSelector *selector, guint *hours, guint *minutes);
GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkContainer +----GtkBox +----GtkVBox +----HildonTouchSelector +----HildonTimeSelector
HildonTimeSelector allows users to choose a time by selecting hour and minute. It also allows choosing between AM or PM format.
The currently selected time can be altered with
hildon_time_selector_set_time()
, and retrieved using
hildon_time_selector_get_time()
.
Use this widget instead of deprecated HildonTimeEditor widget.
GtkWidget* hildon_time_selector_new (void);
Creates a new HildonTimeSelector
Returns : | a new HildonTimeSelector |
Since 2.2
gboolean hildon_time_selector_set_time (HildonTimeSelector *selector, guint hours, guint minutes);
Sets the current active hour on the HildonTimeSelector widget
The format of the hours accepted is always 24h format, with a range (0-23):(0-59).
selector : |
the HildonTimeSelector |
hours : |
the current hour (0-23) |
minutes : |
the current minute (0-59) |
Returns : | TRUE on success, FALSE otherwise
|
Since 2.2
void hildon_time_selector_get_time (HildonTimeSelector *selector, guint *hours, guint *minutes);
Gets the current active hour on the HildonTimeSelector widget. Both year
and minutes
can be NULL.
This method returns the date always in 24h format, with a range (0-23):(0-59)
selector : |
the HildonTimeSelector |
hours : |
to set the current hour (0-23) |
minutes : |
to set the current minute (0-59) |
Since 2.2