Updated Indonesian translation
[evolution.git] / mail / e-mail-label-tree-view.h
blob0dd58f21524a3bee35a895e238e2f1cb0f6ab805
1 /*
2 * e-mail-label-tree-view.h
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) version 3.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with the program; if not, see <http://www.gnu.org/licenses/>
18 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
22 #ifndef E_MAIL_LABEL_TREE_VIEW_H
23 #define E_MAIL_LABEL_TREE_VIEW_H
25 #include <gtk/gtk.h>
27 /* Standard GObject macros */
28 #define E_TYPE_MAIL_LABEL_TREE_VIEW \
29 (e_mail_label_tree_view_get_type ())
30 #define E_MAIL_LABEL_TREE_VIEW(obj) \
31 (G_TYPE_CHECK_INSTANCE_CAST \
32 ((obj), E_TYPE_MAIL_LABEL_TREE_VIEW, EMailLabelTreeView))
33 #define E_MAIL_LABEL_TREE_VIEW_CLASS(cls) \
34 (G_TYPE_CHECK_CLASS_CAST \
35 ((cls), E_TYPE_MAIL_LABEL_TREE_VIEW, EMailLabelTreeViewClass))
36 #define E_IS_MAIL_LABEL_TREE_VIEW(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE \
38 ((obj), E_TYPE_MAIL_LABEL_TREE_VIEW))
39 #define E_IS_MAIL_LABEL_TREE_VIEW_CLASS(cls) \
40 (G_TYPE_CHECK_CLASS_TYPE \
41 ((cls), E_TYPE_MAIL_LABEL_TREE_VIEW))
42 #define E_MAIL_LABEL_TREE_VIEW_GET_CLASS(obj) \
43 (G_TYPE_INSTANCE_GET_CLASS \
44 ((obj), E_TYPE_MAIL_LABEL_TREE_VIEW, EMailLabelTreeViewClass))
46 G_BEGIN_DECLS
48 typedef struct _EMailLabelTreeView EMailLabelTreeView;
49 typedef struct _EMailLabelTreeViewClass EMailLabelTreeViewClass;
50 typedef struct _EMailLabelTreeViewPrivate EMailLabelTreeViewPrivate;
52 struct _EMailLabelTreeView {
53 GtkTreeView parent;
54 EMailLabelTreeViewPrivate *priv;
57 struct _EMailLabelTreeViewClass {
58 GtkTreeViewClass parent_class;
61 GType e_mail_label_tree_view_get_type (void);
62 GtkWidget * e_mail_label_tree_view_new (void);
64 G_END_DECLS
66 #endif /* E_MAIL_LABEL_TREE_VIEW_H */