forked from AuroraMiddleware/gtk
356df7f650
Thu Oct 23 21:55:10 2003 Soeren Sandmann <sandmann@daimi.au.dk> * gtk/gtktoolbar.c (gtk_toolbar_highlight_drop_location): Make this function take an index and a GtkToolItem. * tests/testtoolbar.c (main): Make "Show Arrow" default to true. Make one of the separators !draw and expand. Update for new highlight_drop_location() API. * gtk/gtktoolitem.[ch]: Remove "pack_end" property * gtk/gtktoolbar.h: Formatting fixes. * gtk/gtktoolbar.c: Remove "pack_end" child property. Allow separator tool items to expand. (logical_to_physical, physical_to_logical): Fix off-by-one errors (Fix #125472, Marco Pesenti Gritti) * gtk/gtkseparatortoolitem.[ch]: Add new "draw" property. (gtk_separator_tool_item_expose) only draw if "draw" is TRUE. Also return FALSE, not TRUE. (gtk_separator_too_item_{set|get}_property, (gtk_separator_tool_item_{set|get}_draw): new functions
184 lines
2.5 KiB
Plaintext
184 lines
2.5 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
GtkLayout
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
|
|
Infinite scrollable area containing child widgets and/or custom drawing
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
#GtkLayout is similar to #GtkDrawingArea in that it's a "blank slate"
|
|
and doesn't do anything but paint a blank background by default. It's
|
|
different in that it supports scrolling natively (you can add it to a
|
|
#GtkScrolledWindow), and it can contain child widgets, since it's a
|
|
#GtkContainer. However if you're just going to draw, a #GtkDrawingArea
|
|
is a better choice since it has lower overhead.
|
|
</para>
|
|
|
|
<para>
|
|
When handling expose events on a #GtkLayout, you must draw to
|
|
GTK_LAYOUT (layout)->bin_window, rather than to
|
|
GTK_WIDGET (layout)->window, as you would for a drawing
|
|
area.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
#GtkDrawingArea, #GtkScrolledWindow
|
|
</para>
|
|
|
|
<!-- ##### STRUCT GtkLayout ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@bin_window:
|
|
|
|
<!-- ##### FUNCTION gtk_layout_new ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@hadjustment:
|
|
@vadjustment:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_put ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@child_widget:
|
|
@x:
|
|
@y:
|
|
<!-- # Unused Parameters # -->
|
|
@widget:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_move ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@child_widget:
|
|
@x:
|
|
@y:
|
|
<!-- # Unused Parameters # -->
|
|
@widget:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_set_size ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@width:
|
|
@height:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_get_size ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@width:
|
|
@height:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_freeze ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_thaw ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_get_hadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_get_vadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_set_hadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@adjustment:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_layout_set_vadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout:
|
|
@adjustment:
|
|
|
|
|
|
<!-- ##### SIGNAL GtkLayout::set-scroll-adjustments ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@layout: the object which received the signal.
|
|
@arg1:
|
|
@arg2:
|
|
|
|
<!-- ##### ARG GtkLayout:hadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### ARG GtkLayout:height ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### ARG GtkLayout:vadjustment ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### ARG GtkLayout:width ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### ARG GtkLayout:x ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### ARG GtkLayout:y ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|