Package: gtk
Class gtk-label
SuperclassesDocumented SubclassesDirect SlotsDetails The gtk-label widget displays a small amount of text.
As the name implies, most labels are used to label another widget such as a gtk-button, a gtk-menu-item, or a gtk-combo-box
widget. MnemonicsLabels 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 gtk-label-new-with-mnemonic or gtk-label-set-text-with-mnemonic functions.Mnemonics automatically activate any activatable widget the label is inside, such as a gtk-button widget. If the label is not inside the target widget of the mnemonic, you have to tell the label about the target using the gtk-label-mnemonic-widget function. Here is a simple example where the label is inside a button: ;; Pressing Alt+H will activate this button (let ((button (make-instance 'gtk-button))) (gtk-container-add button (gtk-label-new-with-mneonic "_Hello")) ... )There is a convenience function to create buttons with a mnemonic label already inside: ;; Pressing Alt+H will activate this button (gtk-button-new-with-mnemonic "_Hello")To create a mnemonic for a widget alongside the label, such as a gtk-entry widget, you have to point the label at the entry with the gtk-label-mnemonic-widget function: ;; Pressing Alt+H will focus the entry (let ((entry (make-instance 'gtk-entry)) (label (gtk-label-new-with-mnemonic "_Hello"))) (gtk-label-mnemonic-widget label entry) ... ) 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 is how to create a label with a small font:(let ((label (make-instance 'gtk-label))) (gtk-label-set-markup label "<span style="color: red"> <small>Small text</small></span>") ... )See complete documentation of available tags in the Pango manual. The markup passed to the gtk-label-set-markup function must be valid. For example, literal <, > and & characters must be escaped as <, gt;, and &. If you pass text obtained from the user, file, or a network to the gtk-label-set-markup function, you will want to escape it with the g_markup_escape_text() or g_markup_printf_escaped() functions. Markup strings are just a convenient way to set the pango-attr-list instance on a label. The gtk-label-attributes slot access function may be a simpler way to set attributes in some cases. Be careful though, a pango-attr-list instance tends to cause internationalization problems, unless you are 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 pango-attribute structure requires knowledge of the exact string being displayed, so translations will cause problems. Selectable labelsLabels can be made selectable with the gtk-label-selectable slot access function. 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.Text layoutA 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 the gtk-label-line-wrap function. The gtk-label-justify slot access function 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 the halign and valign properties. The width-chars and max-width-chars properties can be used to control the size allocation of ellipsized or wrapped labels. For ellipsizing labels, if either is specified and less than the actual text size, it is used as the minimum width, and the actual text size is used as the natural width of the label. For wrapping labels, width-chars is used as the minimum width, if specified, and max-width-chars is used as the natural width. Even if max-width-chars specified, wrapping labels will be rewrapped to use all of the available width. Note that the interpretation of the width-chars and max-width-chars properties has changed a bit with the introduction of "width-for-height" geometry management. LinksGTK 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:(gtk-label-set-markup label "Go to the <span style="color: red"> <a>GTK website</a></span> for more...")It is possible to implement custom handling for links and their tooltips with the "activate-link" signal and the gtk-label-current-uri function. GtkLabel as GtkBuildableExample: A UI definition fragment specifying Pango attributes <object class="GtkLabel"> <attributes> <attribute name="weight" value="PANGO_WEIGHT_BOLD"/> <attribute name="background" value="red" start="5" end="10"/>" </attributes> </object>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. CSS nodeslabel ├── [selection] ├── [link] ┊ ╰── [link]The gtk-label implementation has a single CSS node with the name label. A wide variety of style classes may be applied to labels, such as the .title, .subtitle, .dim-label style classes. In the gtk-shortcuts-window widget, labels are used wth the .keycap style class. If the label has a selection, it gets a subnode with name selection. If the label has links, there is one subnode per link. These subnodes carry the link or visited state depending on whether they have been visited. Signal DetailsThe "activate-current-link" signallambda (label) :actionA keybinding signal which gets emitted when the user activates a link in the label. Applications may also emit the signal with the g-signal-emit function if they need to control activation of URIs programmatically. The default bindings for this signal are all forms of the Enter key.
The "activate-link" signallambda (label uri) :run-lastThe signal which gets emitted to activate a URI. Applications may connect to it to override the default behaviour, which is to call the gtk-show-uri function.
The "copy-clipboard" signallambda (label) :actionThe signal is a keybinding signal which gets emitted to copy the selection to the clipboard. The default binding for this signal is the Ctrl-c key.
The "move-cursor" signallambda (label step count extend) :actionThe signal is a keybinding signal which gets emitted when the user initiates a cursor movement. If the cursor is not visible in the label, this signal causes the viewport to be moved instead. Applications should not connect to it, but may emit it with the g-signal-emit function 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.
The "populate-popup" signallambda (label menu) :run-lastThe 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.
| Slot Access FunctionsInherited Slot Access Functions |
*2021-10-31