X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkmessagedialog.h;h=5d84caa208855b505f900e09bf6e9b4e312b57c2;hb=a960230a20f86ebb31594a40132e341c1b7a7c21;hp=c4ef610693874f9e4ac82ae62b18587657483afb;hpb=5e29973773d4e2177f234675cc2a2b2016aa9fbc;p=~andy%2Fgtk diff --git a/gtk/gtkmessagedialog.h b/gtk/gtkmessagedialog.h index c4ef61069..5d84caa20 100644 --- a/gtk/gtkmessagedialog.h +++ b/gtk/gtkmessagedialog.h @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ /* @@ -24,13 +22,13 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +#ifndef __GTK_MESSAGE_DIALOG_H__ +#define __GTK_MESSAGE_DIALOG_H__ + #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif -#ifndef __GTK_MESSAGE_DIALOG_H__ -#define __GTK_MESSAGE_DIALOG_H__ - #include #include @@ -44,17 +42,16 @@ G_BEGIN_DECLS #define GTK_IS_MESSAGE_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MESSAGE_DIALOG)) #define GTK_MESSAGE_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass)) -typedef struct _GtkMessageDialog GtkMessageDialog; -typedef struct _GtkMessageDialogClass GtkMessageDialogClass; +typedef struct _GtkMessageDialog GtkMessageDialog; +typedef struct _GtkMessageDialogPrivate GtkMessageDialogPrivate; +typedef struct _GtkMessageDialogClass GtkMessageDialogClass; struct _GtkMessageDialog { - /*< private >*/ - GtkDialog parent_instance; - - GtkWidget *GSEAL (image); - GtkWidget *GSEAL (label); + + /*< private >*/ + GtkMessageDialogPrivate *priv; }; struct _GtkMessageDialogClass @@ -128,6 +125,8 @@ void gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message const gchar *message_format, ...) G_GNUC_PRINTF (2, 3); +GtkWidget *gtk_message_dialog_get_message_area (GtkMessageDialog *message_dialog); + G_END_DECLS #endif /* __GTK_MESSAGE_DIALOG_H__ */