2002-05-28 22:23:55 +00:00
|
|
|
<?xml version="1.0"?>
|
2008-07-10 03:27:56 +00:00
|
|
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
|
|
<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
|
2002-11-21 20:19:01 +00:00
|
|
|
<!ENTITY version SYSTEM "version.xml">
|
1999-08-16 18:51:52 +00:00
|
|
|
]>
|
2008-07-10 03:27:56 +00:00
|
|
|
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
|
1999-08-16 18:51:52 +00:00
|
|
|
<bookinfo>
|
|
|
|
<title>GTK+ Reference Manual</title>
|
2009-02-06 08:16:22 +00:00
|
|
|
<releaseinfo>
|
|
|
|
for GTK+ &version;
|
|
|
|
The latest version of this documentation can be found on-line at
|
|
|
|
<ulink role="online-location" url="http://library.gnome.org/devel/gtk/unstable/">http://library.gnome.org/devel/gtk/unstable/</ulink>.
|
|
|
|
</releaseinfo>
|
1999-08-16 18:51:52 +00:00
|
|
|
</bookinfo>
|
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<part id="gtk">
|
2001-09-08 04:39:53 +00:00
|
|
|
<title>GTK+ Overview</title>
|
2002-03-07 23:20:16 +00:00
|
|
|
<partintro>
|
1999-08-16 18:51:52 +00:00
|
|
|
<para>
|
2001-09-08 04:39:53 +00:00
|
|
|
GTK+ is a library for creating graphical user interfaces. It
|
2010-10-12 04:19:35 +00:00
|
|
|
works on many UNIX-like platforms, Windows, and OS X.
|
|
|
|
GTK+ is released under the GNU Library General Public License
|
2001-02-09 06:14:34 +00:00
|
|
|
(GNU LGPL), which allows for flexible licensing of client
|
1999-08-16 18:51:52 +00:00
|
|
|
applications. GTK+ has a C-based object-oriented architecture that
|
2010-10-12 04:19:35 +00:00
|
|
|
allows for maximum flexibility. Bindings for many other languages have
|
1999-08-16 18:51:52 +00:00
|
|
|
been written, including C++, Objective-C, Guile/Scheme, Perl, Python,
|
|
|
|
TOM, Ada95, Free Pascal, and Eiffel.
|
|
|
|
</para>
|
|
|
|
<para>
|
2001-09-08 04:39:53 +00:00
|
|
|
GTK+ depends on the following libraries:
|
1999-08-16 18:51:52 +00:00
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>GLib</term>
|
|
|
|
<listitem><para>
|
2001-09-08 04:39:53 +00:00
|
|
|
A general-purpose utility library, not specific to graphical user interfaces.
|
|
|
|
GLib provides many useful data types, macros, type conversions,
|
|
|
|
string utilities, file utilities, a main loop abstraction, and so on.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
2010-06-03 05:09:53 +00:00
|
|
|
<varlistentry>
|
|
|
|
<term>GObject</term>
|
|
|
|
<listitem><para>A library that provides a type system, a collection of
|
|
|
|
fundamental types including an object type, a signal system.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>GIO</term>
|
|
|
|
<listitem><para>A modern, easy-to-use VFS API including abstractions for
|
|
|
|
files, drives, volumes, stream IO, as well as network programming and
|
|
|
|
DBus communication.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>cairo</term>
|
|
|
|
<listitem><para>Cairo is a 2D graphics library with support for multiple
|
|
|
|
output devices.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
2001-09-08 04:39:53 +00:00
|
|
|
<varlistentry>
|
|
|
|
<term>Pango</term>
|
|
|
|
<listitem><para>
|
|
|
|
Pango is a library for internationalized text handling. It centers
|
2010-10-12 04:19:35 +00:00
|
|
|
around the PangoLayout object, representing a paragraph of text.
|
|
|
|
Pango provides the engine for GtkTextView, GtkLabel, GtkEntry, and
|
2001-09-08 04:39:53 +00:00
|
|
|
other widgets that display text.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>ATK</term>
|
|
|
|
<listitem><para>
|
|
|
|
ATK is the Accessibility Toolkit. It provides a set of generic
|
|
|
|
interfaces allowing accessibility technologies to interact with a
|
|
|
|
graphical user interface. For example, a screen reader uses ATK to
|
|
|
|
discover the text in an interface and read it to blind users. GTK+
|
|
|
|
widgets have built-in support for accessibility using the ATK
|
|
|
|
framework.
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>GdkPixbuf</term>
|
|
|
|
<listitem><para>
|
2010-10-12 04:19:35 +00:00
|
|
|
This is a small library which allows you to create GdkPixbuf
|
2010-06-03 05:09:53 +00:00
|
|
|
("pixel buffer") objects from image data or image files.
|
2010-10-12 04:19:35 +00:00
|
|
|
Use a GdkPixbuf in combination with GtkImage to display images.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>GDK</term>
|
|
|
|
<listitem><para>
|
2001-09-08 04:39:53 +00:00
|
|
|
GDK is the abstraction layer that allows GTK+ to support multiple
|
2010-10-12 04:19:35 +00:00
|
|
|
windowing systems. GDK provides window system facilities on X11, Windows,
|
|
|
|
and OS X.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>GTK+</term>
|
|
|
|
<listitem><para>
|
2010-06-03 05:09:53 +00:00
|
|
|
The GTK+ library itself contains <firstterm>widgets</firstterm>,
|
2010-10-12 04:19:35 +00:00
|
|
|
that is, GUI components such as GtkButton or GtkTextView.
|
1999-08-16 18:51:52 +00:00
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
2002-03-07 23:20:16 +00:00
|
|
|
</partintro>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="building.sgml" />
|
|
|
|
<xi:include href="compiling.sgml" />
|
|
|
|
<xi:include href="running.sgml" />
|
|
|
|
<xi:include href="x11.sgml" />
|
|
|
|
<xi:include href="windows.sgml" />
|
|
|
|
<xi:include href="osx.sgml" />
|
|
|
|
<xi:include href="resources.sgml" />
|
|
|
|
<xi:include href="xml/question_index.sgml" />
|
2008-10-29 18:59:40 +00:00
|
|
|
<xi:include href="drawing-model.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</part>
|
2001-09-08 04:39:53 +00:00
|
|
|
|
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<part id="gtkbase">
|
2001-09-08 04:39:53 +00:00
|
|
|
<title>GTK+ Core Reference</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkmain.xml" />
|
2010-10-12 04:46:59 +00:00
|
|
|
<xi:include href="xml/gtkfeatures.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkaccelgroup.xml" />
|
|
|
|
<xi:include href="xml/gtkaccelmap.xml" />
|
|
|
|
<xi:include href="xml/gtkclipboard.xml" />
|
|
|
|
<xi:include href="xml/gtkdnd.xml" />
|
|
|
|
<xi:include href="xml/gtkicontheme.xml" />
|
|
|
|
<xi:include href="xml/gtkstock.xml" />
|
|
|
|
<xi:include href="xml/gtkiconfactory.xml" />
|
|
|
|
<xi:include href="xml/gtkrc.xml" />
|
|
|
|
<xi:include href="xml/gtksettings.xml" />
|
|
|
|
<xi:include href="xml/gtkbindings.xml" />
|
|
|
|
<xi:include href="xml/gtkenums.xml" />
|
|
|
|
<xi:include href="xml/gtkstyle.xml" />
|
|
|
|
<xi:include href="xml/gtkselection.xml" />
|
|
|
|
<xi:include href="xml/gtktesting.xml" />
|
|
|
|
<xi:include href="xml/filesystem.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</part>
|
1999-08-16 18:51:52 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<part id="gtkobjects">
|
1999-08-16 18:51:52 +00:00
|
|
|
<title>GTK+ Widgets and Objects</title>
|
2003-06-17 00:37:28 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter>
|
1999-08-16 18:51:52 +00:00
|
|
|
<title>Object Hierarchy</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/tree_index.sgml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2004-08-24 06:29:25 +00:00
|
|
|
<chapter>
|
|
|
|
<title>Widget Gallery</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="visual_index.xml" />
|
2004-08-24 06:29:25 +00:00
|
|
|
</chapter>
|
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="WindowWidgets">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Windows</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkdialog.xml" />
|
|
|
|
<xi:include href="xml/gtkinvisible.xml" />
|
|
|
|
<xi:include href="xml/gtkmessagedialog.xml" />
|
|
|
|
<xi:include href="xml/gtkwindow.xml" />
|
|
|
|
<xi:include href="xml/gtkwindowgroup.xml" />
|
|
|
|
<xi:include href="xml/gtkaboutdialog.xml" />
|
|
|
|
<xi:include href="xml/gtkassistant.xml" />
|
2010-01-28 02:10:09 +00:00
|
|
|
<xi:include href="xml/gtkoffscreenwindow.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="DisplayWidgets">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Display Widgets</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkaccellabel.xml" />
|
|
|
|
<xi:include href="xml/gtkimage.xml" />
|
|
|
|
<xi:include href="xml/gtklabel.xml" />
|
|
|
|
<xi:include href="xml/gtkprogressbar.xml" />
|
|
|
|
<xi:include href="xml/gtkstatusbar.xml" />
|
2009-06-05 18:56:08 +00:00
|
|
|
<xi:include href="xml/gtkinfobar.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkstatusicon.xml" />
|
2009-10-14 17:25:23 +00:00
|
|
|
<xi:include href="xml/gtkspinner.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="ButtonWidgets">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Buttons and Toggles</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkcheckbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkradiobutton.xml" />
|
|
|
|
<xi:include href="xml/gtktogglebutton.xml" />
|
|
|
|
<xi:include href="xml/gtklinkbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkscalebutton.xml" />
|
|
|
|
<xi:include href="xml/gtkvolumebutton.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="NumericEntry">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Numeric/Text Data Entry</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkentry.xml" />
|
2009-07-09 01:41:53 +00:00
|
|
|
<xi:include href="xml/gtkentrybuffer.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkentrycompletion.xml" />
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkscale.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhscale.xml" />
|
|
|
|
<xi:include href="xml/gtkvscale.xml" />
|
|
|
|
<xi:include href="xml/gtkspinbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkeditable.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="TextWidgetObjects">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Multiline Text Editor</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/text_widget.sgml" />
|
|
|
|
<xi:include href="xml/gtktextiter.xml" />
|
|
|
|
<xi:include href="xml/gtktextmark.xml" />
|
|
|
|
<xi:include href="xml/gtktextbuffer.xml" />
|
|
|
|
<xi:include href="xml/gtktexttag.xml" />
|
|
|
|
<xi:include href="xml/gtktexttagtable.xml" />
|
|
|
|
<xi:include href="xml/gtktextview.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="TreeWidgetObjects">
|
2004-07-19 19:57:29 +00:00
|
|
|
<title>Tree, List and Icon Grid Widgets</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/tree_widget.sgml" />
|
|
|
|
<xi:include href="xml/gtktreemodel.xml" />
|
|
|
|
<xi:include href="xml/gtktreeselection.xml" />
|
|
|
|
<xi:include href="xml/gtktreeviewcolumn.xml" />
|
|
|
|
<xi:include href="xml/gtktreeview.xml" />
|
|
|
|
<xi:include href="xml/gtktreednd.xml" />
|
|
|
|
<xi:include href="xml/gtkcellview.xml" />
|
|
|
|
<xi:include href="xml/gtkiconview.xml" />
|
|
|
|
<xi:include href="xml/gtktreesortable.xml" />
|
|
|
|
<xi:include href="xml/gtktreemodelsort.xml" />
|
|
|
|
<xi:include href="xml/gtktreemodelfilter.xml" />
|
|
|
|
<xi:include href="xml/gtkcelllayout.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrenderer.xml" />
|
|
|
|
<xi:include href="xml/gtkcelleditable.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrendereraccel.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrenderercombo.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrendererpixbuf.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrendererprogress.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrendererspin.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrenderertext.xml" />
|
|
|
|
<xi:include href="xml/gtkcellrenderertoggle.xml" />
|
2009-10-14 17:25:23 +00:00
|
|
|
<xi:include href="xml/gtkcellrendererspinner.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkliststore.xml" />
|
|
|
|
<xi:include href="xml/gtktreestore.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2007-12-14 11:03:41 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="MenusAndCombos">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Menus, Combo Box, Toolbar</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkcombobox.xml" />
|
|
|
|
<xi:include href="xml/gtkcomboboxentry.xml" />
|
|
|
|
<xi:include href="xml/gtkmenu.xml" />
|
|
|
|
<xi:include href="xml/gtkmenubar.xml" />
|
|
|
|
<xi:include href="xml/gtkmenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtkimagemenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtkradiomenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtkcheckmenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtkseparatormenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtktearoffmenuitem.xml" />
|
|
|
|
<xi:include href="xml/gtktoolshell.xml" />
|
|
|
|
<xi:include href="xml/gtktoolbar.xml" />
|
|
|
|
<xi:include href="xml/gtktoolitem.xml" />
|
2009-07-13 15:38:34 +00:00
|
|
|
<xi:include href="xml/gtktoolpalette.xml" />
|
|
|
|
<xi:include href="xml/gtktoolitemgroup.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkseparatortoolitem.xml" />
|
|
|
|
<xi:include href="xml/gtktoolbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkmenutoolbutton.xml" />
|
|
|
|
<xi:include href="xml/gtktoggletoolbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkradiotoolbutton.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2007-12-14 11:03:41 +00:00
|
|
|
|
2003-08-24 20:47:37 +00:00
|
|
|
<chapter id="Actions">
|
|
|
|
<title>Action-based menus and toolbars</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkuimanager.xml" />
|
|
|
|
<xi:include href="xml/gtkactiongroup.xml" />
|
|
|
|
<xi:include href="xml/gtkaction.xml" />
|
|
|
|
<xi:include href="xml/gtktoggleaction.xml" />
|
|
|
|
<xi:include href="xml/gtkradioaction.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentaction.xml" />
|
2009-01-23 15:15:28 +00:00
|
|
|
<xi:include href="xml/gtkactivatable.xml" />
|
2003-08-24 20:47:37 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="SelectorWidgets">
|
2010-09-25 02:16:53 +00:00
|
|
|
<title>Selectors (Color/File/Font)</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkcolorbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkcolorseldlg.xml" />
|
2008-12-28 06:59:23 +00:00
|
|
|
<xi:include href="xml/gtkcolorsel.xml" />
|
|
|
|
<xi:include href="xml/gtkhsv.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkfilechooser.xml" />
|
|
|
|
<xi:include href="xml/gtkfilechooserbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkfilechooserdialog.xml" />
|
|
|
|
<xi:include href="xml/gtkfilechooserwidget.xml" />
|
|
|
|
<xi:include href="xml/gtkfilefilter.xml" />
|
|
|
|
<xi:include href="xml/gtkfontbutton.xml" />
|
|
|
|
<xi:include href="xml/gtkfontsel.xml" />
|
|
|
|
<xi:include href="xml/gtkfontseldlg.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="LayoutContainers">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Layout Containers</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkalignment.xml" />
|
|
|
|
<xi:include href="xml/gtkaspectframe.xml" />
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkbox.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhbox.xml" />
|
|
|
|
<xi:include href="xml/gtkvbox.xml" />
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkbbox.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhbbox.xml" />
|
|
|
|
<xi:include href="xml/gtkvbbox.xml" />
|
|
|
|
<xi:include href="xml/gtkfixed.xml" />
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkpaned.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhpaned.xml" />
|
|
|
|
<xi:include href="xml/gtkvpaned.xml" />
|
|
|
|
<xi:include href="xml/gtklayout.xml" />
|
|
|
|
<xi:include href="xml/gtknotebook.xml" />
|
|
|
|
<xi:include href="xml/gtktable.xml" />
|
|
|
|
<xi:include href="xml/gtkexpander.xml" />
|
2008-10-27 04:07:42 +00:00
|
|
|
<xi:include href="xml/gtkorientable.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="Ornaments">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Ornaments</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkframe.xml" />
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkseparator.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhseparator.xml" />
|
|
|
|
<xi:include href="xml/gtkvseparator.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="ScrollingWidgets">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Scrolling</title>
|
2010-05-26 17:07:51 +00:00
|
|
|
<xi:include href="xml/gtkscrollbar.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkhscrollbar.xml" />
|
|
|
|
<xi:include href="xml/gtkvscrollbar.xml" />
|
|
|
|
<xi:include href="xml/gtkscrolledwindow.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
<chapter id="Printing">
|
|
|
|
<title>Printing</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkprintoperation.xml" />
|
|
|
|
<xi:include href="xml/gtkprintcontext.xml" />
|
|
|
|
<xi:include href="xml/gtkprintsettings.xml" />
|
|
|
|
<xi:include href="xml/gtkpagesetup.xml" />
|
|
|
|
<xi:include href="xml/gtkpapersize.xml" />
|
|
|
|
<xi:include href="xml/gtkprinter.xml" />
|
|
|
|
<xi:include href="xml/gtkprintjob.xml" />
|
|
|
|
<xi:include href="xml/gtkprintunixdialog.xml" />
|
|
|
|
<xi:include href="xml/gtkpagesetupunixdialog.xml" />
|
2006-04-21 15:09:32 +00:00
|
|
|
</chapter>
|
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="MiscObjects">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Miscellaneous</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkadjustment.xml" />
|
|
|
|
<xi:include href="xml/gtkarrow.xml" />
|
|
|
|
<xi:include href="xml/gtkcalendar.xml" />
|
|
|
|
<xi:include href="xml/gtkdrawingarea.xml" />
|
|
|
|
<xi:include href="xml/gtkeventbox.xml" />
|
|
|
|
<xi:include href="xml/gtkhandlebox.xml" />
|
|
|
|
<xi:include href="xml/gtkimcontextsimple.xml" />
|
|
|
|
<xi:include href="xml/gtkimmulticontext.xml" />
|
|
|
|
<xi:include href="xml/gtksizegroup.xml" />
|
|
|
|
<xi:include href="xml/gtktooltip.xml" />
|
|
|
|
<xi:include href="xml/gtkviewport.xml" />
|
|
|
|
<xi:include href="xml/gtkaccessible.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="AbstractObjects">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Abstract Base Classes</title>
|
2010-10-12 04:46:59 +00:00
|
|
|
<xi:include href="xml/gtkwidget.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkcontainer.xml" />
|
2010-10-12 04:46:59 +00:00
|
|
|
<xi:include href="xml/gtkbin.xml" />
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkmenushell.xml" />
|
|
|
|
<xi:include href="xml/gtkmisc.xml" />
|
|
|
|
<xi:include href="xml/gtkrange.xml" />
|
|
|
|
<xi:include href="xml/gtkimcontext.xml" />
|
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="PlugSocket">
|
2000-10-24 00:15:14 +00:00
|
|
|
<title>Cross-process Embedding</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkplug.xml" />
|
|
|
|
<xi:include href="xml/gtksocket.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2002-03-07 23:20:16 +00:00
|
|
|
<chapter id="SpecialObjects">
|
2001-02-03 01:09:41 +00:00
|
|
|
<title>Special-purpose features</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkruler.xml" />
|
|
|
|
<xi:include href="xml/gtkhruler.xml" />
|
|
|
|
<xi:include href="xml/gtkvruler.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</chapter>
|
2001-02-03 01:09:41 +00:00
|
|
|
|
2006-03-29 20:19:01 +00:00
|
|
|
<chapter id="RecentDocuments">
|
|
|
|
<title>Recently Used Documents</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkrecentmanager.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentchooser.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentchooserdialog.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentchoosermenu.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentchooserwidget.xml" />
|
|
|
|
<xi:include href="xml/gtkrecentfilter.xml" />
|
2006-03-29 20:19:01 +00:00
|
|
|
</chapter>
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
<chapter id="Builder">
|
|
|
|
<title>Interface builder</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/gtkbuildable.xml" />
|
|
|
|
<xi:include href="xml/gtkbuilder.xml" />
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
</chapter>
|
2010-06-07 20:44:58 +00:00
|
|
|
|
|
|
|
<chapter id="Application">
|
|
|
|
<title>Application support</title>
|
|
|
|
<xi:include href="xml/gtkapplication.xml" />
|
|
|
|
</chapter>
|
2003-06-17 00:37:28 +00:00
|
|
|
</part>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2003-11-18 22:50:26 +00:00
|
|
|
<part id="migrating">
|
|
|
|
<title>Migrating from Previous Versions of GTK+</title>
|
|
|
|
|
|
|
|
<partintro>
|
|
|
|
<para>
|
2010-06-07 20:44:58 +00:00
|
|
|
This part describes what you need to change in programs use
|
|
|
|
older versions of GTK+ so that they can use the new features.
|
2004-11-04 18:01:49 +00:00
|
|
|
It also mentions how to convert applications using widgets
|
|
|
|
found in the libgnomeui library to use their counterparts
|
|
|
|
in GTK+.
|
2003-11-18 22:50:26 +00:00
|
|
|
</para>
|
|
|
|
</partintro>
|
|
|
|
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/migrating-checklist.sgml" />
|
2010-08-11 01:21:01 +00:00
|
|
|
<xi:include href="xml/migrating-2to3.xml" />
|
2003-11-18 22:50:26 +00:00
|
|
|
</part>
|
|
|
|
|
2003-06-17 00:37:28 +00:00
|
|
|
<part>
|
|
|
|
<title>GTK+ Tools</title>
|
2010-05-08 05:18:53 +00:00
|
|
|
<xi:include href="gtk-query-immodules-3.0.xml" />
|
|
|
|
<xi:include href="gtk-update-icon-cache-3.0.xml" />
|
|
|
|
<xi:include href="gtk-builder-convert-3.0.xml" />
|
2002-03-07 23:20:16 +00:00
|
|
|
</part>
|
2000-10-24 00:15:14 +00:00
|
|
|
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="glossary.xml" />
|
2004-07-12 20:25:34 +00:00
|
|
|
|
2008-07-10 03:27:56 +00:00
|
|
|
<index id="api-index-full">
|
|
|
|
<title>Index of all symbols</title>
|
|
|
|
<xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
|
2004-05-05 17:36:29 +00:00
|
|
|
</index>
|
2008-07-10 03:27:56 +00:00
|
|
|
<index id="api-index-deprecated" role="deprecated">
|
2004-05-05 17:36:29 +00:00
|
|
|
<title>Index of deprecated symbols</title>
|
2008-07-10 03:27:56 +00:00
|
|
|
<xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
|
2004-05-05 17:36:29 +00:00
|
|
|
</index>
|
2010-05-01 03:21:58 +00:00
|
|
|
<index id="api-index-3-0" role="3.0">
|
|
|
|
<title>Index of new symbols in 3.0</title>
|
|
|
|
<xi:include href="xml/api-index-3.0.xml"><xi:fallback /></xi:include>
|
|
|
|
</index>
|
2009-12-18 02:42:41 +00:00
|
|
|
|
|
|
|
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
|
|
|
|
|
1999-08-16 18:51:52 +00:00
|
|
|
</book>
|