Updated Indonesian translation
[evolution.git] / mail / em-vfolder-editor.h
blob252dffe0357fbfd9a7aaedee5f6bca123dba20fc
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2 of the License, or (at your option) version 3.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with the program; if not, see <http://www.gnu.org/licenses/>
16 * Authors:
17 * Not Zed <notzed@lostzed.mmc.com.au>
18 * Jeffrey Stedfast <fejj@ximian.com>
20 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
24 #ifndef EM_VFOLDER_EDITOR_H
25 #define EM_VFOLDER_EDITOR_H
27 #include <e-util/e-util.h>
29 #include "em-vfolder-editor-context.h"
31 /* Standard GObject macros */
32 #define EM_TYPE_VFOLDER_EDITOR \
33 (em_vfolder_editor_get_type ())
34 #define EM_VFOLDER_EDITOR(obj) \
35 (G_TYPE_CHECK_INSTANCE_CAST \
36 ((obj), EM_TYPE_VFOLDER_EDITOR, EMVFolderEditor))
37 #define EM_VFOLDER_EDITOR_CLASS(cls) \
38 (G_TYPE_CHECK_CLASS_CAST \
39 ((cls), EM_TYPE_VFOLDER_EDITOR, EMVFolderEditorClass))
40 #define EM_IS_VFOLDER_EDITOR(obj) \
41 (G_TYPE_CHECK_INSTANCE_TYPE \
42 ((obj), EM_TYPE_VFOLDER_EDITOR))
43 #define EM_IS_VFOLDER_EDITOR_CLASS(cls) \
44 (G_TYPE_CHECK_CLASS_TYPE \
45 ((cls), EM_TYPE_VFOLDER_EDITOR))
46 #define EM_VFOLDER_EDITOR_GET_CLASS(obj) \
47 (G_TYPE_INSTANCE_GET_CLASS \
48 ((obj), EM_TYPE_VFOLDER_EDITOR, EMVFolderEditorClass))
50 G_BEGIN_DECLS
52 typedef struct _EMVFolderEditor EMVFolderEditor;
53 typedef struct _EMVFolderEditorClass EMVFolderEditorClass;
55 struct _EMVFolderEditor {
56 ERuleEditor parent;
59 struct _EMVFolderEditorClass {
60 ERuleEditorClass parent_class;
63 GType em_vfolder_editor_get_type (void);
64 GtkWidget * em_vfolder_editor_new (EMVFolderContext *vc);
66 G_END_DECLS
68 #endif /* EM_VFOLDER_EDITOR_H */