aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-model.h
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/calendar-model.h')
-rw-r--r--calendar/gui/calendar-model.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/calendar/gui/calendar-model.h b/calendar/gui/calendar-model.h
index b8c08a5dbc..e4946393b6 100644
--- a/calendar/gui/calendar-model.h
+++ b/calendar/gui/calendar-model.h
@@ -51,6 +51,8 @@ struct _CalendarModel {
struct _CalendarModelClass {
ETableModelClass parent_class;
+
+ void (* categories_changed) (CalendarModel *model);
};
GtkType calendar_model_get_type (void);
@@ -73,6 +75,12 @@ gboolean calendar_model_get_use_24_hour_format (CalendarModel *model);
void calendar_model_set_use_24_hour_format (CalendarModel *model,
gboolean use_24_hour_format);
+GTree* calendar_model_get_categories (CalendarModel *model);
+
+void calendar_model_set_default_category (CalendarModel *model,
+ gchar *default_category);
+
+
END_GNOME_DECLS