# doesn't work here, add links manually. (#104991)

2003-02-02  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtk-docs.sgml:
	* gtk/question_index.sgml: # doesn't work here, add links
	manually.  (#104991)
This commit is contained in:
Matthias Clasen
2003-02-02 22:24:48 +00:00
committed by Matthias Clasen
parent 69e1366667
commit ee52dc8567
3 changed files with 22 additions and 10 deletions

View File

@ -1,3 +1,9 @@
2003-02-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtk-docs.sgml:
* gtk/question_index.sgml: # doesn't work here, add links
manually. (#104991)
2003-02-01 Matthias Clasen <maclas@gmx.de>
* gtk/compiling.sgml: Mention xxx_DISABLE_DEPRECATED and

View File

@ -142,6 +142,7 @@
<!ENTITY gtk-Settings SYSTEM "xml/gtksettings.xml">
<!ENTITY index-Object-Tree SYSTEM "xml/tree_index.sgml">
<!ENTITY graphic-tree SYSTEM "xml/tree_map.sgml">
<!ENTITY index-Objects-Grouped SYSTEM "objects_grouped.sgml">
<!ENTITY gtk-TextWidget SYSTEM "text_widget.sgml">
@ -195,8 +196,11 @@ string utilities, file utilities, a main loop abstraction, and so on.
<listitem><para>
Pango is a library for internationalized text handling. It centers
around the #PangoLayout object, representing a paragraph of text.
Pango provides the engine for #GtkTextView, #GtkLabel, #GtkEntry, and
around the <link linkend="PangoLayout">PangoLayout</link> object, representing
a paragraph of text.
Pango provides the engine for <link linkend="GtkTextView">GtkTextView</link>,
<link linkend="GtkLabel">GtkLabel</link>,
<link linkend="GtkEntry">GtkEntry</link>, and
other widgets that display text.
</para></listitem>
@ -219,9 +223,9 @@ framework.
<varlistentry>
<term>GdkPixbuf</term>
<listitem><para>
This is a small library which allows you to create #GdkPixbuf
This is a small library which allows you to create <link linkend="GdkPixbuf">GdkPixbuf</link>
("pixel buffer") objects from image data or image files.
Use a #GdkPixbuf in combination with #GtkImage to display images.
Use a <link linkend="GdkPixbuf">GdkPixbuf</link> in combination with <link linkend="GtkImage">GtkImage</link> to display images.
</para></listitem>
</varlistentry>
@ -239,13 +243,15 @@ on X11, Windows, and the Linux framebuffer device.
<listitem><para>
The GTK+ library itself contains <firstterm>widgets</firstterm>,
that is, GUI components such as #GtkButton or #GtkTextView.
that is, GUI components such as <link linkend="GtkButton">GtkButton</link> or
<link linkend="GtkTextView">GtkTextView</link>.
</para></listitem>
</varlistentry>
</variablelist>
</para>
</partintro>
&graphic-tree;
&gtk-Building;
&gtk-Compiling;
&gtk-Running;

View File

@ -330,8 +330,7 @@ number of problems that are best avoided.
<para>
If you only have a small amount of text, <link
linkend="GtkLabel">GtkLabel</link> may also be appropriate of course.
It can be made selectable with <link
linkend="gtk-label-set-selectable">
It can be made selectable with <link linkend="gtk-label-set-selectable">
gtk_label_set_selectable()</link>. For a single-line text entry,
see <link linkend="GtkEntry">GtkEntry</link>.
</para>
@ -485,15 +484,16 @@ See the <link linkend="TreeWidget">tree widget overview</link>.
<qandaentry>
<question><para>
What's the #GtkTreeView equivalent of gtk_clist_find_row_from_data()?
What's the <link linkend="GtkTreeView">GtkTreeView</link> equivalent of
<link linkend="gtk-clist-find-row-from-data">gtk_clist_find_row_from_data()</link>?
</para></question>
<answer>
<para>
As there is no separate data column in the #GtkTreeModel, there's no
As there is no separate data column in the <link linkend="GtkTreeModel">GtkTreeModel</link>, there's no
built in function to find the iter from data. You can write a custom
searching function to walk the tree and find the data, or use
gtk_tree_model_foreach().
<link linkend="gtk-tree-model-foreach">gtk_tree_model_foreach()</link>.
</para>
</answer>
</qandaentry>