Label

Description The GtkLabel widget displays a small amount of text. As the name implies, most labels are used to label another widget such as a GtkButton, a GtkMenuItem, or a GtkOptionMenu. GtkLabel as GtkBuildable The GtkLabel implementation of the GtkBuildable interface supports a custom <attributes> element, which supports any number of <attribute> elements. the <attribute> element has attributes named name, value, start and end and allows you to specify PangoAttribute values for this label. The start and end attributes specify the range of characters to which the Pango attribute applies. If start and end are not specified, the attribute is applied to the whole text. Note that specifying ranges does not make much sense with translatable attributes. Use markup embedded in the translatable content instead. <hr> Mnemonics Labels may contain mnemonics. Mnemonics are underlined characters in the label, used for keyboard navigation. Mnemonics are created by providing a string with an underscore before the mnemonic character, such as "_File", to the functions gtk_label_new_with_mnemonic() or gtk_label_set_text_with_mnemonic(). Mnemonics automatically activate any activatable widget the label is inside, such as a GtkButton; if the label is not inside the mnemonic's target widget, you have to tell the label about the target using gtk_label_set_mnemonic_widget(). Here's a simple example where the label is inside a button: There's a convenience function to create buttons with a mnemonic label already inside: To create a mnemonic for a widget alongside the label, such as a GtkEntry, you have to point the label at the entry with gtk_label_set_mnemonic_widget(): <hr> Markup (styled text) To make it easy to format text in a label (changing colors, fonts, etc.), label text can be provided in a simple markup format. Here's how to create a label with a small font: (See complete documentation of available tags in the Pango manual.) The markup passed to gtk_label_set_markup() must be valid; for example, literal </>/ characters must be escaped as lt;, gt;, and amp;. If you pass text obtained from the user, file, or a network to gtk_label_set_markup(), you'll want to escape it with g_markup_escape_text() or g_markup_printf_escaped(). Markup strings are just a convenient way to set the PangoAttrList on a label; gtk_label_set_attributes() may be a simpler way to set attributes in some cases. Be careful though; PangoAttrList tends to cause internationalization problems, unless you're applying attributes to the entire string (i.e. unless you set the range of each attribute to [0, G_MAXINT)). The reason is that specifying the start_index and end_index for a PangoAttribute requires knowledge of the exact string being displayed, so translations will cause problems. <hr> Selectable labels Labels can be made selectable with gtk_label_set_selectable(). Selectable labels allow the user to copy the label contents to the clipboard. Only labels that contain useful-to-copy information — such as error messages — should be made selectable. <hr> Text layout A label can contain any number of paragraphs, but will have performance problems if it contains more than a small number. Paragraphs are separated by newlines or other paragraph separators understood by Pango. Labels can automatically wrap text if you call gtk_label_set_line_wrap(). gtk_label_set_justify() sets how the lines in a label align with one another. If you want to set how the label as a whole aligns in its available space, see gtk_misc_set_alignment(). <hr> Links Since 2.18, GTK+ supports markup for clickable hyperlinks in addition to regular Pango markup. The markup for links is borrowed from HTML, using the a with href and title attributes. GTK+ renders links similar to the way they appear in web browsers, with colored, underlined text. The title attribute is displayed as a tooltip on the link. An example looks like this: It is possible to implement custom handling for links and their tooltips with the "activate-link" signal and the gtk_label_get_current_uri() function.

class Label : Misc {}

Constructors

this
this(GtkLabel* gtkLabel)

Sets our main struct and passes it to the parent class

this
this(string str, bool mnemonic)

Creates a new GtkLabel, containing the text in str. If characters in str are preceded by an underscore, they are underlined. If you need a literal underscore character in a label, use '__' (two underscores). The first underlined character represents a keyboard accelerator called a mnemonic. The mnemonic key can be used to activate another widget, chosen automatically, or explicitly using gtk_label_set_mnemonic_widget(). If gtk_label_set_mnemonic_widget() is not called, then the first activatable ancestor of the GtkLabel will be chosen as the mnemonic widget. For instance, if the label is inside a button or menu item, the button or menu item will automatically become the mnemonic widget and be activated by the mnemonic.

Members

Functions

addOnActivateCurrentLink
void addOnActivateCurrentLink(void delegate(Label) dlg, ConnectFlags connectFlags)

A keybinding signal which gets emitted when the user activates a link in the label. Applications may also emit the signal with g_signal_emit_by_name() if they need to control activation of URIs programmatically. The default bindings for this signal are all forms of the Enter key. Since 2.18

addOnActivateLink
void addOnActivateLink(bool delegate(string, Label) dlg, ConnectFlags connectFlags)

The signal which gets emitted to activate a URI. Applications may connect to it to override the default behaviour, which is to call gtk_show_uri(). TRUE if the link has been activated Since 2.18

addOnCopyClipboard
void addOnCopyClipboard(void delegate(Label) dlg, ConnectFlags connectFlags)

The ::copy-clipboard signal is a keybinding signal which gets emitted to copy the selection to the clipboard. The default binding for this signal is Ctrl-c.

addOnMoveCursor
void addOnMoveCursor(void delegate(GtkMovementStep, gint, gboolean, Label) dlg, ConnectFlags connectFlags)

The ::move-cursor signal is a keybinding signal which gets emitted when the user initiates a cursor movement. If the cursor is not visible in entry, this signal causes the viewport to be moved instead. Applications should not connect to it, but may emit it with g_signal_emit_by_name() if they need to control the cursor programmatically. The default bindings for this signal come in two variants, the variant with the Shift modifier extends the selection, the variant without the Shift modifer does not. There are too many key combinations to list them all here. Arrow keys move by individual characters/lines Ctrl-arrow key combinations move by words/paragraphs Home/End keys move to the ends of the buffer TRUE if the move should extend the selection

addOnPopulatePopup
void addOnPopulatePopup(void delegate(GtkMenu*, Label) dlg, ConnectFlags connectFlags)

The ::populate-popup signal gets emitted before showing the context menu of the label. Note that only selectable labels have context menus. If you need to add items to the context menu, connect to this signal and append your menuitems to the menu.

get
void get(string str)

Warning gtk_label_get is deprecated and should not be used in newly-written code. Use gtk_label_get_text() instead. 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.

getAngle
double getAngle()

Gets the angle of rotation for the label. See gtk_label_set_angle(). Since 2.6

getAttributes
PgAttributeList getAttributes()

Gets the attribute list that was set on the label using gtk_label_set_attributes(), if any. This function does not reflect attributes that come from the labels markup (see gtk_label_set_markup()). If you want to get the effective attributes for the label, use pango_layout_get_attribute (gtk_label_get_layout (label)).

getCurrentUri
string getCurrentUri()

Returns the URI for the currently active link in the label. The active link is the one under the mouse pointer or, in a selectable label, the link in which the text cursor is currently positioned. This function is intended for use in a "activate-link" handler or for use in a "query-tooltip" handler. Since 2.18

getEllipsize
PangoEllipsizeMode getEllipsize()

Returns the ellipsizing position of the label. See gtk_label_set_ellipsize(). Since 2.6

getJustify
GtkJustification getJustify()

Returns the justification of the label. See gtk_label_set_justify().

getLabel
string getLabel()

Fetches the text from a label widget including any embedded underlines indicating mnemonics and Pango markup. (See gtk_label_get_text()).

getLabelStruct
GtkLabel* getLabelStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
getLayout
PgLayout getLayout()

Gets the PangoLayout used to display the label. The layout is useful to e.g. convert text positions to pixel positions, in combination with gtk_label_get_layout_offsets(). The returned layout is owned by the label so need not be freed by the caller.

getLayoutOffsets
void getLayoutOffsets(int x, int y)

Obtains the coordinates where the label will draw the PangoLayout representing the text in the label; useful to convert mouse events into coordinates inside the PangoLayout, e.g. to take some action if some part of the label is clicked. Of course you will need to create a GtkEventBox to receive the events, and pack the label inside it, since labels are a GTK_NO_WINDOW widget. Remember when using the PangoLayout functions you need to convert to and from pixels using PANGO_PIXELS() or PANGO_SCALE.

getLineWrap
int getLineWrap()

Returns whether lines in the label are automatically wrapped. See gtk_label_set_line_wrap().

getLineWrapMode
PangoWrapMode getLineWrapMode()

Returns line wrap mode used by the label. See gtk_label_set_line_wrap_mode(). Since 2.10

getMaxWidthChars
int getMaxWidthChars()

Retrieves the desired maximum width of label, in characters. See gtk_label_set_width_chars(). Since 2.6

getMnemonicKeyval
uint getMnemonicKeyval()

If the label has been set so that it has an mnemonic key this function returns the keyval used for the mnemonic accelerator. If there is no mnemonic set up it returns GDK_VoidSymbol.

getMnemonicWidget
Widget getMnemonicWidget()

Retrieves the target of the mnemonic (keyboard shortcut) of this label. See gtk_label_set_mnemonic_widget().

getSelectable
int getSelectable()

Gets the value set by gtk_label_set_selectable().

getSelectionBounds
int getSelectionBounds(int start, int end)

Gets the selected range of characters in the label, returning TRUE if there's a selection.

getSingleLineMode
int getSingleLineMode()

Returns whether the label is in single line mode. Since 2.6

getStruct
void* getStruct()

the main Gtk struct as a void*

getText
string getText()

Fetches the text from a label widget, as displayed on the screen. This does not include any embedded underlines indicating mnemonics or Pango markup. (See gtk_label_get_label())

getTrackVisitedLinks
int getTrackVisitedLinks()

Returns whether the label is currently keeping track of clicked links. Since 2.18

getUseMarkup
int getUseMarkup()

Returns whether the label's text is interpreted as marked up with the Pango text markup language. See gtk_label_set_use_markup().

getUseUnderline
int getUseUnderline()

Returns whether an embedded underline in the label indicates a mnemonic. See gtk_label_set_use_underline().

getWidthChars
int getWidthChars()

Retrieves the desired width of label, in characters. See gtk_label_set_width_chars(). Since 2.6

parseUline
uint parseUline(string string)

Warning gtk_label_parse_uline is deprecated and should not be used in newly-written code. Use gtk_label_set_use_underline() instead. 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.

selectRegion
void selectRegion(int startOffset, int endOffset)

Selects a range of characters in the label, if the label is selectable. See gtk_label_set_selectable(). If the label is not selectable, this function has no effect. If start_offset or end_offset are -1, then the end of the label will be substituted.

setAngle
void setAngle(double angle)

Sets the angle of rotation for the label. An angle of 90 reads from from bottom to top, an angle of 270, from top to bottom. The angle setting for the label is ignored if the label is selectable, wrapped, or ellipsized. Since 2.6

setAttributes
void setAttributes(PgAttributeList attrs)

Sets a PangoAttrList; the attributes in the list are applied to the label text. Note The attributes set with this function will be applied and merged with any other attributes previously effected by way of the "use-underline" or "use-markup" properties. While it is not recommended to mix markup strings with manually set attributes, if you must; know that the attributes will be applied to the label after the markup string is parsed.

setEllipsize
void setEllipsize(PangoEllipsizeMode mode)

Sets the mode used to ellipsize (add an ellipsis: "...") to the text if there is not enough space to render the entire string. Since 2.6

setJustify
void setJustify(GtkJustification jtype)

Sets the alignment of the lines in the text of the label relative to each other. GTK_JUSTIFY_LEFT is the default value when the widget is first created with gtk_label_new(). If you instead want to set the alignment of the label as a whole, use gtk_misc_set_alignment() instead. gtk_label_set_justify() has no effect on labels containing only a single line.

setLabel
void setLabel(string str)

Sets the text of the label. The label is interpreted as including embedded underlines and/or Pango markup depending on the values of the "use-underline"" and "use-markup" properties.

setLineWrap
void setLineWrap(int 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. Note that setting line wrapping to TRUE does not make the label wrap at its parent container's width, because GTK+ widgets conceptually can't make their requisition depend on the parent container's size. For a label that wraps at a specific position, set the label's width using gtk_widget_set_size_request().

setLineWrapMode
void setLineWrapMode(PangoWrapMode wrapMode)

If line wrapping is on (see gtk_label_set_line_wrap()) this controls how the line wrapping is done. The default is PANGO_WRAP_WORD which means wrap on word boundaries. Since 2.10

setMarkup
void setMarkup(string str)

Parses str which is marked up with the Pango text markup language, setting the label's text and attribute list based on the parse results. If the str is external data, you may need to escape it with g_markup_escape_text() or

setMarkupWithMnemonic
void setMarkupWithMnemonic(string str)

Parses str which is marked up with the Pango text markup language, setting the label's text and attribute list based on the parse results. If characters in str are preceded by an underscore, they are underlined indicating that they represent a keyboard accelerator called a mnemonic. The mnemonic key can be used to activate another widget, chosen automatically, or explicitly using gtk_label_set_mnemonic_widget().

setMaxWidthChars
void setMaxWidthChars(int nChars)

Sets the desired maximum width in characters of label to n_chars. Since 2.6

setMnemonicWidget
void setMnemonicWidget(Widget widget)

If the label has been set so that it has an mnemonic key (using i.e. gtk_label_set_markup_with_mnemonic(), gtk_label_set_text_with_mnemonic(), gtk_label_new_with_mnemonic() or the "use_underline" property) the label can be associated with a widget that is the target of the mnemonic. When the label is inside a widget (like a GtkButton or a GtkNotebook tab) it is automatically associated with the correct widget, but sometimes (i.e. when the target is a GtkEntry next to the label) you need to set it explicitly using this function. The target widget will be accelerated by emitting the GtkWidget::mnemonic-activate signal on it. The default handler for this signal will activate the widget if there are no mnemonic collisions and toggle focus between the colliding widgets otherwise.

setPattern
void setPattern(string 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".

setSelectable
void setSelectable(int setting)

Selectable labels allow the user to select text from the label, for copy-and-paste.

setSingleLineMode
void setSingleLineMode(int singleLineMode)

Sets whether the label is in single line mode. Since 2.6

setStruct
void setStruct(GObject* obj)
Undocumented in source. Be warned that the author may not have intended to support it.
setText
void setText(string str)

Sets the text within the GtkLabel widget. It overwrites any text that was there before. This will also clear any previously set mnemonic accelerators.

setTextWithMnemonic
void setTextWithMnemonic(string str)

Sets the label's text from the string str. If characters in str are preceded by an underscore, they are underlined indicating that they represent a keyboard accelerator called a mnemonic. The mnemonic key can be used to activate another widget, chosen automatically, or explicitly using gtk_label_set_mnemonic_widget().

setTrackVisitedLinks
void setTrackVisitedLinks(int trackLinks)

Sets whether the label should keep track of clicked links (and use a different color for them). Since 2.18

setUseMarkup
void setUseMarkup(int setting)

Sets whether the text of the label contains markup in Pango's text markup language. See gtk_label_set_markup().

setUseUnderline
void setUseUnderline(int setting)

If true, an underline in the text indicates the next character should be used for the mnemonic accelerator key.

setWidthChars
void setWidthChars(int nChars)

Sets the desired width in characters of label to n_chars. Since 2.6

Static functions

callBackActivateCurrentLink
void callBackActivateCurrentLink(GtkLabel* labelStruct, Label _label)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackActivateLink
gboolean callBackActivateLink(GtkLabel* labelStruct, gchar* uri, Label _label)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackCopyClipboard
void callBackCopyClipboard(GtkLabel* labelStruct, Label _label)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackMoveCursor
void callBackMoveCursor(GtkLabel* entryStruct, GtkMovementStep step, gint count, gboolean extendSelection, Label _label)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackPopulatePopup
void callBackPopulatePopup(GtkLabel* labelStruct, GtkMenu* menu, Label _label)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

connectedSignals
int[string] connectedSignals;
gtkLabel
GtkLabel* gtkLabel;

the main Gtk struct

onActivateCurrentLinkListeners
void delegate(Label)[] onActivateCurrentLinkListeners;
Undocumented in source.
onActivateLinkListeners
bool delegate(string, Label)[] onActivateLinkListeners;
Undocumented in source.
onCopyClipboardListeners
void delegate(Label)[] onCopyClipboardListeners;
Undocumented in source.
onMoveCursorListeners
void delegate(GtkMovementStep, gint, gboolean, Label)[] onMoveCursorListeners;
Undocumented in source.
onPopulatePopupListeners
void delegate(GtkMenu*, Label)[] onPopulatePopupListeners;
Undocumented in source.

Inherited Members

From Misc

gtkMisc
GtkMisc* gtkMisc;

the main Gtk struct

getMiscStruct
GtkMisc* getMiscStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
getStruct
void* getStruct()

the main Gtk struct as a void*

setStruct
void setStruct(GObject* obj)
Undocumented in source. Be warned that the author may not have intended to support it.
setAlignment
void setAlignment(float xalign, float yalign)

Sets the alignment of the widget.

setPadding
void setPadding(int xpad, int ypad)

Sets the amount of space to add around the widget.

getAlignment
void getAlignment(float xalign, float yalign)

Gets the X and Y alignment of the widget within its allocation. See gtk_misc_set_alignment().

getPadding
void getPadding(int xpad, int ypad)

Gets the padding in the X and Y directions of the widget. See gtk_misc_set_padding().

Meta