]> Pileus Git - ~andy/gtk/blob - gtk/gtkmessagedialog.h
Seal GtkMessageDialog public vars
[~andy/gtk] / gtk / gtkmessagedialog.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2000 Red Hat, Inc.
3  *
4  * This library 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) any later version.
8  *
9  * This library 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.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2003.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_MESSAGE_DIALOG_H__
32 #define __GTK_MESSAGE_DIALOG_H__
33
34 #include <gtk/gtkdialog.h>
35
36 G_BEGIN_DECLS
37
38 typedef enum
39 {
40   GTK_MESSAGE_INFO,
41   GTK_MESSAGE_WARNING,
42   GTK_MESSAGE_QUESTION,
43   GTK_MESSAGE_ERROR,
44   GTK_MESSAGE_OTHER
45 } GtkMessageType;
46
47 typedef enum
48 {
49   GTK_BUTTONS_NONE,
50   GTK_BUTTONS_OK,
51   GTK_BUTTONS_CLOSE,
52   GTK_BUTTONS_CANCEL,
53   GTK_BUTTONS_YES_NO,
54   GTK_BUTTONS_OK_CANCEL
55 } GtkButtonsType;
56
57 #define GTK_TYPE_MESSAGE_DIALOG                  (gtk_message_dialog_get_type ())
58 #define GTK_MESSAGE_DIALOG(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialog))
59 #define GTK_MESSAGE_DIALOG_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
60 #define GTK_IS_MESSAGE_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MESSAGE_DIALOG))
61 #define GTK_IS_MESSAGE_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MESSAGE_DIALOG))
62 #define GTK_MESSAGE_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
63
64 typedef struct _GtkMessageDialog        GtkMessageDialog;
65 typedef struct _GtkMessageDialogClass   GtkMessageDialogClass;
66
67 struct _GtkMessageDialog
68 {
69   /*< private >*/
70   
71   GtkDialog parent_instance;
72   
73   GtkWidget *GSEAL (image);
74   GtkWidget *GSEAL (label);
75 };
76
77 struct _GtkMessageDialogClass
78 {
79   GtkDialogClass parent_class;
80
81   /* Padding for future expansion */
82   void (*_gtk_reserved1) (void);
83   void (*_gtk_reserved2) (void);
84   void (*_gtk_reserved3) (void);
85   void (*_gtk_reserved4) (void);
86 };
87
88 GType      gtk_message_dialog_get_type (void) G_GNUC_CONST;
89
90 GtkWidget* gtk_message_dialog_new      (GtkWindow      *parent,
91                                         GtkDialogFlags  flags,
92                                         GtkMessageType  type,
93                                         GtkButtonsType  buttons,
94                                         const gchar    *message_format,
95                                         ...) G_GNUC_PRINTF (5, 6);
96
97 GtkWidget* gtk_message_dialog_new_with_markup   (GtkWindow      *parent,
98                                                  GtkDialogFlags  flags,
99                                                  GtkMessageType  type,
100                                                  GtkButtonsType  buttons,
101                                                  const gchar    *message_format,
102                                                  ...) G_GNUC_PRINTF (5, 6);
103
104 void       gtk_message_dialog_set_image    (GtkMessageDialog *dialog,
105                                             GtkWidget        *image);
106
107 void       gtk_message_dialog_set_markup  (GtkMessageDialog *message_dialog,
108                                            const gchar      *str);
109
110 void       gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
111                                                      const gchar      *message_format,
112                                                      ...) G_GNUC_PRINTF (2, 3);
113
114 void       gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
115                                                        const gchar      *message_format,
116                                                        ...) G_GNUC_PRINTF (2, 3);
117
118 G_END_DECLS
119
120 #endif /* __GTK_MESSAGE_DIALOG_H__ */