]> Pileus Git - ~andy/gtk/blob - gtk/gtkmessagedialog.h
Fix minor typo in docs. (#378632, Hannes Mueller)
[~andy/gtk] / gtk / gtkmessagedialog.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */
2 /* GTK - The GIMP Toolkit
3  * Copyright (C) 2000 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2003.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #ifndef __GTK_MESSAGE_DIALOG_H__
29 #define __GTK_MESSAGE_DIALOG_H__
30
31 #include <gtk/gtkdialog.h>
32
33 G_BEGIN_DECLS
34
35 typedef enum
36 {
37   GTK_MESSAGE_INFO,
38   GTK_MESSAGE_WARNING,
39   GTK_MESSAGE_QUESTION,
40   GTK_MESSAGE_ERROR,
41   GTK_MESSAGE_OTHER
42 } GtkMessageType;
43
44 typedef enum
45 {
46   GTK_BUTTONS_NONE,
47   GTK_BUTTONS_OK,
48   GTK_BUTTONS_CLOSE,
49   GTK_BUTTONS_CANCEL,
50   GTK_BUTTONS_YES_NO,
51   GTK_BUTTONS_OK_CANCEL
52 } GtkButtonsType;
53
54 #define GTK_TYPE_MESSAGE_DIALOG                  (gtk_message_dialog_get_type ())
55 #define GTK_MESSAGE_DIALOG(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialog))
56 #define GTK_MESSAGE_DIALOG_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
57 #define GTK_IS_MESSAGE_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MESSAGE_DIALOG))
58 #define GTK_IS_MESSAGE_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MESSAGE_DIALOG))
59 #define GTK_MESSAGE_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
60
61 typedef struct _GtkMessageDialog        GtkMessageDialog;
62 typedef struct _GtkMessageDialogClass   GtkMessageDialogClass;
63
64 struct _GtkMessageDialog
65 {
66   /*< private >*/
67   
68   GtkDialog parent_instance;
69   
70   GtkWidget *image;
71   GtkWidget *label;
72 };
73
74 struct _GtkMessageDialogClass
75 {
76   GtkDialogClass parent_class;
77
78   /* Padding for future expansion */
79   void (*_gtk_reserved1) (void);
80   void (*_gtk_reserved2) (void);
81   void (*_gtk_reserved3) (void);
82   void (*_gtk_reserved4) (void);
83 };
84
85 GType      gtk_message_dialog_get_type (void) G_GNUC_CONST;
86
87 GtkWidget* gtk_message_dialog_new      (GtkWindow      *parent,
88                                         GtkDialogFlags  flags,
89                                         GtkMessageType  type,
90                                         GtkButtonsType  buttons,
91                                         const gchar    *message_format,
92                                         ...) G_GNUC_PRINTF (5, 6);
93
94 GtkWidget* gtk_message_dialog_new_with_markup   (GtkWindow      *parent,
95                                                  GtkDialogFlags  flags,
96                                                  GtkMessageType  type,
97                                                  GtkButtonsType  buttons,
98                                                  const gchar    *message_format,
99                                                  ...) G_GNUC_PRINTF (5, 6);
100
101 void       gtk_message_dialog_set_image    (GtkMessageDialog *dialog,
102                                             GtkWidget        *image);
103
104 void       gtk_message_dialog_set_markup  (GtkMessageDialog *message_dialog,
105                                            const gchar      *str);
106
107 void       gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
108                                                      const gchar      *message_format,
109                                                      ...) G_GNUC_PRINTF (2, 3);
110
111 void       gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
112                                                        const gchar      *message_format,
113                                                        ...) G_GNUC_PRINTF (2, 3);
114
115 G_END_DECLS
116
117 #endif /* __GTK_MESSAGE_DIALOG_H__ */