diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-01-16 08:46:01 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-01-16 08:46:01 +0800 |
commit | 8cfbc8ec2dfb219b67608b38f58130dd67310c04 (patch) | |
tree | dece3ca5a52adb1e9328b23e034f12375bdf5a60 /calendar/gui/tasks-component.h | |
parent | 0ff3f18cf40dd18e7f54f20cf9b780852af650b3 (diff) | |
download | gsoc2013-evolution-8cfbc8ec2dfb219b67608b38f58130dd67310c04.tar.gz gsoc2013-evolution-8cfbc8ec2dfb219b67608b38f58130dd67310c04.tar.zst gsoc2013-evolution-8cfbc8ec2dfb219b67608b38f58130dd67310c04.zip |
new function. (impl_createControls): create a task bar also for the tasks
2004-01-16 Rodrigo Moya <rodrigo@ximian.com>
* gui/tasks-component.[ch]
(tasks_component_peek_activity_handler): new function.
(impl_createControls): create a task bar also for the tasks
component. We can't rely on the calendar component's one.
(tasks_component_init): create the private activity handler.
* gui/e-calendar-table.c (e_calendar_table_set_status_message):
use the tasks component's activity handler.
* gui/e-tasks.c (on_url_cb): new callback to display status
bar messages when mousing over links.
(setup_widgets): connect to "on_url" signal on the HTML widget.
svn path=/trunk/; revision=24262
Diffstat (limited to 'calendar/gui/tasks-component.h')
-rw-r--r-- | calendar/gui/tasks-component.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/calendar/gui/tasks-component.h b/calendar/gui/tasks-component.h index 1cdb0bdff1..063150a56f 100644 --- a/calendar/gui/tasks-component.h +++ b/calendar/gui/tasks-component.h @@ -25,6 +25,7 @@ #include <bonobo/bonobo-object.h> #include <libedataserver/e-source-list.h> +#include <shell/e-activity-handler.h> #include "Evolution.h" @@ -52,11 +53,12 @@ struct _TasksComponentClass { }; -GType tasks_component_get_type (void); -TasksComponent *tasks_component_peek (void); +GType tasks_component_get_type (void); +TasksComponent *tasks_component_peek (void); -const char *tasks_component_peek_base_directory (TasksComponent *component); -const char *tasks_component_peek_config_directory (TasksComponent *component); -ESourceList *tasks_component_peek_source_list (TasksComponent *component); +const char *tasks_component_peek_base_directory (TasksComponent *component); +const char *tasks_component_peek_config_directory (TasksComponent *component); +ESourceList *tasks_component_peek_source_list (TasksComponent *component); +EActivityHandler *tasks_component_peek_activity_handler (TasksComponent *component); #endif /* _TASKS_COMPONENT_H_ */ |