Sets our main struct and passes it to the parent class.
Creates a new lock button which reflects the @permission.
Get the main Gtk struct
Obtains the #GPermission object that controls @button.
the main Gtk struct as a void*
Sets the #GPermission object that controls @button.
the main Gtk struct
the main Gtk struct
Get the main Gtk struct
the main Gtk struct as a void*
Emits a #GtkButton::clicked signal to the given #GtkButton.
Emits a #GtkButton::enter signal to the given #GtkButton.
Gets the alignment of the child in the button.
Returns whether the button will ignore the #GtkSettings: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 gtk_button_set_focus_on_click().
Gets the widget that is currenty set as the image of @button. This may have been explicitly set by gtk_button_set_image() or constructed by gtk_button_new_from_stock().
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 gtk_button_set_label(). 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 gtk_button_new() to use as a container.
Returns the current relief style of the given #GtkButton.
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 #GtkButton::leave signal to the given #GtkButton.
Emits a #GtkButton::pressed signal to the given #GtkButton.
Emits a #GtkButton::released signal to the given #GtkButton.
Sets the alignment of the child. This property has no effect unless the child is a #GtkMisc or a #GtkAlignment.
If %TRUE, the button will ignore the #GtkSettings: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 #GtkButton:always-show-image is %TRUE. You don’t have to call gtk_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 gtk_button_set_use_stock() is used.
Sets the relief style of the edges of the given #GtkButton 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 #GtkButton::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.
GtkLockButton is a widget that can be used in control panels or preference dialogs to allow users to obtain and revoke authorizations needed to operate the controls. The required authorization is represented by a #GPermission object. Concrete implementations of #GPermission may use PolicyKit or some other authorization framework. To obtain a PolicyKit-based #GPermission, use polkit_permission_new().
If the user is not currently allowed to perform the action, but can obtain the permission, the widget looks like this:
and the user can click the button to request the permission. Depending on the platform, this may pop up an authentication dialog or ask the user to authenticate in some other way. Once the user has obtained the permission, the widget changes to this:
and the permission can be dropped again by clicking the button. If the user is not able to obtain the permission at all, the widget looks like this:
If the user has the permission and cannot drop it, the button is hidden.
The text (and tooltips) that are shown in the various cases can be adjusted with the #GtkLockButton:text-lock, #GtkLockButton:text-unlock, #GtkLockButton:tooltip-lock, #GtkLockButton:tooltip-unlock and #GtkLockButton:tooltip-not-authorized properties.