summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--gtk/gtkwidget.c12
4 files changed, 18 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f07b8112b..0e051a47d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-06-11 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
+ provided by Owen Taylor.
+
* gtk/gtk.symbols:
* gtk/gtkiconview.h:
* gtk/gtkiconview.c (gtk_icon_view_get_visible_range):
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index f07b8112b..0e051a47d 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,5 +1,8 @@
2005-06-11 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
+ provided by Owen Taylor.
+
* gtk/gtk.symbols:
* gtk/gtkiconview.h:
* gtk/gtkiconview.c (gtk_icon_view_get_visible_range):
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index f07b8112b..0e051a47d 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,5 +1,8 @@
2005-06-11 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkwidget.c (gtk_widget_set_app_paintable): More docs
+ provided by Owen Taylor.
+
* gtk/gtk.symbols:
* gtk/gtkiconview.h:
* gtk/gtkiconview.c (gtk_icon_view_get_visible_range):
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index d61046eb0..200678923 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -4270,9 +4270,15 @@ gtk_widget_set_state (GtkWidget *widget,
* @widget: a #GtkWidget
* @app_paintable: %TRUE if the application will paint on the widget
*
- * Sets the app-paintable property to indicate to the widget that the
- * application intends to paint directly on the widget.
- *
+ * Sets whether the application intends to draw on the widget in
+ * an ::expose-event handler.
+ *
+ * This is a hint to the widget and does not affect the behavior of
+ * the GTK+ core; many widgets ignore this flag entirely. For widgets
+ * that do pay attention to the flag, such as #GtkEventBox and #GtkWindow,
+ * the effect is to suppress default themed drawing of the widget's
+ * background. (Children of the widget will still be drawn.) The application
+ * is then entirely responsible for drawing the widget background.
**/
void
gtk_widget_set_app_paintable (GtkWidget *widget,