* add HACKING
[modest] / src / gtk / modest-account-view-window.h
1 /* modest-account-view-window.h */
2 /* insert (c)/licensing information) */
3
4 #ifndef __MODEST_ACCOUNT_VIEW_WINDOW_H__
5 #define __MODEST_ACCOUNT_VIEW_WINDOW_H__
6
7 #include <gtk/gtkwidget.h>
8
9 G_BEGIN_DECLS
10
11 /* convenience macros */
12 #define MODEST_TYPE_ACCOUNT_VIEW_WINDOW             (modest_account_view_window_get_type())
13 #define MODEST_ACCOUNT_VIEW_WINDOW(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_ACCOUNT_VIEW_WINDOW,ModestAccountViewWindow))
14 #define MODEST_ACCOUNT_VIEW_WINDOW_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_ACCOUNT_VIEW_WINDOW,GtkWindow))
15 #define MODEST_IS_ACCOUNT_VIEW_WINDOW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_ACCOUNT_VIEW_WINDOW))
16 #define MODEST_IS_ACCOUNT_VIEW_WINDOW_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_ACCOUNT_VIEW_WINDOW))
17 #define MODEST_ACCOUNT_VIEW_WINDOW_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_ACCOUNT_VIEW_WINDOW,ModestAccountViewWindowClass))
18
19 typedef struct _ModestAccountViewWindow      ModestAccountViewWindow;
20 typedef struct _ModestAccountViewWindowClass ModestAccountViewWindowClass;
21
22 struct _ModestAccountViewWindow {
23          GtkWindow parent;
24         /* insert public members, if any */
25 };
26
27 struct _ModestAccountViewWindowClass {
28         GtkWindowClass parent_class;
29         /* insert signal callback declarations, eg. */
30         /* void (* my_event) (ModestAccountViewWindow* obj); */
31 };
32
33 /* member functions */
34 GType        modest_account_view_window_get_type    (void) G_GNUC_CONST;
35
36 GtkWidget*   modest_account_view_window_new         (void);
37
38 G_END_DECLS
39
40 #endif /* __MODEST_ACCOUNT_VIEW_WINDOW_H__ */
41