Sets our main struct and passes it to the parent class.
Creates a new gtk.LinkButton with the URI as its text.
Creates a new gtk.LinkButton containing a label.
The ::activate-link signal is emitted each time the gtk.LinkButton has been clicked.
Get the main Gtk struct
the main Gtk struct as a void*
Retrieves the URI set using LinkButton.setUri.
Retrieves the “visited” state of the URI where the gtk.LinkButton points. The button becomes visited when it is clicked. If the URI is changed on the button, the “visited” state is unset again.
Sets uri as the URI where the gtk.LinkButton points. As a side-effect this unsets the “visited” state of the button.
Sets the “visited” state of the URI where the gtk.LinkButton points. See LinkButton.getVisited for more details.
the main Gtk struct
the main Gtk struct
Get the main Gtk struct
the main Gtk struct as a void*
Emits a clicked signal to the given gtk.Button
Emits a enter signal to the given gtk.Button
Gets the alignment of the child in the button.
Returns whether the button will ignore the gtk-button-images setting and always show the image, if available.
Returns the button’s event window if it is realized, NULL otherwise. This function should be rarely needed.
Returns whether the button grabs focus when it is clicked with the mouse. See Button.setFocusOnClick.
Gets the widget that is currenty set as the image of button. This may have been explicitly set by Button.setImage or constructed by Button.newFromStock.
Gets the position of the image relative to the text inside the button.
Fetches the text from the label of the button, as set by Button.setLabel. If the label text has not been set the return value will be NULL. This will be the case if you create an empty button with Button.new to use as a container.
Returns the current relief style of the given gtk.Button
Returns whether the button label is a stock item.
Returns whether an embedded underline in the button label indicates a mnemonic. See gtk_button_set_use_underline ().
Emits a leave signal to the given gtk.Button
Emits a pressed signal to the given gtk.Button
Emits a released signal to the given gtk.Button
Sets the alignment of the child. This property has no effect unless the child is a gtk.Misc or a gtk.Alignment
If TRUE, the button will ignore the gtk-button-images setting and always show the image, if available.
Sets whether the button will grab focus when it is clicked with the mouse. Making mouse clicks not grab focus is useful in places like toolbars where you don’t want the keyboard focus removed from the main area of the application.
Set the image of button to the given widget. The image will be displayed if the label text is NULL or if always-show-image is TRUE. You don’t have to call Widget.show on image yourself.
Sets the position of the image relative to the text inside the button.
Sets the text of the label of the button to str. This text is also used to select the stock item if Button.setUseStock is used.
Sets the relief style of the edges of the given gtk.Button widget. Two styles exist, GTK_RELIEF_NORMAL and GTK_RELIEF_NONE. The default style is, as one can guess, GTK_RELIEF_NORMAL. The deprecated value GTK_RELIEF_HALF behaves the same as GTK_RELIEF_NORMAL.
If TRUE, the label set on the button is used as a stock id to select the stock item for the button.
If true, an underline in the text of the button label indicates the next character should be used for the mnemonic accelerator key.
The ::activate signal on GtkButton is an action signal and emitting it causes the button to animate press then release. Applications should never connect to this signal, but use the clicked signal.
Emitted when the button has been activated (pressed and released).
Emitted when the pointer enters the button.
Emitted when the pointer leaves the button.
Emitted when the button is pressed.
Emitted when the button is released.
A GtkLinkButton is a gtk.Button with a hyperlink, similar to the one used by web browsers, which triggers an action when clicked. It is useful to show quick links to resources.
A link button is created by calling either LinkButton.new or LinkButton.newWithLabel. If using the former, the URI you pass to the constructor is used as a label for the widget.
The URI bound to a GtkLinkButton can be set specifically using LinkButton.setUri, and retrieved using LinkButton.getUri.
By default, GtkLinkButton calls gtk_show_uri_on_window() when the button is clicked. This behaviour can be overridden by connecting to the activate-link signal and returning TRUE from the signal handler.
CSS nodes
GtkLinkButton has a single CSS node with name button. To differentiate it from a plain gtk.Button, it gets the .link style class.