diff options
author | ERDI Gergo <cactus@cactus.rulez.org> | 2004-01-07 22:29:08 +0800 |
---|---|---|
committer | ÉRDI Gergo <cactus@src.gnome.org> | 2004-01-07 22:29:08 +0800 |
commit | e2b0897d8088cb4c118f4564e9f6de2845de3176 (patch) | |
tree | 23af259b80ece4d26fe94085123f326e7f60582b /mail/em-folder-view.h | |
parent | 79373d6650bfb2f10b91772e10aafcd52badfb26 (diff) | |
download | gsoc2013-evolution-e2b0897d8088cb4c118f4564e9f6de2845de3176.tar.gz gsoc2013-evolution-e2b0897d8088cb4c118f4564e9f6de2845de3176.tar.zst gsoc2013-evolution-e2b0897d8088cb4c118f4564e9f6de2845de3176.zip |
Emit a hover-url signal when the user mouses over a URL, ...
2004-01-04 ERDI Gergo <cactus@cactus.rulez.org>
* em-folder-view.c (emfv_on_url_cb): Emit a hover-url signal when
the user mouses over a URL, ...
(emfv_hover_url_impl): ... and use BonoboUI to change the status
bar message...
(em_folder_view_set_statusbar): ... unless we are asked not to, ...
* mail-component.c (impl_createControls): ... like in the case of
the mail component, ...
(view_hover_url_cb): ... that uses the ActivityHandler to do the
same
Add these together, and #127536 is neatly solved.
2004-01-05 ERDI Gergo <cactus@cactus.rulez.org>
* e-task-bar.c (init): Create a separate label to the left of the
progress messages...
(e_task_bar_message): ...and allow components to set it...
* e-activity-handler.c (e_activity_handler_message): ...through
this new ActivityHandler method
svn path=/trunk/; revision=24086
Diffstat (limited to 'mail/em-folder-view.h')
-rw-r--r-- | mail/em-folder-view.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/em-folder-view.h b/mail/em-folder-view.h index 080b19eb6a..96c7ad97d0 100644 --- a/mail/em-folder-view.h +++ b/mail/em-folder-view.h @@ -78,6 +78,7 @@ struct _EMFolderView { int mark_seen_timeout; /* local copy of gconf stuff */ int mark_seen:1; int preview_active:1; /* is preview being used */ + int statusbar_active:1; /* should we manage the statusbar messages ourselves? */ }; struct _EMFolderViewClass { @@ -89,6 +90,9 @@ struct _EMFolderViewClass { void (*set_folder_uri)(EMFolderView *emfv, const char *uri); void (*set_folder)(EMFolderView *emfv, struct _CamelFolder *folder, const char *uri); void (*set_message)(EMFolderView *emfv, const char *uid); + + /* Signals */ + void (*on_url)(EMFolderView *emfv, const char *uri, const char *nice_uri); }; GType em_folder_view_get_type(void); @@ -110,6 +114,8 @@ int em_folder_view_print(EMFolderView *emfv, int preview); /* this could be on message-list */ guint32 em_folder_view_disable_mask(EMFolderView *emfv); +void em_folder_view_set_statusbar (EMFolderView *emfv, gboolean statusbar); + #ifdef __cplusplus } #endif /* __cplusplus */ |