calendartime

Name

calendartime -- 

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)

Description

Details

calendar_time_get_type ()

GType       calendar_time_get_type          ();

Returns :


calendar_time_new ()

CalendarTime* calendar_time_new             ();

Returns :


calendar_time_new_dmyhms ()

CalendarTime* calendar_time_new_dmyhms      (guint d,
                                             guint m,
                                             guint y,
                                             gint h,
                                             gint min,
                                             gint s);

d :

m :

y :

h :

min :

s :

Returns :


calendar_time_set_dmy ()

gboolean    calendar_time_set_dmy           (CalendarTime *ct,
                                             guint d,
                                             guint m,
                                             guint y);

ct :

d :

m :

y :

Returns :


calendar_time_set_hmst ()

gboolean    calendar_time_set_hmst          (CalendarTime *ct,
                                             guint h,
                                             guint m,
                                             guint s,
                                             guint t);

ct :

h :

m :

s :

t :

Returns :


calendar_time_set_date ()

gboolean    calendar_time_set_date          (CalendarTime *ct,
                                             GDate *date);

ct :

date :

Returns :


calendar_time_set_datetime ()

gboolean    calendar_time_set_datetime      (CalendarTime *ct,
                                             const gchar *datetime);

ct :

datetime :

Returns :


calendar_time_set_hmst_str ()

gboolean    calendar_time_set_hmst_str      (CalendarTime *ct,
                                             const gchar *time);

ct :

time :

Returns :


calendar_time_to_str_hmst ()

gchar*      calendar_time_to_str_hmst       (CalendarTime *ct);

ct :

Returns :


calendar_time_get_date ()

GDate*      calendar_time_get_date          (CalendarTime *ct);

ct :

Returns :


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))

object :


CALENDAR_TIME_CLASS()

#define CALENDAR_TIME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_CALENDAR_TIME, CalendarTimeClass))

klass :


IS_CALENDAR_TIME()

#define IS_CALENDAR_TIME(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TYPE_CALENDAR_TIME))

object :


IS_CALENDAR_TIME_CLASS()

#define IS_CALENDAR_TIME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CALENDAR_TIME))

klass :


CALENDAR_TIME_GET_CLASS()

#define CALENDAR_TIME_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), TYPE_CALENDAR_TIME, CalendarTimeClass))

object :