summaryrefslogtreecommitdiff
path: root/gtk/gtkmessagedialog.h
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2003-07-18 18:52:03 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-07-18 18:52:03 +0000
commiteaae0a6b617a6bdb57694cc616cea7d2ede88364 (patch)
tree81ad9fe8479dd4e5c5b4adaf6be99779b88bf022 /gtk/gtkmessagedialog.h
parent1a7bac8d2a270c7d301600d058cc1c91ada021a3 (diff)
downloadgtk+-eaae0a6b617a6bdb57694cc616cea7d2ede88364.tar.gz
Add a new keybinding signal, move_viewport. (gtk_text_view_move_viewport):
2003-07-18 Matthias Clasen <maclas@gmx.de> * gtk/gtktextview.c (gtk_text_view_class_init): Add a new keybinding signal, move_viewport. (gtk_text_view_move_viewport): New function which implements the move_viewport functionality. (gtk_text_view_move_cursor_internal): If the cursor is not visible, move the viewport. (#78669) * gtk/gtkenums.h (GtkScrollStep): New enumeration, used for move_viewport argument. * gtk/gtkstatusbar.c (gtk_statusbar_class_init): Add a has_resize_grip property. (#111779) * gtk/gtkwindow.h: * gtk/gtkwindow.c (gtk_window_set_default_icon): New method. (#95816) * gtk/gtkmessagedialog.h: * gtk/gtkmessagedialog.c (gtk_message_dialog_add_buttons): New method. (#65501, Sebastian Rittau)
Diffstat (limited to 'gtk/gtkmessagedialog.h')
-rw-r--r--gtk/gtkmessagedialog.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gtk/gtkmessagedialog.h b/gtk/gtkmessagedialog.h
index 68c1b409fd..d350147722 100644
--- a/gtk/gtkmessagedialog.h
+++ b/gtk/gtkmessagedialog.h
@@ -18,7 +18,7 @@
*/
/*
- * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
+ * Modified by the GTK+ Team and others 1997-2003. See the AUTHORS
* file for a list of people on the GTK+ Team. See the ChangeLog
* files for a list of changes. These files are distributed with
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
@@ -91,6 +91,13 @@ GtkWidget* gtk_message_dialog_new (GtkWindow *parent,
GtkButtonsType buttons,
const gchar *message_format,
...) G_GNUC_PRINTF (5, 6);
+
+GtkWidget* gtk_message_dialog_new_with_markup (GtkWindow *parent,
+ GtkDialogFlags flags,
+ GtkMessageType type,
+ GtkButtonsType buttons,
+ const gchar *message_format,
+ ...) G_GNUC_PRINTF (5, 6);