GTK docs: Update width-for-height docs

Some places did not get updated after the recent rename-and-GtkWidget-merge.
This commit is contained in:
Matthias Clasen 2010-10-01 13:10:35 -04:00
parent 0bca60fdd3
commit e3957f559d

View File

@ -73,7 +73,7 @@
*
* A widget that does not actually do height-for-width
* or width-for-height size negotiations only has to implement
* get_width() and get_height().
* get_preferred_width() and get_preferred_height().
*
* If a widget does move content around to smartly use up the
* allocated size, then it must support the request properly in
@ -81,7 +81,7 @@
* one orientation.
*
* For instance, a GtkLabel that does height-for-width word wrapping
* will not expect to have get_height() called because that
* will not expect to have get_preferred_height() called because that
* call is specific to a width-for-height request, in this case the
* label must return the heights contextual to its minimum possible
* width. By following this rule any widget that handles height-for-width
@ -96,12 +96,12 @@
* <example>
* <title>Widget calling its own size request method.</title>
* <programlisting>
* GTK_SIZE_REQUEST_GET_IFACE(widget)-&gt;get_width(GTK_SIZE_REQUEST(widget), &min, &natural);
* GTK_WIDGET_GET_CLASS(widget)-&gt;get_preferred_width (widget), &min, &natural);
* </programlisting>
* </example>
*
* It will not work to use the wrapper functions, such as
* gtk_size_request_get_width(), inside your own size request
* gtk_widget_get_preferred_width(), inside your own size request
* implementation. These return a request adjusted by #GtkSizeGroup
* and by the GtkWidgetClass::adjust_size_request virtual method. If a
* widget used the wrappers inside its virtual method implementations,