diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-06-24 17:38:15 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-06-24 17:38:15 +0800 |
commit | 45ca662701afa1fd92d26c587e56b6e1ade16e83 (patch) | |
tree | fe7ca4cbfc938f895a33f736135db44970c3d77d /src/empathy-main-window.h | |
parent | 249af05e390dc85d6545917b5449f090c1e19d16 (diff) | |
parent | ee36de0c87a759e0ffe7ef6e845110e53a724299 (diff) | |
download | gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar.gz gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar.bz2 gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar.lz gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar.xz gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.tar.zst gsoc2013-empathy-45ca662701afa1fd92d26c587e56b6e1ade16e83.zip |
Merge branch 'preferences-dialog-622557'
Diffstat (limited to 'src/empathy-main-window.h')
-rw-r--r-- | src/empathy-main-window.h | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/empathy-main-window.h b/src/empathy-main-window.h index 3d34e6c6b..38879fb29 100644 --- a/src/empathy-main-window.h +++ b/src/empathy-main-window.h @@ -19,6 +19,7 @@ * Boston, MA 02110-1301 USA * * Authors: Xavier Claessens <xclaesse@gmail.com> + * Danielle Madeley <danielle.madeley@collabora.co.uk> */ #ifndef __EMPATHY_MAIN_WINDOW_H__ @@ -28,8 +29,29 @@ G_BEGIN_DECLS -GtkWidget *empathy_main_window_get (void); -GtkWidget *empathy_main_window_show (void); +#define EMPATHY_TYPE_MAIN_WINDOW (empathy_main_window_get_type ()) +#define EMPATHY_MAIN_WINDOW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_MAIN_WINDOW, EmpathyMainWindow)) +#define EMPATHY_MAIN_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_MAIN_WINDOW, EmpathyMainWindowClass)) +#define EMPATHY_IS_MAIN_WINDOW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_MAIN_WINDOW)) +#define EMPATHY_IS_MAIN_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_MAIN_WINDOW)) +#define EMPATHY_MAIN_WINDOW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_MAIN_WINDOW, EmpathyMainWindowClass)) + +typedef struct _EmpathyMainWindow EmpathyMainWindow; +typedef struct _EmpathyMainWindowClass EmpathyMainWindowClass; +typedef struct _EmpathyMainWindowPriv EmpathyMainWindowPriv; + +struct _EmpathyMainWindow { + GtkWindow parent; + gpointer priv; +}; + +struct _EmpathyMainWindowClass { + GtkWindowClass parent_class; +}; + +GType empathy_main_window_get_type (void); + +GtkWidget *empathy_main_window_dup (void); G_END_DECLS |