* src/hildon-dialog.c * src/hildon-dialog.h (hildon_dialog_new_with_buttons): New...
[hildon] / src / hildon-dialog.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Karl Lattimer <karl.lattimer@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef                                         __HILDON_DIALOG_H__
26 #define                                         __HILDON_DIALOG_H__
27
28 #include                                        <glib.h>
29 #include                                        <glib-object.h>
30 #include                                        <gtk/gtkdialog.h>
31
32 #include                                        "hildon-defines.h"
33
34 G_BEGIN_DECLS
35
36 #define                                         HILDON_TYPE_DIALOG \
37                                                 (hildon_dialog_get_type ())
38
39 #define                                         HILDON_DIALOG(obj) \
40                                                 (GTK_CHECK_CAST (obj, HILDON_TYPE_DIALOG, HildonDialog))
41
42 #define                                         HILDON_DIALOG_CLASS(klass) \
43                                                 (GTK_CHECK_CLASS_CAST ((klass),\
44                                                 HILDON_TYPE_DIALOG, HildonDialogClass))
45
46 #define                                         HILDON_IS_DIALOG(obj) \
47                                                 (GTK_CHECK_TYPE (obj, HILDON_TYPE_DIALOG))
48
49 #define                                         HILDON_IS_DIALOG_CLASS(klass) \
50                                                 (GTK_CHECH_CLASS_TYPE ((klass), HILDON_TYPE_DIALOG))
51
52 #define                                         HILDON_DIALOG_GET_CLASS(obj) \
53                                                 ((HildonDialogClass *) G_OBJECT_GET_CLASS (obj))
54
55 typedef struct                                  _HildonDialog HildonDialog;
56
57 typedef struct                                  _HildonDialogClass HildonDialogClass;
58
59 struct                                          _HildonDialog
60 {
61     GtkDialog parent;
62 };
63
64 struct                                          _HildonDialogClass
65 {
66     GtkDialogClass parent_class;
67
68     /* Padding for future extension */
69     void (*_hildon_reserved1)(void);
70     void (*_hildon_reserved2)(void);
71     void (*_hildon_reserved3)(void);
72 };
73
74 GType G_GNUC_CONST
75 hildon_dialog_get_type                          (void);
76
77 GtkWidget*
78 hildon_dialog_new                               (void);
79
80 GtkWidget*
81 hildon_dialog_new_with_buttons                  (const gchar    *title,
82                                                  GtkWindow      *parent,
83                                                  GtkDialogFlags  flags,
84                                                  const gchar    *first_button_text,
85                                                  ...);
86
87 G_END_DECLS
88
89 #endif                                          /* __HILDON_DIALOG_H__ */