Synopsis
GType calendar_time_get_type ();
CalendarTime* calendar_time_new ();
CalendarTime* calendar_time_new_dmyhms (guint d,
guint m,
guint y,
gint h,
gint min,
gint s);
gboolean calendar_time_set_dmy (CalendarTime *ct,
guint d,
guint m,
guint y);
gboolean calendar_time_set_hmst (CalendarTime *ct,
guint h,
guint m,
guint s,
guint t);
gboolean calendar_time_set_date (CalendarTime *ct,
GDate *date);
gboolean calendar_time_set_datetime (CalendarTime *ct,
const gchar *datetime);
gboolean calendar_time_set_hmst_str (CalendarTime *ct,
const gchar *time);
gchar* calendar_time_to_str_hmst (CalendarTime *ct);
GDate* calendar_time_get_date (CalendarTime *ct);
#define TYPE_CALENDAR_TIME
#define CALENDAR_TIME (object)
#define CALENDAR_TIME_CLASS (klass)
#define IS_CALENDAR_TIME (object)
#define IS_CALENDAR_TIME_CLASS (klass)
#define CALENDAR_TIME_GET_CLASS (object)
Details
calendar_time_get_type ()
GType calendar_time_get_type ();
calendar_time_new ()
CalendarTime* calendar_time_new ();
calendar_time_new_dmyhms ()
CalendarTime* calendar_time_new_dmyhms (guint d,
guint m,
guint y,
gint h,
gint min,
gint s);
calendar_time_set_dmy ()
gboolean calendar_time_set_dmy (CalendarTime *ct,
guint d,
guint m,
guint y);
calendar_time_set_hmst ()
gboolean calendar_time_set_hmst (CalendarTime *ct,
guint h,
guint m,
guint s,
guint t);
calendar_time_set_date ()
gboolean calendar_time_set_date (CalendarTime *ct,
GDate *date);
calendar_time_set_datetime ()
gboolean calendar_time_set_datetime (CalendarTime *ct,
const gchar *datetime);
calendar_time_set_hmst_str ()
gboolean calendar_time_set_hmst_str (CalendarTime *ct,
const gchar *time);
calendar_time_to_str_hmst ()
gchar* calendar_time_to_str_hmst (CalendarTime *ct);
calendar_time_get_date ()
GDate* calendar_time_get_date (CalendarTime *ct);
TYPE_CALENDAR_TIME
#define TYPE_CALENDAR_TIME (calendar_time_get_type())
CALENDAR_TIME()
#define CALENDAR_TIME(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TYPE_CALENDAR_TIME, CalendarTime))
CALENDAR_TIME_CLASS()
#define CALENDAR_TIME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_CALENDAR_TIME, CalendarTimeClass))
IS_CALENDAR_TIME()
#define IS_CALENDAR_TIME(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TYPE_CALENDAR_TIME))
IS_CALENDAR_TIME_CLASS()
#define IS_CALENDAR_TIME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CALENDAR_TIME))
CALENDAR_TIME_GET_CLASS()
#define CALENDAR_TIME_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), TYPE_CALENDAR_TIME, CalendarTimeClass))