diff options
author | Gary Ekker <gekker@novell.com> | 2004-05-01 05:33:11 +0800 |
---|---|---|
committer | Gary Ekker <gekker@src.gnome.org> | 2004-05-01 05:33:11 +0800 |
commit | 8acc05254177f038ff5f93fed69fac376851a7d8 (patch) | |
tree | 22920664c6f513ad105b1e3e0f81103087a684dc /calendar/gui/calendar-config.h | |
parent | 343d0d815a4b59c13316e7125ef392be7ccdefcb (diff) | |
download | gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar.gz gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar.bz2 gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar.lz gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar.xz gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.tar.zst gsoc2013-evolution-8acc05254177f038ff5f93fed69fac376851a7d8.zip |
Set up the model to use the correct query. Setup callbacks for gconf
2004-04-30 Gary Ekker <gekker@novell.com>
* gui/e-tasks.c: (e_tasks_init): Set up the model to use the correct
query. Setup callbacks for gconf changes. Add an idle timeout to hide
completed items.
Add update_view, update_view_cb, and
config_hide_completed_tasks_changed_cb to update the model view.
* gui/gnome-cal.c: ditto
* gui/calendar-config.h: Add notifications for hide_completed_tasks
settings.
* gui/calendar-config.c: ditto
svn path=/trunk/; revision=25727
Diffstat (limited to 'calendar/gui/calendar-config.h')
-rw-r--r-- | calendar/gui/calendar-config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/calendar-config.h b/calendar/gui/calendar-config.h index 238ba55a83..e2dc4405b8 100644 --- a/calendar/gui/calendar-config.h +++ b/calendar/gui/calendar-config.h @@ -173,12 +173,15 @@ void calendar_config_set_tasks_overdue_color (const char *color); /* Settings to hide completed tasks. */ gboolean calendar_config_get_hide_completed_tasks (void); void calendar_config_set_hide_completed_tasks (gboolean hide); +guint calendar_config_add_notification_hide_completed_tasks (GConfClientNotifyFunc func, gpointer data); CalUnits calendar_config_get_hide_completed_tasks_units(void); void calendar_config_set_hide_completed_tasks_units(CalUnits units); +guint calendar_config_add_notification_hide_completed_tasks_units (GConfClientNotifyFunc func, gpointer data); gint calendar_config_get_hide_completed_tasks_value(void); void calendar_config_set_hide_completed_tasks_value(gint value); +guint calendar_config_add_notification_hide_completed_tasks_value (GConfClientNotifyFunc func, gpointer data); char* calendar_config_get_hide_completed_tasks_sexp (void); |