mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
Add some docs about RGBA windows. (#326486, Benjamin Otte)
2006-01-12 Matthias Clasen <mclasen@redhat.com> * gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add some docs about RGBA windows. (#326486, Benjamin Otte)
This commit is contained in:
parent
b060715deb
commit
37e804fe5a
@ -1,3 +1,8 @@
|
||||
2006-01-12 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add some docs
|
||||
about RGBA windows. (#326486, Benjamin Otte)
|
||||
|
||||
2006-01-12 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gdk/gdkimage.c (scratch_image_info_for_depth): connect to the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-01-12 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_set_app_paintable): Add some docs
|
||||
about RGBA windows. (#326486, Benjamin Otte)
|
||||
|
||||
2006-01-12 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gdk/gdkimage.c (scratch_image_info_for_depth): connect to the
|
||||
|
@ -4308,6 +4308,15 @@ gtk_widget_set_state (GtkWidget *widget,
|
||||
* 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.
|
||||
*
|
||||
* Note that the background is still drawn when the widget is mapped.
|
||||
* If this is not suitable (e.g. because you want to make a transparent
|
||||
* window using an RGBA visual), you can work around this by doing:
|
||||
* <informalexample><programlisting>
|
||||
* gtk_widget_realize (window);
|
||||
* gdk_window_set_back_pixmap (window->window, NULL, FALSE);
|
||||
* gtk_widget_show (window);
|
||||
* </programlisting></informalexample>
|
||||
**/
|
||||
void
|
||||
gtk_widget_set_app_paintable (GtkWidget *widget,
|
||||
|
Loading…
Reference in New Issue
Block a user