Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
- Exported types
- Methods
- clicked
- enter
- getAlignment
- getAlwaysShowImage
- getEventWindow
- getFocusOnClick
- getImage
- getImagePosition
- getLabel
- getRelief
- getUseStock
- getUseUnderline
- leave
- new
- newFromIconName
- newFromStock
- newWithLabel
- newWithMnemonic
- pressed
- released
- setAlignment
- setAlwaysShowImage
- setFocusOnClick
- setImage
- setImagePosition
- setLabel
- setRelief
- setUseStock
- setUseUnderline
- Properties
- Signals
The Button
widget is generally used to trigger a callback function that is
called when the button is pressed. The various signals and how to use them
are outlined below.
The Button
widget can hold any valid child widget. That is, it can hold
almost any other standard Widget
. The most commonly used child is the
Label
.
CSS nodes
GtkButton has a single CSS node with name button. The node will get the style classes .image-button or .text-button, if the content is just an image or label, respectively. It may also receive the .flat style class.
Other style classes that are commonly used with GtkButton include .suggested-action and .destructive-action. In special cases, buttons can be made round by adding the .circular style class.
Button-like widgets like ToggleButton
, MenuButton
, VolumeButton
,
LockButton
, ColorButton
, FontButton
or FileChooserButton
use
style classes such as .toggle, .popup, .scale, .lock, .color, .font, .file
to differentiate themselves from a plain GtkButton.
Synopsis
- newtype Button = Button (ManagedPtr Button)
- class GObject o => IsButton o
- toButton :: (MonadIO m, IsButton o) => o -> m Button
- noButton :: Maybe Button
- buttonClicked :: (HasCallStack, MonadIO m, IsButton a) => a -> m ()
- buttonEnter :: (HasCallStack, MonadIO m, IsButton a) => a -> m ()
- buttonGetAlignment :: (HasCallStack, MonadIO m, IsButton a) => a -> m (Float, Float)
- buttonGetAlwaysShowImage :: (HasCallStack, MonadIO m, IsButton a) => a -> m Bool
- buttonGetEventWindow :: (HasCallStack, MonadIO m, IsButton a) => a -> m Window
- buttonGetFocusOnClick :: (HasCallStack, MonadIO m, IsButton a) => a -> m Bool
- buttonGetImage :: (HasCallStack, MonadIO m, IsButton a) => a -> m (Maybe Widget)
- buttonGetImagePosition :: (HasCallStack, MonadIO m, IsButton a) => a -> m PositionType
- buttonGetLabel :: (HasCallStack, MonadIO m, IsButton a) => a -> m Text
- buttonGetRelief :: (HasCallStack, MonadIO m, IsButton a) => a -> m ReliefStyle
- buttonGetUseStock :: (HasCallStack, MonadIO m, IsButton a) => a -> m Bool
- buttonGetUseUnderline :: (HasCallStack, MonadIO m, IsButton a) => a -> m Bool
- buttonLeave :: (HasCallStack, MonadIO m, IsButton a) => a -> m ()
- buttonNew :: (HasCallStack, MonadIO m) => m Button
- buttonNewFromIconName :: (HasCallStack, MonadIO m) => Maybe Text -> Int32 -> m Button
- buttonNewFromStock :: (HasCallStack, MonadIO m) => Text -> m Button
- buttonNewWithLabel :: (HasCallStack, MonadIO m) => Text -> m Button
- buttonNewWithMnemonic :: (HasCallStack, MonadIO m) => Text -> m Button
- buttonPressed :: (HasCallStack, MonadIO m, IsButton a) => a -> m ()
- buttonReleased :: (HasCallStack, MonadIO m, IsButton a) => a -> m ()
- buttonSetAlignment :: (HasCallStack, MonadIO m, IsButton a) => a -> Float -> Float -> m ()
- buttonSetAlwaysShowImage :: (HasCallStack, MonadIO m, IsButton a) => a -> Bool -> m ()
- buttonSetFocusOnClick :: (HasCallStack, MonadIO m, IsButton a) => a -> Bool -> m ()
- buttonSetImage :: (HasCallStack, MonadIO m, IsButton a, IsWidget b) => a -> Maybe b -> m ()
- buttonSetImagePosition :: (HasCallStack, MonadIO m, IsButton a) => a -> PositionType -> m ()
- buttonSetLabel :: (HasCallStack, MonadIO m, IsButton a) => a -> Text -> m ()
- buttonSetRelief :: (HasCallStack, MonadIO m, IsButton a) => a -> ReliefStyle -> m ()
- buttonSetUseStock :: (HasCallStack, MonadIO m, IsButton a) => a -> Bool -> m ()
- buttonSetUseUnderline :: (HasCallStack, MonadIO m, IsButton a) => a -> Bool -> m ()
- constructButtonAlwaysShowImage :: IsButton o => Bool -> IO (GValueConstruct o)
- getButtonAlwaysShowImage :: (MonadIO m, IsButton o) => o -> m Bool
- setButtonAlwaysShowImage :: (MonadIO m, IsButton o) => o -> Bool -> m ()
- clearButtonImage :: (MonadIO m, IsButton o) => o -> m ()
- constructButtonImage :: (IsButton o, IsWidget a) => a -> IO (GValueConstruct o)
- getButtonImage :: (MonadIO m, IsButton o) => o -> m (Maybe Widget)
- setButtonImage :: (MonadIO m, IsButton o, IsWidget a) => o -> a -> m ()
- constructButtonImagePosition :: IsButton o => PositionType -> IO (GValueConstruct o)
- getButtonImagePosition :: (MonadIO m, IsButton o) => o -> m PositionType
- setButtonImagePosition :: (MonadIO m, IsButton o) => o -> PositionType -> m ()
- constructButtonLabel :: IsButton o => Text -> IO (GValueConstruct o)
- getButtonLabel :: (MonadIO m, IsButton o) => o -> m Text
- setButtonLabel :: (MonadIO m, IsButton o) => o -> Text -> m ()
- constructButtonRelief :: IsButton o => ReliefStyle -> IO (GValueConstruct o)
- getButtonRelief :: (MonadIO m, IsButton o) => o -> m ReliefStyle
- setButtonRelief :: (MonadIO m, IsButton o) => o -> ReliefStyle -> m ()
- constructButtonUseStock :: IsButton o => Bool -> IO (GValueConstruct o)
- getButtonUseStock :: (MonadIO m, IsButton o) => o -> m Bool
- setButtonUseStock :: (MonadIO m, IsButton o) => o -> Bool -> m ()
- constructButtonUseUnderline :: IsButton o => Bool -> IO (GValueConstruct o)
- getButtonUseUnderline :: (MonadIO m, IsButton o) => o -> m Bool
- setButtonUseUnderline :: (MonadIO m, IsButton o) => o -> Bool -> m ()
- constructButtonXalign :: IsButton o => Float -> IO (GValueConstruct o)
- getButtonXalign :: (MonadIO m, IsButton o) => o -> m Float
- setButtonXalign :: (MonadIO m, IsButton o) => o -> Float -> m ()
- constructButtonYalign :: IsButton o => Float -> IO (GValueConstruct o)
- getButtonYalign :: (MonadIO m, IsButton o) => o -> m Float
- setButtonYalign :: (MonadIO m, IsButton o) => o -> Float -> m ()
- type ButtonActivateCallback = IO ()
- type C_ButtonActivateCallback = Ptr () -> Ptr () -> IO ()
- afterButtonActivate :: (IsButton a, MonadIO m) => a -> ButtonActivateCallback -> m SignalHandlerId
- genClosure_ButtonActivate :: ButtonActivateCallback -> IO Closure
- mk_ButtonActivateCallback :: C_ButtonActivateCallback -> IO (FunPtr C_ButtonActivateCallback)
- noButtonActivateCallback :: Maybe ButtonActivateCallback
- onButtonActivate :: (IsButton a, MonadIO m) => a -> ButtonActivateCallback -> m SignalHandlerId
- wrap_ButtonActivateCallback :: ButtonActivateCallback -> C_ButtonActivateCallback
- type ButtonClickedCallback = IO ()
- type C_ButtonClickedCallback = Ptr () -> Ptr () -> IO ()
- afterButtonClicked :: (IsButton a, MonadIO m) => a -> ButtonClickedCallback -> m SignalHandlerId
- genClosure_ButtonClicked :: ButtonClickedCallback -> IO Closure
- mk_ButtonClickedCallback :: C_ButtonClickedCallback -> IO (FunPtr C_ButtonClickedCallback)
- noButtonClickedCallback :: Maybe ButtonClickedCallback
- onButtonClicked :: (IsButton a, MonadIO m) => a -> ButtonClickedCallback -> m SignalHandlerId
- wrap_ButtonClickedCallback :: ButtonClickedCallback -> C_ButtonClickedCallback
- type ButtonEnterCallback = IO ()
- type C_ButtonEnterCallback = Ptr () -> Ptr () -> IO ()
- afterButtonEnter :: (IsButton a, MonadIO m) => a -> ButtonEnterCallback -> m SignalHandlerId
- genClosure_ButtonEnter :: ButtonEnterCallback -> IO Closure
- mk_ButtonEnterCallback :: C_ButtonEnterCallback -> IO (FunPtr C_ButtonEnterCallback)
- noButtonEnterCallback :: Maybe ButtonEnterCallback
- onButtonEnter :: (IsButton a, MonadIO m) => a -> ButtonEnterCallback -> m SignalHandlerId
- wrap_ButtonEnterCallback :: ButtonEnterCallback -> C_ButtonEnterCallback
- type ButtonLeaveCallback = IO ()
- type C_ButtonLeaveCallback = Ptr () -> Ptr () -> IO ()
- afterButtonLeave :: (IsButton a, MonadIO m) => a -> ButtonLeaveCallback -> m SignalHandlerId
- genClosure_ButtonLeave :: ButtonLeaveCallback -> IO Closure
- mk_ButtonLeaveCallback :: C_ButtonLeaveCallback -> IO (FunPtr C_ButtonLeaveCallback)
- noButtonLeaveCallback :: Maybe ButtonLeaveCallback
- onButtonLeave :: (IsButton a, MonadIO m) => a -> ButtonLeaveCallback -> m SignalHandlerId
- wrap_ButtonLeaveCallback :: ButtonLeaveCallback -> C_ButtonLeaveCallback
- type ButtonPressedCallback = IO ()
- type C_ButtonPressedCallback = Ptr () -> Ptr () -> IO ()
- afterButtonPressed :: (IsButton a, MonadIO m) => a -> ButtonPressedCallback -> m SignalHandlerId
- genClosure_ButtonPressed :: ButtonPressedCallback -> IO Closure
- mk_ButtonPressedCallback :: C_ButtonPressedCallback -> IO (FunPtr C_ButtonPressedCallback)
- noButtonPressedCallback :: Maybe ButtonPressedCallback
- onButtonPressed :: (IsButton a, MonadIO m) => a -> ButtonPressedCallback -> m SignalHandlerId
- wrap_ButtonPressedCallback :: ButtonPressedCallback -> C_ButtonPressedCallback
- type ButtonReleasedCallback = IO ()
- type C_ButtonReleasedCallback = Ptr () -> Ptr () -> IO ()
- afterButtonReleased :: (IsButton a, MonadIO m) => a -> ButtonReleasedCallback -> m SignalHandlerId
- genClosure_ButtonReleased :: ButtonReleasedCallback -> IO Closure
- mk_ButtonReleasedCallback :: C_ButtonReleasedCallback -> IO (FunPtr C_ButtonReleasedCallback)
- noButtonReleasedCallback :: Maybe ButtonReleasedCallback
- onButtonReleased :: (IsButton a, MonadIO m) => a -> ButtonReleasedCallback -> m SignalHandlerId
- wrap_ButtonReleasedCallback :: ButtonReleasedCallback -> C_ButtonReleasedCallback
Exported types
Memory-managed wrapper type.
Instances
GObject Button Source # | |
Defined in GI.Gtk.Objects.Button gobjectType :: Button -> IO GType # | |
IsImplementorIface Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsObject Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsActionable Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsActivatable Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsBuildable Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsBin Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsButton Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsContainer Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsWidget Button Source # | |
Defined in GI.Gtk.Objects.Button |
class GObject o => IsButton o Source #
Instances
(GObject a, (UnknownAncestorError Button a :: Constraint)) => IsButton a Source # | |
Defined in GI.Gtk.Objects.Button | |
IsButton Button Source # | |
Defined in GI.Gtk.Objects.Button | |
IsButton CheckButton Source # | |
Defined in GI.Gtk.Objects.CheckButton | |
IsButton RadioButton Source # | |
Defined in GI.Gtk.Objects.RadioButton | |
IsButton ScaleButton Source # | |
Defined in GI.Gtk.Objects.ScaleButton | |
IsButton ToggleButton Source # | |
Defined in GI.Gtk.Objects.ToggleButton | |
IsButton VolumeButton Source # | |
Defined in GI.Gtk.Objects.VolumeButton | |
IsButton ModelButton Source # | |
Defined in GI.Gtk.Objects.ModelButton | |
IsButton MenuButton Source # | |
Defined in GI.Gtk.Objects.MenuButton | |
IsButton LockButton Source # | |
Defined in GI.Gtk.Objects.LockButton | |
IsButton LinkButton Source # | |
Defined in GI.Gtk.Objects.LinkButton | |
IsButton FontButton Source # | |
Defined in GI.Gtk.Objects.FontButton | |
IsButton ColorButton Source # | |
Defined in GI.Gtk.Objects.ColorButton |
Methods
clicked
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m () |
enter
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m () |
getAlignment
Deprecated: (Since version 3.14)Access the child widget directly if you need to controlits alignment.
Gets the alignment of the child in the button.
Since: 2.4
getAlwaysShowImage
buttonGetAlwaysShowImage Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Bool | Returns: |
Returns whether the button will ignore the Settings
:gtk-button-images
setting and always show the image, if available.
Since: 3.6
getEventWindow
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Window | Returns: |
Returns the button’s event window if it is realized, Nothing
otherwise.
This function should be rarely needed.
Since: 2.22
getFocusOnClick
buttonGetFocusOnClick Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Bool | Returns: |
Deprecated: (Since version 3.20)Use widgetGetFocusOnClick
instead
Returns whether the button grabs focus when it is clicked with the mouse.
See buttonSetFocusOnClick
.
Since: 2.4
getImage
Gets the widget that is currenty set as the image of button
.
This may have been explicitly set by buttonSetImage
or constructed by buttonNewFromStock
.
Since: 2.6
getImagePosition
buttonGetImagePosition Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m PositionType | Returns: the position |
Gets the position of the image relative to the text inside the button.
Since: 2.10
getLabel
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Text | Returns: The text of the label widget. This string is owned by the widget and must not be modified or freed. |
Fetches the text from the label of the button, as set by
buttonSetLabel
. If the label text has not
been set the return value will be Nothing
. This will be the
case if you create an empty button with buttonNew
to
use as a container.
getRelief
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m ReliefStyle | Returns: The current |
Returns the current relief style of the given Button
.
getUseStock
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Bool | Returns: |
Deprecated: (Since version 3.10)
Returns whether the button label is a stock item.
getUseUnderline
buttonGetUseUnderline Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m Bool | Returns: |
Returns whether an embedded underline in the button label indicates a mnemonic. See gtk_button_set_use_underline ().
leave
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m () |
new
:: (HasCallStack, MonadIO m) | |
=> m Button | Returns: The newly created |
Creates a new Button
widget. To add a child widget to the button,
use containerAdd
.
newFromIconName
buttonNewFromIconName Source #
:: (HasCallStack, MonadIO m) | |
=> Maybe Text |
|
-> Int32 |
|
-> m Button | Returns: a new |
Creates a new button containing an icon from the current icon theme.
If the icon name isn’t known, a “broken image” icon will be displayed instead. If the current icon theme is changed, the icon will be updated appropriately.
This function is a convenience wrapper around buttonNew
and
buttonSetImage
.
Since: 3.10
newFromStock
:: (HasCallStack, MonadIO m) | |
=> Text |
|
-> m Button | Returns: a new |
Deprecated: (Since version 3.10)Use buttonNewWithLabel
instead.
Creates a new Button
containing the image and text from a stock item.
Some stock ids have preprocessor macros like STOCK_OK
and
STOCK_APPLY
.
If stockId
is unknown, then it will be treated as a mnemonic
label (as for buttonNewWithMnemonic
).
newWithLabel
newWithMnemonic
buttonNewWithMnemonic Source #
:: (HasCallStack, MonadIO m) | |
=> Text |
|
-> m Button | Returns: a new |
Creates a new Button
containing a label.
If characters in label
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.
Pressing Alt and that key activates the button.
pressed
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m () |
released
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> m () |
setAlignment
setAlwaysShowImage
setFocusOnClick
buttonSetFocusOnClick Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> Bool |
|
-> m () |
Deprecated: (Since version 3.20)Use widgetSetFocusOnClick
instead
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.
Since: 2.4
setImage
:: (HasCallStack, MonadIO m, IsButton a, IsWidget b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Set the image of button
to the given widget. The image will be
displayed if the label text is Nothing
or if
Button
:always-show-image
is True
. You don’t have to call
widgetShow
on image
yourself.
Since: 2.6
setImagePosition
buttonSetImagePosition Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> PositionType |
|
-> m () |
Sets the position of the image relative to the text inside the button.
Since: 2.10
setLabel
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> Text |
|
-> m () |
Sets the text of the label of the button to str
. This text is
also used to select the stock item if buttonSetUseStock
is used.
This will also clear any previously set labels.
setRelief
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> ReliefStyle |
|
-> m () |
Sets the relief style of the edges of the given Button
widget.
Two styles exist, ReliefStyleNormal
and ReliefStyleNone
.
The default style is, as one can guess, ReliefStyleNormal
.
The deprecated value ReliefStyleHalf
behaves the same as
ReliefStyleNormal
.
setUseStock
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> Bool |
|
-> m () |
Deprecated: (Since version 3.10)
If True
, the label set on the button is used as a
stock id to select the stock item for the button.
setUseUnderline
buttonSetUseUnderline Source #
:: (HasCallStack, MonadIO m, IsButton a) | |
=> a |
|
-> Bool |
|
-> m () |
If true, an underline in the text of the button label indicates the next character should be used for the mnemonic accelerator key.
Properties
alwaysShowImage
If True
, the button will ignore the Settings
:gtk-button-images
setting and always show the image, if available.
Use this property if the button would be useless or hard to use without the image.
Since: 3.6
constructButtonAlwaysShowImage :: IsButton o => Bool -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “always-show-image
” property. This is rarely needed directly, but it is used by new
.
getButtonAlwaysShowImage :: (MonadIO m, IsButton o) => o -> m Bool Source #
Get the value of the “always-show-image
” property.
When overloading is enabled, this is equivalent to
get
button #alwaysShowImage
setButtonAlwaysShowImage :: (MonadIO m, IsButton o) => o -> Bool -> m () Source #
Set the value of the “always-show-image
” property.
When overloading is enabled, this is equivalent to
set
button [ #alwaysShowImage:=
value ]
image
The child widget to appear next to the button text.
Since: 2.6
clearButtonImage :: (MonadIO m, IsButton o) => o -> m () Source #
Set the value of the “image
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#image
constructButtonImage :: (IsButton o, IsWidget a) => a -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “image
” property. This is rarely needed directly, but it is used by new
.
getButtonImage :: (MonadIO m, IsButton o) => o -> m (Maybe Widget) Source #
Get the value of the “image
” property.
When overloading is enabled, this is equivalent to
get
button #image
setButtonImage :: (MonadIO m, IsButton o, IsWidget a) => o -> a -> m () Source #
Set the value of the “image
” property.
When overloading is enabled, this is equivalent to
set
button [ #image:=
value ]
imagePosition
The position of the image relative to the text inside the button.
Since: 2.10
constructButtonImagePosition :: IsButton o => PositionType -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “image-position
” property. This is rarely needed directly, but it is used by new
.
getButtonImagePosition :: (MonadIO m, IsButton o) => o -> m PositionType Source #
Get the value of the “image-position
” property.
When overloading is enabled, this is equivalent to
get
button #imagePosition
setButtonImagePosition :: (MonadIO m, IsButton o) => o -> PositionType -> m () Source #
Set the value of the “image-position
” property.
When overloading is enabled, this is equivalent to
set
button [ #imagePosition:=
value ]
label
No description available in the introspection data.
constructButtonLabel :: IsButton o => Text -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “label
” property. This is rarely needed directly, but it is used by new
.
getButtonLabel :: (MonadIO m, IsButton o) => o -> m Text Source #
Get the value of the “label
” property.
When overloading is enabled, this is equivalent to
get
button #label
setButtonLabel :: (MonadIO m, IsButton o) => o -> Text -> m () Source #
Set the value of the “label
” property.
When overloading is enabled, this is equivalent to
set
button [ #label:=
value ]
relief
No description available in the introspection data.
constructButtonRelief :: IsButton o => ReliefStyle -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “relief
” property. This is rarely needed directly, but it is used by new
.
getButtonRelief :: (MonadIO m, IsButton o) => o -> m ReliefStyle Source #
Get the value of the “relief
” property.
When overloading is enabled, this is equivalent to
get
button #relief
setButtonRelief :: (MonadIO m, IsButton o) => o -> ReliefStyle -> m () Source #
Set the value of the “relief
” property.
When overloading is enabled, this is equivalent to
set
button [ #relief:=
value ]
useStock
No description available in the introspection data.
constructButtonUseStock :: IsButton o => Bool -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “use-stock
” property. This is rarely needed directly, but it is used by new
.
getButtonUseStock :: (MonadIO m, IsButton o) => o -> m Bool Source #
Get the value of the “use-stock
” property.
When overloading is enabled, this is equivalent to
get
button #useStock
setButtonUseStock :: (MonadIO m, IsButton o) => o -> Bool -> m () Source #
Set the value of the “use-stock
” property.
When overloading is enabled, this is equivalent to
set
button [ #useStock:=
value ]
useUnderline
No description available in the introspection data.
constructButtonUseUnderline :: IsButton o => Bool -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “use-underline
” property. This is rarely needed directly, but it is used by new
.
getButtonUseUnderline :: (MonadIO m, IsButton o) => o -> m Bool Source #
Get the value of the “use-underline
” property.
When overloading is enabled, this is equivalent to
get
button #useUnderline
setButtonUseUnderline :: (MonadIO m, IsButton o) => o -> Bool -> m () Source #
Set the value of the “use-underline
” property.
When overloading is enabled, this is equivalent to
set
button [ #useUnderline:=
value ]
xalign
If the child of the button is a Misc
or Alignment
, this property
can be used to control its horizontal alignment. 0.0 is left aligned,
1.0 is right aligned.
Since: 2.4
constructButtonXalign :: IsButton o => Float -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “xalign
” property. This is rarely needed directly, but it is used by new
.
getButtonXalign :: (MonadIO m, IsButton o) => o -> m Float Source #
Get the value of the “xalign
” property.
When overloading is enabled, this is equivalent to
get
button #xalign
setButtonXalign :: (MonadIO m, IsButton o) => o -> Float -> m () Source #
Set the value of the “xalign
” property.
When overloading is enabled, this is equivalent to
set
button [ #xalign:=
value ]
yalign
If the child of the button is a Misc
or Alignment
, this property
can be used to control its vertical alignment. 0.0 is top aligned,
1.0 is bottom aligned.
Since: 2.4
constructButtonYalign :: IsButton o => Float -> IO (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “yalign
” property. This is rarely needed directly, but it is used by new
.
getButtonYalign :: (MonadIO m, IsButton o) => o -> m Float Source #
Get the value of the “yalign
” property.
When overloading is enabled, this is equivalent to
get
button #yalign
setButtonYalign :: (MonadIO m, IsButton o) => o -> Float -> m () Source #
Set the value of the “yalign
” property.
When overloading is enabled, this is equivalent to
set
button [ #yalign:=
value ]
Signals
activate
type ButtonActivateCallback = IO () Source #
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
Button
::clicked
signal.
type C_ButtonActivateCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonActivate :: (IsButton a, MonadIO m) => a -> ButtonActivateCallback -> m SignalHandlerId Source #
Connect a signal handler for the “activate
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #activate callback
genClosure_ButtonActivate :: ButtonActivateCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonActivateCallback :: C_ButtonActivateCallback -> IO (FunPtr C_ButtonActivateCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonActivateCallback
.
noButtonActivateCallback :: Maybe ButtonActivateCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonActivateCallback
onButtonActivate :: (IsButton a, MonadIO m) => a -> ButtonActivateCallback -> m SignalHandlerId Source #
Connect a signal handler for the “activate
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #activate callback
wrap_ButtonActivateCallback :: ButtonActivateCallback -> C_ButtonActivateCallback Source #
Wrap a ButtonActivateCallback
into a C_ButtonActivateCallback
.
clicked
type ButtonClickedCallback = IO () Source #
Emitted when the button has been activated (pressed and released).
type C_ButtonClickedCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonClicked :: (IsButton a, MonadIO m) => a -> ButtonClickedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “clicked
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #clicked callback
genClosure_ButtonClicked :: ButtonClickedCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonClickedCallback :: C_ButtonClickedCallback -> IO (FunPtr C_ButtonClickedCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonClickedCallback
.
noButtonClickedCallback :: Maybe ButtonClickedCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonClickedCallback
onButtonClicked :: (IsButton a, MonadIO m) => a -> ButtonClickedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “clicked
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #clicked callback
wrap_ButtonClickedCallback :: ButtonClickedCallback -> C_ButtonClickedCallback Source #
Wrap a ButtonClickedCallback
into a C_ButtonClickedCallback
.
enter
type ButtonEnterCallback = IO () Source #
Deprecated: (Since version 2.8)Use the Widget
::enter-notify-event
signal.
Emitted when the pointer enters the button.
type C_ButtonEnterCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonEnter :: (IsButton a, MonadIO m) => a -> ButtonEnterCallback -> m SignalHandlerId Source #
Connect a signal handler for the “enter
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #enter callback
genClosure_ButtonEnter :: ButtonEnterCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonEnterCallback :: C_ButtonEnterCallback -> IO (FunPtr C_ButtonEnterCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonEnterCallback
.
noButtonEnterCallback :: Maybe ButtonEnterCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonEnterCallback
onButtonEnter :: (IsButton a, MonadIO m) => a -> ButtonEnterCallback -> m SignalHandlerId Source #
Connect a signal handler for the “enter
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #enter callback
wrap_ButtonEnterCallback :: ButtonEnterCallback -> C_ButtonEnterCallback Source #
Wrap a ButtonEnterCallback
into a C_ButtonEnterCallback
.
leave
type ButtonLeaveCallback = IO () Source #
Deprecated: (Since version 2.8)Use the Widget
::leave-notify-event
signal.
Emitted when the pointer leaves the button.
type C_ButtonLeaveCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonLeave :: (IsButton a, MonadIO m) => a -> ButtonLeaveCallback -> m SignalHandlerId Source #
Connect a signal handler for the “leave
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #leave callback
genClosure_ButtonLeave :: ButtonLeaveCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonLeaveCallback :: C_ButtonLeaveCallback -> IO (FunPtr C_ButtonLeaveCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonLeaveCallback
.
noButtonLeaveCallback :: Maybe ButtonLeaveCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonLeaveCallback
onButtonLeave :: (IsButton a, MonadIO m) => a -> ButtonLeaveCallback -> m SignalHandlerId Source #
Connect a signal handler for the “leave
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #leave callback
wrap_ButtonLeaveCallback :: ButtonLeaveCallback -> C_ButtonLeaveCallback Source #
Wrap a ButtonLeaveCallback
into a C_ButtonLeaveCallback
.
pressed
type ButtonPressedCallback = IO () Source #
Deprecated: (Since version 2.8)Use the Widget
::button-press-event
signal.
Emitted when the button is pressed.
type C_ButtonPressedCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonPressed :: (IsButton a, MonadIO m) => a -> ButtonPressedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “pressed
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #pressed callback
genClosure_ButtonPressed :: ButtonPressedCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonPressedCallback :: C_ButtonPressedCallback -> IO (FunPtr C_ButtonPressedCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonPressedCallback
.
noButtonPressedCallback :: Maybe ButtonPressedCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonPressedCallback
onButtonPressed :: (IsButton a, MonadIO m) => a -> ButtonPressedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “pressed
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #pressed callback
wrap_ButtonPressedCallback :: ButtonPressedCallback -> C_ButtonPressedCallback Source #
Wrap a ButtonPressedCallback
into a C_ButtonPressedCallback
.
released
type ButtonReleasedCallback = IO () Source #
Deprecated: (Since version 2.8)Use the Widget
::button-release-event
signal.
Emitted when the button is released.
type C_ButtonReleasedCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
afterButtonReleased :: (IsButton a, MonadIO m) => a -> ButtonReleasedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “released
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
button #released callback
genClosure_ButtonReleased :: ButtonReleasedCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_ButtonReleasedCallback :: C_ButtonReleasedCallback -> IO (FunPtr C_ButtonReleasedCallback) Source #
Generate a function pointer callable from C code, from a C_ButtonReleasedCallback
.
noButtonReleasedCallback :: Maybe ButtonReleasedCallback Source #
A convenience synonym for
.Nothing
:: Maybe
ButtonReleasedCallback
onButtonReleased :: (IsButton a, MonadIO m) => a -> ButtonReleasedCallback -> m SignalHandlerId Source #
Connect a signal handler for the “released
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
button #released callback