From 2e3bf2d247de7646868bc45167b5e3afa8b48e10 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 10 Jan 2001 02:15:08 +0000 Subject: More Makefile organization to compile svn path=/trunk/; revision=7350 --- .../cal-client/evolution-cal-client-decl.txt | 39 ++++++++----- .../cal-client/evolution-cal-client.hierarchy | 3 + .../cal-client/evolution-cal-client.signals | 6 +- doc/devel/calendar/cal-client/tmpl/cal-client.sgml | 18 ------ .../tmpl/evolution-cal-client-unused.sgml | 16 +++--- .../calendar/cal-util/evolution-cal-util-decl.txt | 34 +++++++----- .../calendar/cal-util/evolution-cal-util.hierarchy | 3 + .../calendar/cal-util/tmpl/cal-component.sgml | 64 ++-------------------- doc/devel/calendar/cal-util/tmpl/cal-util.sgml | 6 +- .../cal-util/tmpl/evolution-cal-util-unused.sgml | 3 +- 10 files changed, 71 insertions(+), 121 deletions(-) (limited to 'doc/devel') diff --git a/doc/devel/calendar/cal-client/evolution-cal-client-decl.txt b/doc/devel/calendar/cal-client/evolution-cal-client-decl.txt index 498285a370..54de988830 100644 --- a/doc/devel/calendar/cal-client/evolution-cal-client-decl.txt +++ b/doc/devel/calendar/cal-client/evolution-cal-client-decl.txt @@ -1,3 +1,16 @@ + +CalClientChangeType +typedef enum { + CAL_CLIENT_CHANGE_ADDED = 1 << 0, + CAL_CLIENT_CHANGE_MODIFIED = 1 << 1, + CAL_CLIENT_CHANGE_DELETED = 1 << 2 +} CalClientChangeType; + + +cal_client_change_list_free +void +GList *list + CAL_CLIENT_TYPE #define CAL_CLIENT_TYPE (cal_client_get_type ()) @@ -53,6 +66,19 @@ struct CalClient { CalClientPrivate *priv; }; + +CalClientClass +struct CalClientClass { + GtkObjectClass parent_class; + + /* Notification signals */ + + void (* cal_loaded) (CalClient *client, CalClientLoadStatus status); + + void (* obj_updated) (CalClient *client, const char *uid); + void (* obj_removed) (CalClient *client, const char *uid); +}; + cal_client_get_type GtkType @@ -138,16 +164,3 @@ CalClient *client, CalComponent *comp gboolean CalClient *client, const char *uid - -CalClientChangeType -typedef enum { - CAL_CLIENT_CHANGE_ADDED = 1 << 0, - CAL_CLIENT_CHANGE_MODIFIED = 1 << 1, - CAL_CLIENT_CHANGE_DELETED = 1 << 2 -} CalClientChangeType; - - -cal_client_change_list_free -void -GList *list - diff --git a/doc/devel/calendar/cal-client/evolution-cal-client.hierarchy b/doc/devel/calendar/cal-client/evolution-cal-client.hierarchy index 88efa3e673..21651b5e89 100644 --- a/doc/devel/calendar/cal-client/evolution-cal-client.hierarchy +++ b/doc/devel/calendar/cal-client/evolution-cal-client.hierarchy @@ -1,2 +1,5 @@ GtkObject + GtkWidget + GtkRange + GtkContainer CalClient diff --git a/doc/devel/calendar/cal-client/evolution-cal-client.signals b/doc/devel/calendar/cal-client/evolution-cal-client.signals index d5af728e6f..97e360b6a2 100644 --- a/doc/devel/calendar/cal-client/evolution-cal-client.signals +++ b/doc/devel/calendar/cal-client/evolution-cal-client.signals @@ -2,20 +2,20 @@ CalClient::cal-loaded void CalClient *calclient -gint arg1 +GtkEnum arg1 CalClient::obj-updated void CalClient *calclient -gchar *arg1 +GtkString arg1 CalClient::obj-removed void CalClient *calclient -gchar *arg1 +GtkString arg1 diff --git a/doc/devel/calendar/cal-client/tmpl/cal-client.sgml b/doc/devel/calendar/cal-client/tmpl/cal-client.sgml index 6de1ab8045..d3ef7c8113 100644 --- a/doc/devel/calendar/cal-client/tmpl/cal-client.sgml +++ b/doc/devel/calendar/cal-client/tmpl/cal-client.sgml @@ -61,15 +61,6 @@ GTK+ object for communication with personal calendar server. destroyed. -@CAL_CLIENT_LOAD_SUCCESS: Indicates a successful load or create - operation; the corresponding calendar is ready for use. -@CAL_CLIENT_LOAD_ERROR: Indicates an error while loading or creating - the calendar. -@CAL_CLIENT_LOAD_IN_USE: Indicates that a create request failed - because the specified calendar was already being used by another - client. -@CAL_CLIENT_LOAD_METHOD_NOT_SUPPORTED: Indicates an error due to - trying to load a calendar for which a backend type is not present. @@ -77,21 +68,12 @@ GTK+ object for communication with personal calendar server. function. -@CAL_CLIENT_GET_SUCCESS: Indicates a successful get operation. -@CAL_CLIENT_GET_NOT_FOUND: Indicates that the requested object was - not found. -@CAL_CLIENT_GET_SYNTAX_ERROR: Indicates a syntax error when parsing - the requested object. This could indicate a bug in the calendar - client libraries or in the Wombat server. -@CAL_CLIENT_CHANGE_ADDED: -@CAL_CLIENT_CHANGE_MODIFIED: -@CAL_CLIENT_CHANGE_DELETED: diff --git a/doc/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml b/doc/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml index a0c23894d9..77eb4a2b15 100644 --- a/doc/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml +++ b/doc/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml @@ -1,22 +1,22 @@ - + @client: -@uid: -@pilot_id: -@pilot_status: +@start: +@end: +@Returns: - + @client: -@start: -@end: -@Returns: +@uid: +@pilot_id: +@pilot_status: diff --git a/doc/devel/calendar/cal-util/evolution-cal-util-decl.txt b/doc/devel/calendar/cal-util/evolution-cal-util-decl.txt index 573ce73a65..5ffc920dd4 100644 --- a/doc/devel/calendar/cal-util/evolution-cal-util-decl.txt +++ b/doc/devel/calendar/cal-util/evolution-cal-util-decl.txt @@ -64,7 +64,7 @@ typedef enum { CAL_COMPONENT_CLASS_UNKNOWN } CalComponentClassification; - + CalComponentDateTime typedef struct { /* Actual date/time value */ @@ -73,7 +73,7 @@ typedef struct { /* Timezone ID */ const char *tzid; } CalComponentDateTime; - + CalComponentPeriodType typedef enum { @@ -81,7 +81,7 @@ typedef enum { CAL_COMPONENT_PERIOD_DURATION } CalComponentPeriodType; - + CalComponentPeriod typedef struct { CalComponentPeriodType type; @@ -93,8 +93,8 @@ typedef struct { struct icaldurationtype duration; } u; } CalComponentPeriod; - - + + CalComponentText typedef struct { /* Description string */ @@ -103,7 +103,7 @@ typedef struct { /* Alternate representation URI */ const char *altrep; } CalComponentText; - + CalComponentTransparency typedef enum { @@ -131,6 +131,12 @@ struct CalComponent { CalComponentPrivate *priv; }; + +CalComponentClass +struct CalComponentClass { + GtkObjectClass parent_class; +}; + cal_component_get_type GtkType @@ -529,7 +535,7 @@ GSList *text_list CalComponentAlarm - + CalAlarmInstance typedef struct { /* UID of the alarm that triggered */ @@ -541,8 +547,8 @@ typedef struct { /* Actual event occurrence to which this trigger corresponds */ time_t occur; } CalAlarmInstance; - - + + CalComponentAlarms typedef struct { /* The actual component */ @@ -551,7 +557,7 @@ typedef struct { /* List of CalAlarmInstance structures */ GSList *alarms; } CalComponentAlarms; - + CalAlarmAction typedef enum { @@ -572,7 +578,7 @@ typedef enum { CAL_ALARM_TRIGGER_ABSOLUTE } CalAlarmTriggerType; - + CalAlarmTrigger typedef struct { CalAlarmTriggerType type; @@ -582,7 +588,7 @@ typedef struct { struct icaltimetype abs_time; } u; } CalAlarmTrigger; - + cal_component_has_alarms gboolean @@ -646,14 +652,14 @@ CalComponent *comp, void CalComponent *comp,time_t start,time_t end,CalRecurInstanceFn cb,gpointer cb_data - + CalObjInstance typedef struct { char *uid; /* UID of the object */ time_t start; /* Start time of instance */ time_t end; /* End time of instance */ } CalObjInstance; - + cal_obj_instance_list_free void diff --git a/doc/devel/calendar/cal-util/evolution-cal-util.hierarchy b/doc/devel/calendar/cal-util/evolution-cal-util.hierarchy index cc235653f2..469eb0f478 100644 --- a/doc/devel/calendar/cal-util/evolution-cal-util.hierarchy +++ b/doc/devel/calendar/cal-util/evolution-cal-util.hierarchy @@ -1,2 +1,5 @@ GtkObject + GtkWidget + GtkRange + GtkContainer CalComponent diff --git a/doc/devel/calendar/cal-util/tmpl/cal-component.sgml b/doc/devel/calendar/cal-util/tmpl/cal-component.sgml index c429e22a9c..14943a155e 100644 --- a/doc/devel/calendar/cal-util/tmpl/cal-component.sgml +++ b/doc/devel/calendar/cal-util/tmpl/cal-component.sgml @@ -83,13 +83,6 @@ RFC 2445 iCalendar component object. vtype of an uninitialized #CalComponent. -@CAL_COMPONENT_NO_TYPE: Returned from cal_component_get_vtype() to - indicate an uninitialized #CalComponent object. -@CAL_COMPONENT_EVENT: Indicates a VEVENT component. -@CAL_COMPONENT_TODO: Indicates a VTODO component. -@CAL_COMPONENT_JOURNAL: Indicates a VJOURNAL component. -@CAL_COMPONENT_FREEBUSY: Indicates a VFREEBUSY component. -@CAL_COMPONENT_TIMEZONE: Indicates a VTIMEZOME component. @@ -97,25 +90,6 @@ RFC 2445 iCalendar component object. are used by the calendar GUI code in &Evolution;. -@CAL_COMPONENT_FIELD_CATEGORIES: Component's list of categories. -@CAL_COMPONENT_FIELD_CLASSIFICATION: Component's classification. -@CAL_COMPONENT_FIELD_COMPLETED: Component's completion date. -@CAL_COMPONENT_FIELD_DTEND: Component's ending date. -@CAL_COMPONENT_FIELD_DTSTART: Component's starting date. -@CAL_COMPONENT_FIELD_DUE: Component's due date. -@CAL_COMPONENT_FIELD_GEO: Component's geographical position. -@CAL_COMPONENT_FIELD_PERCENT: Component's percent completed value. -@CAL_COMPONENT_FIELD_PRIORITY: Component's priority. -@CAL_COMPONENT_FIELD_SUMMARY: Component's summary. -@CAL_COMPONENT_FIELD_TRANSPARENCY: Component's transparency value. -@CAL_COMPONENT_FIELD_URL: Component's URL. -@CAL_COMPONENT_FIELD_HAS_ALARMS: Whether the component has any alarms. -@CAL_COMPONENT_FIELD_ICON: Which icon to use for the component. -@CAL_COMPONENT_FIELD_COMPLETE: Whether the component has been completed. -@CAL_COMPONENT_FIELD_RECURRING: Whether the component has any recurrences. -@CAL_COMPONENT_FIELD_OVERDUE: Whether the component is overdue. -@CAL_COMPONENT_FIELD_COLOR: Which color to use for the component. -@CAL_COMPONENT_FIELD_NUM_FIELDS: Total number of enumerated fields. @@ -123,16 +97,8 @@ RFC 2445 iCalendar component object. component. -@CAL_COMPONENT_CLASS_NONE: Indicates that no access classification has - been set for the corresponding component. -@CAL_COMPONENT_CLASS_PUBLIC: Public access. -@CAL_COMPONENT_CLASS_PRIVATE: Private access. -@CAL_COMPONENT_CLASS_CONFIDENTIAL: Confidential access. -@CAL_COMPONENT_CLASS_UNKNOWN: Unknown access classification value, - used when &libical; returns something #CalComponent does not know - about. - + This structure defines a date and time value. @@ -143,18 +109,14 @@ RFC 2445 iCalendar component object. Defines how a period of time is specified. -@CAL_COMPONENT_PERIOD_DATETIME: Indicates that the period is specified - by starting and ending date/time values. -@CAL_COMPONENT_PERIOD_DURATION: Indicates that the period is specified - as a starding date/time and a duration value. - + This structure defines a period of time. - + This structure defines the value of a text property that may have an alternate representation parameter. @@ -166,10 +128,6 @@ RFC 2445 iCalendar component object. -@CAL_COMPONENT_TRANSP_NONE: -@CAL_COMPONENT_TRANSP_TRANSPARENT: -@CAL_COMPONENT_TRANSP_OPAQUE: -@CAL_COMPONENT_TRANSP_UNKNOWN: @@ -848,13 +806,13 @@ RFC 2445 iCalendar component object. - + - + @@ -865,24 +823,14 @@ RFC 2445 iCalendar component object. -@CAL_ALARM_NONE: -@CAL_ALARM_AUDIO: -@CAL_ALARM_DISPLAY: -@CAL_ALARM_EMAIL: -@CAL_ALARM_PROCEDURE: -@CAL_ALARM_UNKNOWN: -@CAL_ALARM_TRIGGER_NONE: -@CAL_ALARM_TRIGGER_RELATIVE_START: -@CAL_ALARM_TRIGGER_RELATIVE_END: -@CAL_ALARM_TRIGGER_ABSOLUTE: - + diff --git a/doc/devel/calendar/cal-util/tmpl/cal-util.sgml b/doc/devel/calendar/cal-util/tmpl/cal-util.sgml index ccd35fac2e..0009f54fed 100644 --- a/doc/devel/calendar/cal-util/tmpl/cal-util.sgml +++ b/doc/devel/calendar/cal-util/tmpl/cal-util.sgml @@ -14,7 +14,7 @@ Miscellaneous utilities - + @@ -33,10 +33,6 @@ Miscellaneous utilities -@CALOBJ_TYPE_EVENT: -@CALOBJ_TYPE_TODO: -@CALOBJ_TYPE_JOURNAL: -@CALOBJ_TYPE_ANY: diff --git a/doc/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml b/doc/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml index b2a547aec9..ff68fae99d 100644 --- a/doc/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml +++ b/doc/devel/calendar/cal-util/tmpl/evolution-cal-util-unused.sgml @@ -53,8 +53,7 @@ -@trigger: -