2008-07-10 03:27:56 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
|
|
]>
|
2010-05-08 05:18:53 +00:00
|
|
|
<refentry id="gtk-question-index">
|
2002-01-01 23:51:00 +00:00
|
|
|
<refmeta>
|
|
|
|
<refentrytitle>Common Questions</refentrytitle>
|
|
|
|
<manvolnum>3</manvolnum>
|
|
|
|
<refmiscinfo>Common Questions</refmiscinfo>
|
|
|
|
</refmeta>
|
|
|
|
|
|
|
|
<refnamediv>
|
|
|
|
<refname>Common Questions</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Find answers to common questions in the GTK+ manual
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1>
|
|
|
|
<title>Questions and Answers</title>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
This is an "index" of the reference manual organized by common "How do
|
|
|
|
I..." questions. If you aren't sure which documentation to read for
|
|
|
|
the question you have, this list is a good place to start.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<qandaset>
|
|
|
|
|
|
|
|
<qandadiv><title>General</title>
|
|
|
|
|
2003-06-18 22:41:06 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I get started with GTK+?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2011-02-09 05:21:37 +00:00
|
|
|
The GTK+ <ulink url="http://www.gtk.org">website</ulink> offers some
|
|
|
|
<ulink url="http://www.gtk.org/documentation">tutorials</ulink> and other
|
|
|
|
documentation (most of it about GTK+ 2.x, but mostly still applicable).
|
|
|
|
More documentation ranging from whitepapers to online books can be found at
|
|
|
|
the <ulink url="http://library.gnome.org/devel/">GNOME developer's site</ulink>.
|
2003-06-18 22:41:06 +00:00
|
|
|
After studying these materials you should be well prepared to come back to
|
|
|
|
this reference manual for details.
|
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-01 23:51:00 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Where can I get help with GTK+, submit a bug report, or make a feature
|
2002-01-01 23:51:00 +00:00
|
|
|
request?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
See the <link linkend="gtk-resources">documentation on this topic</link>.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
|
|
|
|
<qandaentry>
|
2010-06-03 05:09:53 +00:00
|
|
|
<question><para>How do I port from one GTK+
|
2002-01-01 23:51:00 +00:00
|
|
|
version to another?</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
|
|
|
|
<para>
|
2010-06-03 05:09:53 +00:00
|
|
|
See <xref linkend="gtk-migrating-2-to-3"/>.
|
|
|
|
You may also find useful information in the documentation for
|
2002-01-01 23:51:00 +00:00
|
|
|
specific widgets and functions.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
If you have a question not covered in the manual, feel free to
|
|
|
|
ask on the mailing lists and please <ulink
|
|
|
|
url="http://bugzilla.gnome.org">file a bug report</ulink> against the
|
|
|
|
documentation.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How does memory management work in GTK+? Should I free data returned
|
|
|
|
from functions?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
|
|
|
|
<para>
|
2010-09-27 02:11:13 +00:00
|
|
|
See the documentation for #GObject and #GInitiallyUnowned. For #GObject note
|
|
|
|
specifically g_object_ref() and g_object_unref(). #GInitiallyUnowned is a
|
|
|
|
subclass of #GObject so the same points apply, except that it has a "floating"
|
|
|
|
state (explained in its documentation).
|
2005-05-16 19:34:39 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
For strings returned from functions, they will be declared "const" (using
|
|
|
|
#G_CONST_RETURN) if they should not be freed. Non-const strings should be
|
|
|
|
freed with g_free(). Arrays follow the same rule. If you find an
|
|
|
|
undocumented exception to the rules, please report a bug to <ulink
|
|
|
|
url="http://bugzilla.gnome.org">http://bugzilla.gnome.org</ulink>.
|
2002-01-01 23:51:00 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2004-11-01 19:19:06 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
2010-09-27 02:11:13 +00:00
|
|
|
Why does my program leak memory, if I destroy a widget immediately
|
2004-11-01 19:19:06 +00:00
|
|
|
after creating it ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
If <structname>GtkFoo</structname> isn't a toplevel window, then
|
|
|
|
<informalexample><programlisting>
|
|
|
|
foo = gtk_foo_new (<!-- -->);
|
|
|
|
gtk_widget_destroy (foo);
|
|
|
|
</programlisting></informalexample>
|
2010-09-27 02:11:13 +00:00
|
|
|
is a memory leak, because no one assumed the initial floating
|
|
|
|
reference. If you are using a widget and you aren't immediately
|
|
|
|
packing it into a container, then you probably want standard
|
2004-11-01 19:19:06 +00:00
|
|
|
reference counting, not floating reference counting.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2010-09-27 02:11:13 +00:00
|
|
|
To to get this, you must acquire a reference to the widget and drop the
|
|
|
|
floating reference (<quote>ref and sink</quote> in GTK+ parlance) after
|
2007-06-10 06:52:51 +00:00
|
|
|
creating it:
|
2004-11-01 19:19:06 +00:00
|
|
|
<informalexample><programlisting>
|
|
|
|
foo = gtk_foo_new (<!-- -->);
|
2010-09-27 02:11:13 +00:00
|
|
|
g_object_ref_sink (foo);
|
2004-11-01 19:19:06 +00:00
|
|
|
</programlisting></informalexample>
|
|
|
|
When you want to get rid of the widget, you must call gtk_widget_destroy()
|
2010-09-27 02:11:13 +00:00
|
|
|
to break any external connections to the widget before dropping your
|
2004-11-01 19:19:06 +00:00
|
|
|
reference:
|
|
|
|
<informalexample><programlisting>
|
2010-09-27 02:11:13 +00:00
|
|
|
gtk_widget_destroy (foo);
|
|
|
|
g_object_unref (foo);
|
2004-11-01 19:19:06 +00:00
|
|
|
</programlisting></informalexample>
|
|
|
|
When you immediately add a widget to a container, it takes care of
|
|
|
|
assuming the initial floating reference and you don't have to worry
|
|
|
|
about reference counting at all ... just call gtk_widget_destroy()
|
|
|
|
to get rid of the widget.
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2002-01-01 23:51:00 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I use GTK+ with threads?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
This is covered in the <link linkend="gdk-Threads">GDK threads
|
|
|
|
documentation</link>. See also the <link linkend="glib-Threads">GThread</link>
|
2007-06-10 06:52:51 +00:00
|
|
|
documentation for portable threading primitives.
|
2002-01-01 23:51:00 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-06 21:51:04 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I internationalize a GTK+ program?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
Most people use <ulink url="http://www.gnu.org/software/gettext/">GNU
|
|
|
|
gettext</ulink>, already required in order to install GLib. On a UNIX
|
2011-01-14 04:10:25 +00:00
|
|
|
or Linux system with gettext installed, type <literal>info gettext</literal>
|
2007-06-10 06:52:51 +00:00
|
|
|
to read the documentation.
|
2002-01-06 21:51:04 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
The short checklist on how to use gettext is: call bindtextdomain() so
|
|
|
|
gettext can find the files containing your translations, call textdomain()
|
|
|
|
to set the default translation domain, call bind_textdomain_codeset() to
|
|
|
|
request that all translated strings are returned in UTF-8, then call
|
|
|
|
gettext() to look up each string to be translated in the default domain.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<filename>gi18n.h</filename> provides the following shorthand macros for
|
|
|
|
convenience.
|
2008-07-06 23:38:41 +00:00
|
|
|
Conventionally, people define macros as follows for convenience:
|
2002-01-06 21:51:04 +00:00
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
#define _(x) gettext (x)
|
|
|
|
#define N_(x) x
|
|
|
|
#define C_(ctx,x) pgettext (ctx, x)
|
2002-01-06 21:51:04 +00:00
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
2011-01-14 04:10:25 +00:00
|
|
|
You use N_() (N stands for no-op) to mark a string for translation in
|
|
|
|
a location where a function call to gettext() is not allowed, such as
|
|
|
|
in an array initializer.
|
|
|
|
You eventually have to call gettext() on the string to actually fetch
|
|
|
|
the translation. _() both marks the string for translation and actually
|
2007-06-10 06:52:51 +00:00
|
|
|
translates it.
|
2011-01-14 04:10:25 +00:00
|
|
|
The C_() macro (C stands for context) adds an additional context to
|
|
|
|
the string that is marked for translation, which can help to disambiguate
|
|
|
|
short strings that might need different translations in different
|
|
|
|
parts of your program.
|
2006-05-08 13:55:24 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2002-01-06 21:51:04 +00:00
|
|
|
Code using these macros ends up looking like this:
|
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
2006-05-08 13:55:24 +00:00
|
|
|
#include <gi18n.h>
|
2002-01-06 21:51:04 +00:00
|
|
|
|
|
|
|
static const char *global_variable = N_("Translate this string");
|
|
|
|
|
|
|
|
static void
|
|
|
|
make_widgets (void)
|
|
|
|
{
|
|
|
|
GtkWidget *label1;
|
|
|
|
GtkWidget *label2;
|
|
|
|
|
|
|
|
label1 = gtk_label_new (_("Another string to translate"));
|
|
|
|
label2 = gtk_label_new (_(global_variable));
|
|
|
|
...
|
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Libraries using gettext should use dgettext() instead of gettext(), which
|
|
|
|
allows them to specify the translation domain each time they ask for a
|
|
|
|
translation. Libraries should also avoid calling textdomain(), since
|
|
|
|
they will be specifying the domain instead of using the default.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
With the convention that the macro <literal>GETTEXT_PACKAGE</literal> is
|
|
|
|
defined to hold your libraries translation domain,
|
|
|
|
<filename>gi18n-lib.h</filename> can be included to provide
|
|
|
|
the following convenience:
|
2002-01-06 21:51:04 +00:00
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
2002-01-06 21:51:04 +00:00
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2003-06-05 00:41:28 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
|
|
|
How do I use non-ASCII characters in GTK+ programs ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
GTK+ uses <ulink url="http://www.unicode.org">Unicode</ulink> (more exactly
|
|
|
|
UTF-8) for all text. UTF-8 encodes each Unicode codepoint as a sequence of
|
|
|
|
one to six bytes and has a number of nice properties which make it a good
|
2007-06-10 06:52:51 +00:00
|
|
|
choice for working with Unicode text in C programs:
|
2003-06-05 00:41:28 +00:00
|
|
|
<itemizedlist>
|
|
|
|
<listitem><para>
|
|
|
|
ASCII characters are encoded by their familiar ASCII codepoints.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
|
|
|
ASCII characters never appear as part of any other character.
|
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
The zero byte doesn't occur as part of a character, so that UTF-8 strings
|
|
|
|
can be manipulated with the usual C library functions for handling
|
2007-06-10 06:52:51 +00:00
|
|
|
zero-terminated strings.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para></listitem>
|
|
|
|
</itemizedlist>
|
2011-01-14 04:10:25 +00:00
|
|
|
More information about Unicode and UTF-8 can be found in the
|
|
|
|
<ulink url="http://www.cl.cam.ac.uk/~mgk25/unicode.html">UTF-8 and Unicode
|
2007-06-10 06:52:51 +00:00
|
|
|
FAQ for Unix/Linux</ulink>.
|
2003-06-05 00:41:28 +00:00
|
|
|
GLib provides functions for converting strings between UTF-8 and other
|
2007-06-10 06:52:51 +00:00
|
|
|
encodings, see g_locale_to_utf8() and g_convert().
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Text coming from external sources (e.g. files or user input), has to be
|
2011-01-14 04:10:25 +00:00
|
|
|
converted to UTF-8 before being handed over to GTK+. The following example
|
|
|
|
writes the content of a IS0-8859-1 encoded text file to
|
2007-06-10 06:52:51 +00:00
|
|
|
<literal>stdout</literal>:
|
2003-06-05 00:41:28 +00:00
|
|
|
<informalexample><programlisting>
|
|
|
|
gchar *text, *utf8_text;
|
|
|
|
gsize length;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
if (g_file_get_contents (filename, &text, &length, NULL))
|
2003-06-05 00:41:28 +00:00
|
|
|
{
|
2011-01-14 04:10:25 +00:00
|
|
|
utf8_text = g_convert (text, length, "UTF-8", "ISO-8859-1",
|
2003-06-05 00:41:28 +00:00
|
|
|
NULL, NULL, &error);
|
|
|
|
if (error != NULL)
|
|
|
|
{
|
|
|
|
fprintf ("Couldn't convert file %s to UTF-8\n", filename);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_print (utf8_text);
|
|
|
|
}
|
2011-01-14 04:10:25 +00:00
|
|
|
else
|
2003-06-05 00:43:40 +00:00
|
|
|
fprintf (stderr, "Unable to read file %s\n", filename);
|
2003-06-05 00:41:28 +00:00
|
|
|
</programlisting></informalexample>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
For string literals in the source code, there are several alternatives for
|
2007-06-10 06:52:51 +00:00
|
|
|
handling non-ASCII content:
|
2003-06-05 00:41:28 +00:00
|
|
|
<variablelist>
|
|
|
|
<varlistentry><term>direct UTF-8</term>
|
|
|
|
<listitem><para>
|
|
|
|
If your editor and compiler are capable of handling UTF-8 encoded sources,
|
2011-01-14 04:10:25 +00:00
|
|
|
it is very convenient to simply use UTF-8 for string literals, since it
|
|
|
|
allows you to edit the strings in "wysiwyg". Note that choosing this option
|
|
|
|
may reduce the portability of your code.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry><term>escaped UTF-8</term>
|
|
|
|
<listitem><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Even if your toolchain can't handle UTF-8 directly, you can still encode
|
|
|
|
string literals in UTF-8 by using octal or hexadecimal escapes like
|
|
|
|
<literal>\212</literal> or <literal>\xa8</literal> to encode each byte.
|
|
|
|
This is portable, but modifying the escaped strings is not very convenient.
|
|
|
|
Be careful when mixing hexadecimal escapes with ordinary text;
|
2003-06-05 00:41:28 +00:00
|
|
|
<literal>"\xa8abcd"</literal> is a string of length 1 !
|
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry><term>runtime conversion</term>
|
|
|
|
<listitem><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
If the string literals can be represented in an encoding which your
|
|
|
|
toolchain can handle (e.g. IS0-8859-1), you can write your source files
|
|
|
|
in that encoding and use g_convert() to convert the strings to UTF-8 at
|
|
|
|
runtime. Note that this has some runtime overhead, so you may want to move
|
|
|
|
the conversion out of inner loops.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
2011-01-14 04:10:25 +00:00
|
|
|
Here is an example showing the three approaches using the copyright sign
|
|
|
|
© which has Unicode and ISO-8859-1 codepoint 169 and is represented
|
|
|
|
in UTF-8 by the two bytes 194, 169, or <literal>"\302\251"</literal> as
|
|
|
|
a string literal:
|
2003-06-05 00:41:28 +00:00
|
|
|
<informalexample><programlisting>
|
|
|
|
g_print ("direct UTF-8: ©");
|
|
|
|
g_print ("escaped UTF-8: \302\251");
|
|
|
|
text = g_convert ("runtime conversion: ©", -1, "ISO-8859-1", "UTF-8", NULL, NULL, NULL);
|
|
|
|
g_print(text);
|
|
|
|
g_free (text);
|
|
|
|
</programlisting></informalexample>
|
|
|
|
</para>
|
2008-07-06 23:38:41 +00:00
|
|
|
<para>
|
|
|
|
If you are using gettext() to localize your application, you need to
|
|
|
|
call bind_textdomain_codeset() to ensure that translated strings are
|
|
|
|
returned in UTF-8 encoding.
|
|
|
|
</para>
|
2003-06-05 00:41:28 +00:00
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-06 21:51:04 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I use GTK+ with C++?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
There are two ways to approach this. The GTK+ header files use the subset
|
|
|
|
of C that's also valid C++, so you can simply use the normal GTK+ API
|
|
|
|
in a C++ program. Alternatively, you can use a "C++ binding"
|
2002-01-06 21:51:04 +00:00
|
|
|
such as <ulink url="http://gtkmm.sourceforge.net/">gtkmm</ulink>
|
2007-06-10 06:52:51 +00:00
|
|
|
which provides a native C++ API.
|
2002-01-06 21:51:04 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
When using GTK+ directly, keep in mind that only functions can be
|
|
|
|
connected to signals, not methods. So you will need to use global
|
|
|
|
functions or "static" class functions for signal connections.
|
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Another common issue when using GTK+ directly is that
|
|
|
|
C++ will not implicitly convert an integer to an enumeration.
|
2002-01-06 21:51:04 +00:00
|
|
|
This comes up when using bitfields; in C you can write the following
|
|
|
|
code:
|
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
gdk_window_set_events (gdk_window,
|
2002-01-06 21:51:04 +00:00
|
|
|
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
|
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
while in C++ you must write:
|
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
gdk_window_set_events (gdk_window,
|
2002-01-06 21:51:04 +00:00
|
|
|
(GdkEventMask) GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
|
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
There are very few functions that require this cast, however.
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I use GTK+ with other non-C languages?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
See the <ulink url="http://www.gtk.org/bindings.html">list of language
|
|
|
|
bindings</ulink> on <ulink
|
2007-06-10 06:52:51 +00:00
|
|
|
url="http://www.gtk.org">http://www.gtk.org</ulink>.
|
2002-01-06 21:51:04 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I load an image or animation from a file?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
To load an image file straight into a display widget, use
|
|
|
|
gtk_image_new_from_file() <footnote><para> If the file load fails,
|
|
|
|
gtk_image_new_from_file() will display no image graphic — to detect
|
|
|
|
a failed load yourself, use gdk_pixbuf_new_from_file() directly, then
|
|
|
|
gtk_image_new_from_pixbuf().</para></footnote>.
|
2007-06-10 06:52:51 +00:00
|
|
|
To load an image for another purpose, use gdk_pixbuf_new_from_file(). To i
|
|
|
|
load an animation, use gdk_pixbuf_animation_new_from_file().
|
2011-01-14 04:10:25 +00:00
|
|
|
gdk_pixbuf_animation_new_from_file() can also load non-animated images, so
|
|
|
|
use it in combination with gdk_pixbuf_animation_is_static_image() to load a
|
|
|
|
file of unknown type.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
To load an image or animation file asynchronously (without blocking), use
|
2005-05-16 19:34:39 +00:00
|
|
|
#GdkPixbufLoader.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
2003-06-05 00:41:28 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I draw text ?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:42:12 +00:00
|
|
|
To draw a piece of text, use a Pango layout and pango_cairo_show_layout().
|
2003-06-05 00:41:28 +00:00
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
|
|
|
layout = gtk_widget_create_pango_layout (widget, text);
|
|
|
|
fontdesc = pango_font_description_from_string ("Luxi Mono 12");
|
2011-01-14 04:10:25 +00:00
|
|
|
pango_layout_set_font_description (layout, fontdesc);
|
|
|
|
pango_cairo_show_layout (cr, layout);
|
2003-06-05 00:41:28 +00:00
|
|
|
pango_font_description_free (fontdesc);
|
|
|
|
g_object_unref (layout);
|
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2010-11-14 00:55:23 +00:00
|
|
|
See also the
|
|
|
|
<ulink url="http://library.gnome.org/devel/pango/stable/pango-Cairo-Rendering.html">Cairo Rendering</ulink>
|
|
|
|
section of <ulink url="http://library.gnome.org/devel/pango/stable/">Pango manual</ulink>.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
|
|
|
How do I measure the size of a piece of text ?
|
|
|
|
</para>
|
|
|
|
</question>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
2003-06-05 00:41:28 +00:00
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
To obtain the size of a piece of text, use a Pango layout and
|
2005-05-16 19:34:39 +00:00
|
|
|
pango_layout_get_pixel_size(), using code like the following:
|
2003-06-05 00:41:28 +00:00
|
|
|
<informalexample>
|
|
|
|
<programlisting>
|
|
|
|
layout = gtk_widget_create_pango_layout (widget, text);
|
|
|
|
fontdesc = pango_font_description_from_string ("Luxi Mono 12");
|
2011-01-14 04:10:25 +00:00
|
|
|
pango_layout_set_font_description (layout, fontdesc);
|
2003-06-05 00:41:28 +00:00
|
|
|
pango_layout_get_pixel_size (layout, &width, &height);
|
|
|
|
pango_font_description_free (fontdesc);
|
|
|
|
g_object_unref (layout);
|
|
|
|
</programlisting>
|
|
|
|
</informalexample>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2010-11-14 00:55:23 +00:00
|
|
|
See also the
|
|
|
|
<ulink url="http://library.gnome.org/devel/pango/stable/pango-Layout-Objects.html">Layout Objects</ulink>
|
|
|
|
section of <ulink url="http://library.gnome.org/devel/pango/stable/">Pango manual</ulink>.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Why are types not registered if I use their <literal>GTK_TYPE_BLAH</literal>
|
2007-06-10 06:52:51 +00:00
|
|
|
macro ?
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
The <literal>GTK_TYPE_BLAH</literal> macros are defined as calls to
|
2007-06-10 06:52:51 +00:00
|
|
|
<literal>gtk_blah_get_type()</literal>, and the <literal>_get_type()</literal> i
|
|
|
|
functions are declared as %G_GNUC_CONST which allows the compiler to optimize
|
2004-10-29 21:03:52 +00:00
|
|
|
the call away if it appears that the value is not being used.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
|
2004-10-29 21:03:52 +00:00
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
A common workaround for this problem is to store the result in a volatile
|
2007-06-10 06:52:51 +00:00
|
|
|
variable, which keeps the compiler from optimizing the call away.
|
2004-10-29 21:03:52 +00:00
|
|
|
<informalexample><programlisting>
|
|
|
|
volatile GType dummy = GTK_TYPE_BLAH;
|
|
|
|
</programlisting></informalexample>
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
2004-11-01 18:44:56 +00:00
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2006-06-21 14:20:42 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
|
|
|
How do I create a transparent toplevel window ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
To make a window transparent, it needs to use a visual which supports that.
|
2011-01-15 01:45:53 +00:00
|
|
|
This is done by getting the RGBA visual of the screen with
|
|
|
|
gdk_screen_get_rgba_visual() and setting it on the window. Note that
|
|
|
|
gdk_screen_get_rgba_visual() will return %NULL if transparent windows
|
|
|
|
are not supported on the screen, you should fall back to
|
|
|
|
gdk_screen_get_system_visual() in that case. Additionally, note that this
|
|
|
|
will change from screen to screen, so it needs to be repeated whenever the
|
|
|
|
window is moved to a different screen.
|
2006-06-21 14:20:42 +00:00
|
|
|
<informalexample><programlisting>
|
2011-01-15 01:45:53 +00:00
|
|
|
GdkVisual *visual;
|
2006-06-21 14:20:42 +00:00
|
|
|
|
2011-01-15 01:45:53 +00:00
|
|
|
visual = gdk_screen_get_rgba_visual (screen);
|
|
|
|
if (visual == NULL)
|
|
|
|
visual = gdk_screen_get_system_visual (screen);
|
2006-06-21 14:20:42 +00:00
|
|
|
|
2011-01-15 01:45:53 +00:00
|
|
|
gtk_widget_set_visual (GTK_WIDGET (window), visual);
|
2006-06-21 14:20:42 +00:00
|
|
|
</programlisting></informalexample>
|
2011-01-15 01:45:53 +00:00
|
|
|
To fill the alpha channel on the window simply use cairos
|
|
|
|
RGBA drawing capabilities.
|
2006-06-21 14:20:42 +00:00
|
|
|
</para>
|
2006-06-22 02:09:31 +00:00
|
|
|
<para>
|
|
|
|
Note that the presence of an RGBA visual is no guarantee that the
|
2011-01-14 04:10:25 +00:00
|
|
|
window will actually appear transparent on screen. On X11, this
|
|
|
|
requires a compositing manager to be running. See
|
2006-06-22 02:09:31 +00:00
|
|
|
gtk_widget_is_composited() for a way to find out if the alpha
|
|
|
|
channel will be respected.
|
|
|
|
</para>
|
2006-06-21 14:20:42 +00:00
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-01 23:51:00 +00:00
|
|
|
</qandadiv>
|
|
|
|
|
2002-01-06 21:09:26 +00:00
|
|
|
<qandadiv><title>Which widget should I use...</title>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
...for lists and trees?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2002-05-28 22:23:55 +00:00
|
|
|
See <link linkend="TreeWidget">tree widget overview</link> — you
|
2011-01-14 04:10:25 +00:00
|
|
|
should use the #GtkTreeView widget. (A list is just a tree with no branches,
|
2011-01-11 09:37:05 +00:00
|
|
|
so the tree widget is used for lists as well).
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
...for multi-line text display or editing?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2002-05-28 22:23:55 +00:00
|
|
|
See <link linkend="TextWidget">text widget overview</link> — you
|
2011-01-11 09:37:05 +00:00
|
|
|
should use the #GtkTextView widget.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
If you only have a small amount of text, #GtkLabel may also be appropriate
|
|
|
|
of course. It can be made selectable with gtk_label_set_selectable(). For a
|
2007-06-10 06:52:51 +00:00
|
|
|
single-line text entry, see #GtkEntry.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
...to display an image or animation?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
#GtkImage can display images in just about any format GTK+ understands.
|
|
|
|
You can also use #GtkDrawingArea if you need to do something more complex,
|
2007-06-10 06:52:51 +00:00
|
|
|
such as draw text or graphics over the top of the image.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
...for presenting a set of mutually-exclusive choices, where Windows
|
|
|
|
would use a combo box?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2005-05-16 19:34:39 +00:00
|
|
|
With GTK+, a #GtkComboBox is the recommended widget to use for this use case.
|
|
|
|
This widget looks like either a combo box or the current option menu, depending
|
2011-01-11 09:35:15 +00:00
|
|
|
on the current theme. If you need an editable text entry, use the
|
|
|
|
#GtkComboBox:has-entry property.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
</qandadiv>
|
2002-01-01 23:51:00 +00:00
|
|
|
|
2008-12-26 04:42:25 +00:00
|
|
|
<qandadiv><title>GtkWidget</title>
|
2002-01-01 23:51:00 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I change the color of a widget?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
See gtk_widget_override_color() and gtk_widget_override_background_color().
|
|
|
|
You can also change the appearance of a widget by installing a
|
|
|
|
custom style provider, see gtk_style_context_add_provider().
|
2002-01-01 23:51:00 +00:00
|
|
|
</para>
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
<para>To change the background color for widgets such as #GtkLabel that
|
|
|
|
have no background, place them in a #GtkEventBox and set the background
|
|
|
|
of the event box.
|
2002-01-01 23:51:00 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2003-06-18 22:08:42 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I change the font of a widget?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
This has several possible answers, depending on what exactly you want to
|
|
|
|
achieve. One option is gtk_widget_override_font().
|
2011-01-11 09:31:08 +00:00
|
|
|
<informalexample><programlisting>
|
2005-05-16 19:34:39 +00:00
|
|
|
PangoFontDesc *font_desc = pango_font_description_new (<!-- -->);
|
2003-06-18 22:08:42 +00:00
|
|
|
pango_font_description_set_size (font_desc, 40);
|
2011-01-14 04:10:25 +00:00
|
|
|
gtk_widget_override_font (widget, font);
|
2003-06-18 22:08:42 +00:00
|
|
|
pango_font_description_free (font_desc);
|
2011-01-11 09:31:08 +00:00
|
|
|
</programlisting></informalexample>
|
2003-06-18 22:08:42 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
If you want to make the text of a label larger, you can use
|
2007-06-10 06:52:51 +00:00
|
|
|
gtk_label_set_markup():
|
2011-01-11 09:31:08 +00:00
|
|
|
<informalexample><programlisting>
|
2003-06-18 22:08:42 +00:00
|
|
|
gtk_label_set_markup (label, "<big>big text</big>");
|
2011-01-11 09:31:08 +00:00
|
|
|
</programlisting></informalexample>
|
2011-01-14 04:10:25 +00:00
|
|
|
This is preferred for many apps because it's a relative size to the
|
|
|
|
user's chosen font size. See g_markup_escape_text() if you are
|
2007-06-10 06:52:51 +00:00
|
|
|
constructing such strings on the fly.
|
2003-06-18 22:08:42 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
You can also change the font of a widget by putting
|
|
|
|
<programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
.my-widget-class {
|
|
|
|
font: Sans 30;
|
|
|
|
}
|
2003-06-18 22:08:42 +00:00
|
|
|
</programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
in a CSS file, loading it with gtk_css_provider_load_from_file(), and
|
|
|
|
adding the provider with gtk_style_context_add_provider_for_screen().
|
|
|
|
To associate this style information with your widget, set a style class
|
|
|
|
on its #GtkStyleContext using gtk_style_context_add_class().
|
|
|
|
The advantage of this approach is that users can then override the font
|
|
|
|
you have chosen. See the #GtkStyleContext documentation for more discussion.
|
2003-06-18 22:08:42 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-04 21:50:43 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I disable/ghost/desensitize a widget?
|
|
|
|
</para></question>
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
<answer><para>
|
|
|
|
In GTK+ a disabled widget is termed "insensitive."
|
|
|
|
See gtk_widget_set_sensitive().
|
2002-01-04 21:50:43 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-01 23:51:00 +00:00
|
|
|
</qandadiv>
|
|
|
|
|
|
|
|
|
2008-12-26 04:42:25 +00:00
|
|
|
<qandadiv><title>GtkTextView</title>
|
2002-01-01 23:51:00 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I get the contents of the entire text widget as a string?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2005-05-16 19:34:39 +00:00
|
|
|
See gtk_text_buffer_get_bounds() and gtk_text_buffer_get_text()
|
|
|
|
or gtk_text_iter_get_text().
|
2002-01-01 23:51:00 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
Small additions.
* gtk/tmpl/gtktextview.sgml: Small additions.
* gtk/tmpl/gtksignal.sgml: Explain what to use instead.
* gtk/question_index.sgml, gtk/text_widget.sgml, gtk/tree_widget.sgml,
gtk/changes-1.2.sgml, gtk/changes-2.0.sgml,
gtk/framebuffer.sgml: SGML fixes and additions.
* gtk/tmpl/gtksignal.sgml, gtk/tmpl/gtkdialog.sgml,
gtk/tmpl/gtkeditable.sgml, gtk/tmpl/gtkfilesel.sgml,
gtk/tmpl/gtkmain.sgml, gtk/tmpl/gtkmenu.sgml,
gtk/tmpl/gtkmessagedialog.sgml, gtk/tmpl/gtkrc.sgml,
gtk/tmpl/gtktogglebutton.sgml, gtk/tmpl/gtkspinbutton.sgml,
gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkwindow.sgml:
Replace references to deprecated functions.
2002-01-03 23:04:44 +00:00
|
|
|
<informalexample><programlisting>
|
2002-01-01 23:51:00 +00:00
|
|
|
GtkTextIter start, end;
|
|
|
|
GtkTextBuffer *buffer;
|
|
|
|
char *text;
|
|
|
|
|
|
|
|
buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (text_view));
|
|
|
|
gtk_text_buffer_get_bounds (buffer, &start, &end);
|
|
|
|
text = gtk_text_iter_get_text (&start, &end);
|
|
|
|
/* use text */
|
|
|
|
g_free (text);
|
Small additions.
* gtk/tmpl/gtktextview.sgml: Small additions.
* gtk/tmpl/gtksignal.sgml: Explain what to use instead.
* gtk/question_index.sgml, gtk/text_widget.sgml, gtk/tree_widget.sgml,
gtk/changes-1.2.sgml, gtk/changes-2.0.sgml,
gtk/framebuffer.sgml: SGML fixes and additions.
* gtk/tmpl/gtksignal.sgml, gtk/tmpl/gtkdialog.sgml,
gtk/tmpl/gtkeditable.sgml, gtk/tmpl/gtkfilesel.sgml,
gtk/tmpl/gtkmain.sgml, gtk/tmpl/gtkmenu.sgml,
gtk/tmpl/gtkmessagedialog.sgml, gtk/tmpl/gtkrc.sgml,
gtk/tmpl/gtktogglebutton.sgml, gtk/tmpl/gtkspinbutton.sgml,
gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkwindow.sgml:
Replace references to deprecated functions.
2002-01-03 23:04:44 +00:00
|
|
|
</programlisting></informalexample>
|
2002-01-01 23:51:00 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2003-06-05 00:41:28 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I make a text widget display its complete contents in a specific font?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
If you use gtk_text_buffer_insert_with_tags() with appropriate tags to
|
|
|
|
select the font, the inserted text will have the desired appearance, but
|
|
|
|
text typed in by the user before or after the tagged block will appear in
|
|
|
|
the default style.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
To ensure that all text has the desired appearance, use
|
|
|
|
gtk_widget_override_font() to change the default font for the widget.
|
2003-06-05 00:41:28 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
2004-10-29 21:03:52 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question>
|
|
|
|
<para>
|
|
|
|
How do I make a text view scroll to the end of the buffer automatically ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2006-08-26 01:17:17 +00:00
|
|
|
A good way to keep a text buffer scrolled to the end is to place a
|
|
|
|
<link linkend="GtkTextMark">mark</link> at the end of the buffer, and
|
|
|
|
give it right gravity. The gravity has the effect that text inserted
|
|
|
|
at the mark gets inserted <emphasis>before</emphasis>, keeping the mark
|
2011-01-14 04:10:25 +00:00
|
|
|
at the end.
|
2004-10-29 21:03:52 +00:00
|
|
|
</para>
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
<para>
|
2004-10-29 21:03:52 +00:00
|
|
|
To ensure that the end of the buffer remains visible, use
|
2006-08-26 01:17:17 +00:00
|
|
|
gtk_text_view_scroll_to_mark() to scroll to the mark after
|
|
|
|
inserting new text.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
The gtk-demo application contains an example of this technique.
|
2004-10-29 21:03:52 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
2002-01-01 23:51:00 +00:00
|
|
|
</qandadiv>
|
|
|
|
|
|
|
|
|
2002-01-06 21:09:26 +00:00
|
|
|
|
2005-05-16 19:34:39 +00:00
|
|
|
<qandadiv><title>#GtkTreeView</title>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I associate some data with a row in the tree?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
Remember that the #GtkTreeModel columns don't necessarily have to be
|
|
|
|
displayed. So you can put non-user-visible data in your model just
|
|
|
|
like any other data, and retrieve it with gtk_tree_model_get().
|
|
|
|
See the <link linkend="TreeWidget">tree widget overview</link>.
|
2002-03-12 05:36:12 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-01-06 21:09:26 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I put an image and some text in the same column?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
You can pack more than one #GtkCellRenderer into a single #GtkTreeViewColumn
|
|
|
|
using gtk_tree_view_column_pack_start() or gtk_tree_view_column_pack_end().
|
|
|
|
So pack both a #GtkCellRendererPixbuf and a #GtkCellRendererText into the
|
2007-06-10 06:52:51 +00:00
|
|
|
column.
|
2002-01-06 21:09:26 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-03-07 08:03:09 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
I can set data easily on my #GtkTreeStore/#GtkListStore models using
|
2005-05-16 19:34:39 +00:00
|
|
|
gtk_list_store_set() and gtk_tree_store_set(), but can't read it back?
|
2002-03-07 08:03:09 +00:00
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2005-05-16 19:34:39 +00:00
|
|
|
Both the #GtkTreeStore and the #GtkListStore implement the #GtkTreeModel
|
2011-01-14 04:10:25 +00:00
|
|
|
interface. Consequentially, you can use any function this interface
|
|
|
|
implements. The easiest way to read a set of data back is to use
|
2007-06-10 06:52:51 +00:00
|
|
|
gtk_tree_model_get().
|
2002-03-07 08:03:09 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2003-06-05 00:41:28 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
2005-05-16 19:34:39 +00:00
|
|
|
How do I change the way that numbers are formatted by #GtkTreeView?
|
2003-06-05 00:41:28 +00:00
|
|
|
</para></question>
|
|
|
|
<answer><para>
|
2005-05-16 19:34:39 +00:00
|
|
|
Use gtk_tree_view_insert_column_with_data_func()
|
2011-01-14 04:10:25 +00:00
|
|
|
or gtk_tree_view_column_set_cell_data_func() and do the conversion
|
|
|
|
from number to string yourself (with, say, g_strdup_printf()).
|
2003-06-05 00:41:28 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The following example demonstrates this:
|
|
|
|
<informalexample><programlisting>
|
2011-01-14 04:10:25 +00:00
|
|
|
enum
|
2003-06-05 00:41:28 +00:00
|
|
|
{
|
|
|
|
DOUBLE_COLUMN,
|
|
|
|
N_COLUMNS
|
|
|
|
};
|
|
|
|
|
|
|
|
GtkListStore *mycolumns;
|
|
|
|
GtkTreeView *treeview;
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
void
|
2003-06-05 00:41:28 +00:00
|
|
|
my_cell_double_to_text (GtkTreeViewColumn *tree_column,
|
2011-01-14 04:10:25 +00:00
|
|
|
GtkCellRenderer *cell,
|
2003-06-05 00:41:28 +00:00
|
|
|
GtkTreeModel *tree_model,
|
2011-01-14 04:10:25 +00:00
|
|
|
GtkTreeIter *iter,
|
2003-06-05 00:41:28 +00:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkCellRendererText *cell_text = (GtkCellRendererText *)cell;
|
|
|
|
gdouble d;
|
|
|
|
gchar *text;
|
|
|
|
|
|
|
|
/* Get the double value from the model. */
|
|
|
|
gtk_tree_model_get (tree_model, iter, (gint)data, &d, -1);
|
|
|
|
/* Now we can format the value ourselves. */
|
|
|
|
text = g_strdup_printf ("%.2f", d);
|
|
|
|
g_object_set (cell, "text", text, NULL);
|
|
|
|
g_free (text);
|
|
|
|
}
|
|
|
|
|
2011-01-14 04:10:25 +00:00
|
|
|
void
|
2003-06-05 00:41:28 +00:00
|
|
|
set_up_new_columns (GtkTreeView *myview)
|
|
|
|
{
|
|
|
|
GtkCellRendererText *renderer;
|
|
|
|
GtkTreeViewColumn *column;
|
|
|
|
GtkListStore *mycolumns;
|
|
|
|
|
|
|
|
/* Create the data model and associate it with the given TreeView */
|
|
|
|
mycolumns = gtk_list_store_new (N_COLUMNS, G_TYPE_DOUBLE);
|
|
|
|
gtk_tree_view_set_model (myview, GTK_TREE_MODEL (mycolumns));
|
|
|
|
|
|
|
|
/* Create a GtkCellRendererText */
|
2005-05-16 19:34:39 +00:00
|
|
|
renderer = gtk_cell_renderer_text_new (<!-- -->);
|
2003-06-05 00:41:28 +00:00
|
|
|
|
|
|
|
/* Create a new column that has a title ("Example column"),
|
|
|
|
* uses the above created renderer that will render the double
|
2011-01-14 04:10:25 +00:00
|
|
|
* value into text from the associated model's rows.
|
2003-06-05 00:41:28 +00:00
|
|
|
*/
|
2005-05-16 19:34:39 +00:00
|
|
|
column = gtk_tree_view_column_new (<!-- -->);
|
2003-06-05 00:41:28 +00:00
|
|
|
gtk_tree_view_column_set_title (column, "Example column");
|
2005-05-16 19:34:39 +00:00
|
|
|
renderer = gtk_cell_renderer_text_new (<!-- -->);
|
2003-06-05 00:41:28 +00:00
|
|
|
gtk_tree_view_column_pack_start (column, renderer, TRUE);
|
|
|
|
|
|
|
|
/* Append the new column after the GtkTreeView's previous columns. */
|
|
|
|
gtk_tree_view_append_column (GTK_TREE_VIEW (myview), column);
|
|
|
|
/* Since we created the column by hand, we can set it up for our
|
|
|
|
* needs, e.g. set its minimum and maximum width, etc.
|
|
|
|
*/
|
|
|
|
/* Set up a custom function that will be called when the column content
|
|
|
|
* is rendered. We use the func_data pointer as an index into our
|
2011-01-14 04:10:25 +00:00
|
|
|
* model. This is convenient when using multi column lists.
|
2003-06-05 00:41:28 +00:00
|
|
|
*/
|
|
|
|
gtk_tree_view_column_set_cell_data_func (column, renderer,
|
2011-01-14 04:10:25 +00:00
|
|
|
my_cell_double_to_text,
|
2003-06-05 00:41:28 +00:00
|
|
|
(gpointer)DOUBLE_COLUMN, NULL);
|
|
|
|
}
|
|
|
|
</programlisting></informalexample>
|
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2005-04-07 13:36:48 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I hide the expander arrows in my tree view ?
|
|
|
|
</para></question>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
2005-04-07 13:36:48 +00:00
|
|
|
<answer><para>
|
|
|
|
Set the expander-column property of the tree view to a hidden column.
|
2005-05-16 19:34:39 +00:00
|
|
|
See gtk_tree_view_set_expander_column() and gtk_tree_view_column_set_visible().
|
2005-04-07 13:36:48 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
2005-04-07 13:36:48 +00:00
|
|
|
</qandadiv>
|
2002-01-06 21:09:26 +00:00
|
|
|
|
2006-06-21 14:20:42 +00:00
|
|
|
<qandadiv><title>Using cairo with GTK+</title>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
How do I use cairo to draw in GTK+ applications ?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
2011-01-14 04:10:25 +00:00
|
|
|
The #GtkWidget::draw signal gets a ready-to-use cairo context
|
|
|
|
as parameter that you should use.
|
2006-06-21 14:20:42 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2011-01-14 04:10:25 +00:00
|
|
|
All drawing in GTK+ is normally done in a draw handler, and GTK+
|
|
|
|
creates a temporary pixmap for double-buffering the drawing.
|
|
|
|
It is possible to turn off double-buffering, with
|
|
|
|
gtk_widget_set_double_buffered(), but this is not ideal,
|
|
|
|
since it can cause some flickering.
|
2006-06-21 14:20:42 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
Can I improve the performance of my application by using the
|
2011-01-14 04:10:25 +00:00
|
|
|
Glitz or GL backend of cairo ?
|
2006-06-21 14:20:42 +00:00
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
|
|
|
No. The GDK X11 backend uses the cairo X backend (and the other
|
|
|
|
GDK backends use their respective native cairo backends). The
|
|
|
|
GTK+ developers believe that the best way to improving the GDK
|
|
|
|
drawing performance is to optimize the cairo X backend and the
|
|
|
|
relevant code paths in the X server that is uses (mostly the
|
|
|
|
Render extension).
|
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question><para>
|
|
|
|
Can I use cairo to draw on a #GdkPixbuf ?
|
|
|
|
</para></question>
|
|
|
|
|
|
|
|
<answer><para>
|
|
|
|
No, at least not yet. The cairo image surface does not support the
|
2011-01-14 04:10:25 +00:00
|
|
|
pixel format used by GdkPixbuf.
|
2006-06-21 14:20:42 +00:00
|
|
|
</para></answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
</qandadiv>
|
|
|
|
|
2002-01-01 23:51:00 +00:00
|
|
|
</qandaset>
|
|
|
|
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
</refentry>
|