Name
GtkLabel -- A widget that displays a small to medium amount of text.
Description
The GtkLabel widget is usually used directly by the programmer to display
word(s) describing an adjacent widget or its use. It is also used internally
by Gtk+ as GtkButton labels, GtkMenu items, and many other widgets which
use text.
Details
struct GtkLabel
This should not be accessed directly. Use the accessor functions as
described below.
struct GtkLabelWord
Internal to GtkLabel.
gtk_label_new ()
Creates a new label with the given string of text inside it. You can
pass NULL to get an empty label widget.
gtk_label_set
# define gtk_label_set gtk_label_set_text |
Aliases gtk_label_set_text. Probably used for backward compatibility with
Gtk+ 1.0.x.
gtk_label_set_pattern ()
void gtk_label_set_pattern (GtkLabel *label,
const gchar *pattern); |
The pattern of underlines you want under the existing text within the
GtkLabel widget. For example if the current text of the label says
"FooBarBaz" passing a pattern of "___ ___" will underline
"Foo" and "Baz" but not "Bar".
gtk_label_set_justify ()
Set where the text within the GtkLabel will align to. This can be one of
four values: GTK_JUSTIFY_LEFT, GTK_JUSTIFY_RIGHT, GTK_JUSTIFY_CENTER,
and GTK_JUSTIFY_FILL. GTK_JUSTIFY_CENTER is the default value when the
widget is first created with gtk_label_new().
gtk_label_get ()
Gets the current string of text within the GtkLabel and writes it to
the given str argument. It does not make a copy of this string so you
must not write to it.
gtk_label_parse_uline ()
Parses the given string for underscores and converts the next
character to an underlined character. The last character that
was underlined will have its lower-cased accelerator keyval returned (i.e.
"_File" would return the keyval for "f". This is
probably only used within the Gtk+ library itself for menu items and such.
gtk_label_set_line_wrap ()
Toggles line wrapping within the GtkLabel widget. TRUE makes it break
lines if text exceeds the widget's size. FALSE lets the text get cut off
by the edge of the widget if it exceeds the widget size.
gtk_label_set_text ()
Sets the text within the GtkLabel widget. It overwrites any text that
was there before. Note that underlines that were there before do not
get overwritten. If you want to erase underlines just send NULL to
gtk_label_set_pattern().
Args
- "label" (gchar* : Read / Write)
The actual label text. Do not write to this pointer, it is not copied.
- "pattern" (gchar* : Read / Write)
The pattern of underlines under the existing text. Do not change the
pointer, it isn't copied.
- "justify" (GtkJustification : Read / Write)
The GtkJustification setting. See gtk_label_set_justify() for more info.