diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2001-10-19 23:26:43 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2001-10-19 23:26:43 +0800 |
commit | 92d0b48b3ca0793ea7f3be32c189302ca6ec60f2 (patch) | |
tree | 0f959d7d5baceedbe4d1e04db95a9aa31861b3b2 /calendar/gui/e-day-view.h | |
parent | 971f97e0518eb19270ead8e500843685e6c5ae71 (diff) | |
download | gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar.gz gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar.bz2 gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar.lz gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar.xz gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.tar.zst gsoc2013-evolution-92d0b48b3ca0793ea7f3be32c189302ca6ec60f2.zip |
keep a reference to the EvolutionShellClient component
2001-10-19 Rodrigo Moya <rodrigo@ximian.com>
* gui/component-factory.c (owner_set_cb): keep a reference to the
EvolutionShellClient component
* gui/e-week-view.c (e_week_view_set_status_message): new function
(update_query): call e_week_view_set_status_message
(query_query_done_cb):
(query_eval_error_cb): clean up status bar messages
* gui/e-day-view.c (e_day_view_set_status_message): new function
(update_query): call e_day_view_set_status_message
(query_query_done_cb):
(query_eval_error_cb): clean up status bar messages
* gui/Makefile.am: added EVOLUTION_IMAGESDIR to CFLAGS
svn path=/trunk/; revision=13793
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r-- | calendar/gui/e-day-view.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h index 4b57a2e155..17c83304b6 100644 --- a/calendar/gui/e-day-view.h +++ b/calendar/gui/e-day-view.h @@ -30,6 +30,7 @@ #include <libgnomeui/gnome-canvas.h> #include "gnome-cal.h" +#include "evolution-activity-client.h" #ifdef __cplusplus extern "C" { @@ -493,6 +494,9 @@ struct _EDayView /* The default category for new events */ char *default_category; + + /* The activity client used to show messages on the status bar. */ + EvolutionActivityClient *activity; }; struct _EDayViewClass @@ -657,6 +661,9 @@ gint e_day_view_get_time_string_width (EDayView *day_view); gint e_day_view_event_sort_func (const void *arg1, const void *arg2); +void e_day_view_set_status_message (EDayView *day_view, + const char *message); + #ifdef __cplusplus } #endif /* __cplusplus */ |