Updated Galician translation
[evolution.git] / widgets / misc / e-import-assistant.h
blobb2bba8d653915cd155ab3a098998b6dc90a651d4
1 /*
2 * e-import-assistant.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_IMPORT_ASSISTANT_H
23 #define E_IMPORT_ASSISTANT_H
25 #include <gtk/gtk.h>
27 /* Standard GObject macros */
28 #define E_TYPE_IMPORT_ASSISTANT \
29 (e_import_assistant_get_type ())
30 #define E_IMPORT_ASSISTANT(obj) \
31 (G_TYPE_CHECK_INSTANCE_CAST \
32 ((obj), E_TYPE_IMPORT_ASSISTANT, EImportAssistant))
33 #define E_IMPORT_ASSISTANT_CLASS(cls) \
34 (G_TYPE_CHECK_CLASS_CAST \
35 ((cls), E_TYPE_IMPORT_ASSISTANT, EImportAssistantClass))
36 #define E_IS_IMPORT_ASSISTANT(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE \
38 ((obj), E_TYPE_IMPORT_ASSISTANT))
39 #define E_IS_IMPORT_ASSISTANT_CLASS(cls) \
40 (G_TYPE_CHECK_CLASS_TYPE \
41 ((cls), E_TYPE_IMPORT_ASSISTANT))
42 #define E_IMPORT_ASSISTANT_GET_CLASS(obj) \
43 (G_TYPE_INSTANCE_GET_CLASS \
44 ((obj), E_TYPE_IMPORT_ASSISTANT, EImportAssistantClass))
46 G_BEGIN_DECLS
48 typedef struct _EImportAssistant EImportAssistant;
49 typedef struct _EImportAssistantClass EImportAssistantClass;
50 typedef struct _EImportAssistantPrivate EImportAssistantPrivate;
52 struct _EImportAssistant {
53 GtkAssistant parent;
54 EImportAssistantPrivate *priv;
57 struct _EImportAssistantClass {
58 GtkAssistantClass parent_class;
61 GType e_import_assistant_get_type (void);
62 GtkWidget * e_import_assistant_new (GtkWindow *parent);
63 GtkWidget * e_import_assistant_new_simple (GtkWindow *parent,
64 gchar **uris,
65 gboolean preview);
67 G_END_DECLS
69 #endif /* E_IMPORT_ASSISTANT_H */