diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-05-24 04:22:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-05-24 04:22:42 +0800 |
commit | 18b4f29daa6f95a318bd5f29aec15448fa2039f2 (patch) | |
tree | e57b65793d485ce4e22fab0f65123d1aba1f4b8c /mail/message-browser.h | |
parent | 2aef04318ccca705321efd7340b0275a6537ac70 (diff) | |
download | gsoc2013-evolution-18b4f29daa6f95a318bd5f29aec15448fa2039f2.tar.gz gsoc2013-evolution-18b4f29daa6f95a318bd5f29aec15448fa2039f2.tar.zst gsoc2013-evolution-18b4f29daa6f95a318bd5f29aec15448fa2039f2.zip |
If the folder-browser has a parent, reparent it.
2002-05-23 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser-window.c (folder_browser_window_new): If the
folder-browser has a parent, reparent it.
* message-browser.[c,h]: Revert back to the old broken
implementation since that's what users want. They're not happy
unless it's broken.
svn path=/trunk/; revision=16989
Diffstat (limited to 'mail/message-browser.h')
-rw-r--r-- | mail/message-browser.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/mail/message-browser.h b/mail/message-browser.h index ddc9f55292..d9a54b0900 100644 --- a/mail/message-browser.h +++ b/mail/message-browser.h @@ -20,8 +20,8 @@ * */ -#ifndef __MESSAGE_BROWSER_H__ -#define __MESSAGE_BROWSER_H__ +#ifndef _MESSAGE_BROWSER_H_ +#define _MESSAGE_BROWSER_H_ #include <gnome.h> #include <bonobo/bonobo-win.h> @@ -38,19 +38,24 @@ #define IS_MESSAGE_BROWSER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), MESSAGE_BROWSER_TYPE)) struct _MessageBrowser { - GtkWindow parent; + BonoboWindow parent; + /* + * The current URI being displayed by the MessageBrowser + */ + FolderBrowser *fb; }; typedef struct { - GtkWindowClass parent_class; + BonoboWindowClass parent_class; } MessageBrowserClass; -GtkType message_browser_get_type (void); +GtkType message_browser_get_type (void); -GtkWidget *message_browser_new (CamelMimeMessage *message); +GtkWidget *message_browser_new (const GNOME_Evolution_Shell shell, + const char *uri, const char *uid); -#endif /* __MESSAGE_BROWSER_H__ */ +#endif /* _MESSAGE_BROWSER_H_ */ |