diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 23:25:33 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 23:25:33 +0000 |
commit | 428c076fef8f6baffdf48c367c30d458b096f3af (patch) | |
tree | e289ae3a3fb968f9a4181f5bcb013010a02a31a7 /docs/reference/gtk | |
parent | 14ee65b66a71fd8e9f873986305b78b135f0472c (diff) | |
download | gtk+-428c076fef8f6baffdf48c367c30d458b096f3af.tar.gz |
Delete EWMH properties if no private->state flags are set. (#66754)
* gdk/x11/gdkwindow-x11.c (set_initial_hints): Delete EWMH
properties if no private->state flags are set. (#66754)
* gtk/gtkwidget.c (gtk_widget_class_find_style_property):
* gtk/gtkcontainer.c (gtk_container_class_find_child_property):
Doc typo fixes.
* gtk/tmpl/gtktextview.sgml: Add docs.
* gtk/tree_widget.sgml: Fix some links.
* gtk/tmpl/gtkwindow.sgml: Add docs.
* gtk/tmpl/gtkeditable.sgml: Document GtkEditable as an interface,
not as an abstract base class.
* gtk/gtk-docs.sgml: Move GtkEditable from "Abstract Base Classes"
to "Numeric/Text Data Entry".
Diffstat (limited to 'docs/reference/gtk')
-rw-r--r-- | docs/reference/gtk/gtk-docs.sgml | 2 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkeditable.sgml | 13 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtktextview.sgml | 5 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkwindow.sgml | 6 | ||||
-rw-r--r-- | docs/reference/gtk/tree_widget.sgml | 8 |
5 files changed, 17 insertions, 17 deletions
diff --git a/docs/reference/gtk/gtk-docs.sgml b/docs/reference/gtk/gtk-docs.sgml index 75b40dcf02..11a0dae728 100644 --- a/docs/reference/gtk/gtk-docs.sgml +++ b/docs/reference/gtk/gtk-docs.sgml @@ -322,6 +322,7 @@ that is, GUI components such as #GtkButton or #GtkTextView. &GtkHScale; &GtkVScale; &GtkSpinButton; + &GtkEditable; </chapter> <chapter id="TextWidgetObjects"> @@ -433,7 +434,6 @@ that is, GUI components such as #GtkButton or #GtkTextView. &GtkBox; &GtkButtonBox; &GtkContainer; - &GtkEditable; &GtkItem; &GtkMisc; &GtkObject; diff --git a/docs/reference/gtk/tmpl/gtkeditable.sgml b/docs/reference/gtk/tmpl/gtkeditable.sgml index 0f988ac946..b1b10be105 100644 --- a/docs/reference/gtk/tmpl/gtkeditable.sgml +++ b/docs/reference/gtk/tmpl/gtkeditable.sgml @@ -6,14 +6,11 @@ Interface for text-editing widgets. <!-- ##### SECTION Long_Description ##### --> <para> -The #GtkEditable class is a base class for widgets -for editing text, such as #GtkEntry and #GtkText. It -cannot be instantiated by itself. The editable -class contains functions for generically manipulating -an editable widget, a large number of action signals -used for key bindings, and several signals that -an application can connect to to modify the behavior -of a widget. +The #GtkEditable interface is an interface which should be implemented by +text editing widgets, such as #GtkEntry and #GtkText. It contains functions +for generically manipulating an editable widget, a large number of action +signals used for key bindings, and several signals that an application can +connect to to modify the behavior of a widget. </para> <para> diff --git a/docs/reference/gtk/tmpl/gtktextview.sgml b/docs/reference/gtk/tmpl/gtktextview.sgml index 0585dfed78..8875feae5a 100644 --- a/docs/reference/gtk/tmpl/gtktextview.sgml +++ b/docs/reference/gtk/tmpl/gtktextview.sgml @@ -325,7 +325,10 @@ types related to the text widget and how they work together. <!-- ##### STRUCT GtkTextChildAnchor ##### --> <para id="GtkTextChildAnchor"> - +A <structname>GtkTextChildAnchor</structname> is a spot in the buffer +where child widgets can be "anchored" (inserted inline, as if they were +characters). The anchor can have multiple widgets anchored, to allow for +multiple views. </para> diff --git a/docs/reference/gtk/tmpl/gtkwindow.sgml b/docs/reference/gtk/tmpl/gtkwindow.sgml index f56f84b026..9799c0c8ed 100644 --- a/docs/reference/gtk/tmpl/gtkwindow.sgml +++ b/docs/reference/gtk/tmpl/gtkwindow.sgml @@ -123,9 +123,9 @@ the child gets a larger allocation than it requests. @window: the window @allow_shrink: whether the user can shrink the window below its size request @allow_grow: whether the user can grow the window larger than its size request -@auto_shrink: whether the window automatically snaps back to its size request if -it's larger - +@auto_shrink: whether the window automatically snaps back to its size request + if it's larger +@Deprecated: Use gtk_window_set_resizable() instead. <!-- ##### FUNCTION gtk_window_set_resizable ##### --> <para> diff --git a/docs/reference/gtk/tree_widget.sgml b/docs/reference/gtk/tree_widget.sgml index 352bdb0786..b24e1944ec 100644 --- a/docs/reference/gtk/tree_widget.sgml +++ b/docs/reference/gtk/tree_widget.sgml @@ -83,14 +83,14 @@ GtkTreeStore *store = gtk_tree_store_new (N_COLUMNS, /* Total number of co G_TYPE_BOOLEAN); /* Is checked out? */ ]]></programlisting></informalexample> <para> - Adding data to the model is done using <link linkend="gtk_tree_store_set"> - gtk_tree_store_set()</link> or <link linkend="gtk_list_store_set"> + Adding data to the model is done using <link linkend="gtk-tree-store-set"> + gtk_tree_store_set()</link> or <link linkend="gtk-list-store-set"> gtk_list_store_set()</link>, depending upon which sort of model was created. To do this, a <link linkend="GtkTreeIter">GtkTreeIter</link> must be acquired. The iterator points to the location where data will be added. </para> <para> - Once an iterator has been acquired, <link linkend="gtk_tree_store_set"> + Once an iterator has been acquired, <link linkend="gtk-tree-store-set"> gtk_tree_store_set()</link> is used to apply data to the part of the model that the iterator points to. Consider the following example: </para> @@ -113,7 +113,7 @@ gtk_tree_store_set (store, &iter, columns in a given row. </para> <para> - The third argument to gtk_tree_store_append() is the parent iterator. It + The third argument to <link linkend="gtk-tree-store-append">gtk_tree_store_append()</link> is the parent iterator. It is used to add a row to a GtkTreeStore as a child of an existing row. This means that the new row will only be visible when its parent is visible and in its expanded state. Consider the following example: |