| Copyright | Will Thompson and Iñaki García Etxebarria |
|---|---|
| License | LGPL-2.1 |
| Maintainer | Iñaki García Etxebarria |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
GI.Gtk.Objects.RadioAction
Description
A RadioAction is similar to RadioMenuItem. A number of radio
actions can be linked together so that only one may be active at any
one time.
Synopsis
- newtype RadioAction = RadioAction (ManagedPtr RadioAction)
- class (GObject o, IsDescendantOf RadioAction o) => IsRadioAction o
- toRadioAction :: (MonadIO m, IsRadioAction o) => o -> m RadioAction
- radioActionGetCurrentValue :: (HasCallStack, MonadIO m, IsRadioAction a) => a -> m Int32
- radioActionGetGroup :: (HasCallStack, MonadIO m, IsRadioAction a) => a -> m [RadioAction]
- radioActionJoinGroup :: (HasCallStack, MonadIO m, IsRadioAction a, IsRadioAction b) => a -> Maybe b -> m ()
- radioActionNew :: (HasCallStack, MonadIO m) => Text -> Maybe Text -> Maybe Text -> Maybe Text -> Int32 -> m RadioAction
- radioActionSetCurrentValue :: (HasCallStack, MonadIO m, IsRadioAction a) => a -> Int32 -> m ()
- radioActionSetGroup :: (HasCallStack, MonadIO m, IsRadioAction a, IsRadioAction b) => a -> [b] -> m ()
- constructRadioActionCurrentValue :: (IsRadioAction o, MonadIO m) => Int32 -> m (GValueConstruct o)
- getRadioActionCurrentValue :: (MonadIO m, IsRadioAction o) => o -> m Int32
- setRadioActionCurrentValue :: (MonadIO m, IsRadioAction o) => o -> Int32 -> m ()
- clearRadioActionGroup :: (MonadIO m, IsRadioAction o) => o -> m ()
- constructRadioActionGroup :: (IsRadioAction o, MonadIO m, IsRadioAction a) => a -> m (GValueConstruct o)
- setRadioActionGroup :: (MonadIO m, IsRadioAction o, IsRadioAction a) => o -> a -> m ()
- constructRadioActionValue :: (IsRadioAction o, MonadIO m) => Int32 -> m (GValueConstruct o)
- getRadioActionValue :: (MonadIO m, IsRadioAction o) => o -> m Int32
- setRadioActionValue :: (MonadIO m, IsRadioAction o) => o -> Int32 -> m ()
- type RadioActionChangedCallback = RadioAction -> IO ()
- afterRadioActionChanged :: (IsRadioAction a, MonadIO m) => a -> ((?self :: a) => RadioActionChangedCallback) -> m SignalHandlerId
- onRadioActionChanged :: (IsRadioAction a, MonadIO m) => a -> ((?self :: a) => RadioActionChangedCallback) -> m SignalHandlerId
Exported types
newtype RadioAction Source #
Memory-managed wrapper type.
Constructors
| RadioAction (ManagedPtr RadioAction) |
Instances
| Eq RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
| GObject RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
| ManagedPtrNewtype RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction Methods toManagedPtr :: RadioAction -> ManagedPtr RadioAction | |
| TypedObject RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
| HasParentTypes RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
| IsGValue (Maybe RadioAction) Source # | Convert |
Defined in GI.Gtk.Objects.RadioAction Methods gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe RadioAction -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe RadioAction) | |
| type ParentTypes RadioAction Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
class (GObject o, IsDescendantOf RadioAction o) => IsRadioAction o Source #
Type class for types which can be safely cast to RadioAction, for instance with toRadioAction.
Instances
| (GObject o, IsDescendantOf RadioAction o) => IsRadioAction o Source # | |
Defined in GI.Gtk.Objects.RadioAction | |
toRadioAction :: (MonadIO m, IsRadioAction o) => o -> m RadioAction Source #
Cast to RadioAction, for types for which this is known to be safe. For general casts, use castTo.
Methods
Click to display all available methods, including inherited ones
Methods
activate, addChild, bindProperty, bindPropertyFull, blockActivate, connectAccelerator, constructChild, createIcon, createMenu, createMenuItem, createToolItem, customFinished, customTagEnd, customTagStart, disconnectAccelerator, forceFloating, freezeNotify, getv, isFloating, isSensitive, isVisible, joinGroup, notify, notifyByPspec, parserFinished, ref, refSink, runDispose, stealData, stealQdata, thawNotify, toggled, unblockActivate, unref, watchClosure.
Getters
getAccelClosure, getAccelPath, getActive, getAlwaysShowImage, getCurrentValue, getData, getDrawAsRadio, getGicon, getGroup, getIconName, getInternalChild, getIsImportant, getLabel, getName, getProperty, getProxies, getQdata, getSensitive, getShortLabel, getStockId, getTooltip, getVisible, getVisibleHorizontal, getVisibleVertical.
Setters
setAccelGroup, setAccelPath, setActive, setAlwaysShowImage, setBuildableProperty, setCurrentValue, setData, setDataFull, setDrawAsRadio, setGicon, setGroup, setIconName, setIsImportant, setLabel, setName, setProperty, setSensitive, setShortLabel, setStockId, setTooltip, setVisible, setVisibleHorizontal, setVisibleVertical.
getCurrentValue
radioActionGetCurrentValue Source #
Arguments
| :: (HasCallStack, MonadIO m, IsRadioAction a) | |
| => a |
|
| -> m Int32 | Returns: The value of the currently active group member |
Deprecated: (Since version 3.10)
Obtains the value property of the currently active member of
the group to which action belongs.
Since: 2.4
getGroup
Arguments
| :: (HasCallStack, MonadIO m, IsRadioAction a) | |
| => a |
|
| -> m [RadioAction] | Returns: the list representing the radio group for this object |
Deprecated: (Since version 3.10)
Returns the list representing the radio group for this object. Note that the returned list is only valid until the next change to the group.
A common way to set up a group of radio group is the following:
C code
GSList *group = NULL;
GtkRadioAction *action;
while ( ...more actions to add... /)
{
action = gtk_radio_action_new (...);
gtk_radio_action_set_group (action, group);
group = gtk_radio_action_get_group (action);
}Since: 2.4
joinGroup
Arguments
| :: (HasCallStack, MonadIO m, IsRadioAction a, IsRadioAction b) | |
| => a |
|
| -> Maybe b |
|
| -> m () |
Deprecated: (Since version 3.10)
Joins a radio action object to the group of another radio action object.
Use this in language bindings instead of the radioActionGetGroup
and radioActionSetGroup methods
A common way to set up a group of radio actions is the following:
C code
GtkRadioAction *action;
GtkRadioAction *last_action;
while ( ...more actions to add... /)
{
action = gtk_radio_action_new (...);
gtk_radio_action_join_group (action, last_action);
last_action = action;
}Since: 3.0
new
Arguments
| :: (HasCallStack, MonadIO m) | |
| => Text |
|
| -> Maybe Text |
|
| -> Maybe Text |
|
| -> Maybe Text |
|
| -> Int32 |
|
| -> m RadioAction | Returns: a new |
Deprecated: (Since version 3.10)
Creates a new RadioAction object. To add the action to
a ActionGroup and set the accelerator for the action,
call actionGroupAddActionWithAccel.
Since: 2.4
setCurrentValue
radioActionSetCurrentValue Source #
Arguments
| :: (HasCallStack, MonadIO m, IsRadioAction a) | |
| => a |
|
| -> Int32 |
|
| -> m () |
Deprecated: (Since version 3.10)
Sets the currently active group member to the member with value
property currentValue.
Since: 2.10
setGroup
Arguments
| :: (HasCallStack, MonadIO m, IsRadioAction a, IsRadioAction b) | |
| => a |
|
| -> [b] |
|
| -> m () |
Deprecated: (Since version 3.10)
Sets the radio group for the radio action object.
Since: 2.4
Properties
currentValue
The value property of the currently active member of the group to which this action belongs.
Since: 2.10
constructRadioActionCurrentValue :: (IsRadioAction o, MonadIO m) => Int32 -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “current-value” property. This is rarely needed directly, but it is used by new.
getRadioActionCurrentValue :: (MonadIO m, IsRadioAction o) => o -> m Int32 Source #
Get the value of the “current-value” property.
When overloading is enabled, this is equivalent to
get radioAction #currentValue
setRadioActionCurrentValue :: (MonadIO m, IsRadioAction o) => o -> Int32 -> m () Source #
Set the value of the “current-value” property.
When overloading is enabled, this is equivalent to
setradioAction [ #currentValue:=value ]
group
Sets a new group for a radio action.
Since: 2.4
clearRadioActionGroup :: (MonadIO m, IsRadioAction o) => o -> m () Source #
Set the value of the “group” property to Nothing.
When overloading is enabled, this is equivalent to
clear #group
constructRadioActionGroup :: (IsRadioAction o, MonadIO m, IsRadioAction a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “group” property. This is rarely needed directly, but it is used by new.
setRadioActionGroup :: (MonadIO m, IsRadioAction o, IsRadioAction a) => o -> a -> m () Source #
Set the value of the “group” property.
When overloading is enabled, this is equivalent to
setradioAction [ #group:=value ]
value
The value is an arbitrary integer which can be used as a
convenient way to determine which action in the group is
currently active in an activate or changed signal handler.
See radioActionGetCurrentValue and RadioActionEntry
for convenient ways to get and set this property.
Since: 2.4
constructRadioActionValue :: (IsRadioAction o, MonadIO m) => Int32 -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “value” property. This is rarely needed directly, but it is used by new.
getRadioActionValue :: (MonadIO m, IsRadioAction o) => o -> m Int32 Source #
Get the value of the “value” property.
When overloading is enabled, this is equivalent to
get radioAction #value
setRadioActionValue :: (MonadIO m, IsRadioAction o) => o -> Int32 -> m () Source #
Set the value of the “value” property.
When overloading is enabled, this is equivalent to
setradioAction [ #value:=value ]
Signals
changed
type RadioActionChangedCallback Source #
Arguments
| = RadioAction |
|
| -> IO () |
afterRadioActionChanged :: (IsRadioAction a, MonadIO m) => a -> ((?self :: a) => RadioActionChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the changed signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after radioAction #changed callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self parameter.
Note that this requires activating the ImplicitParams GHC extension.
onRadioActionChanged :: (IsRadioAction a, MonadIO m) => a -> ((?self :: a) => RadioActionChangedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the changed signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on radioAction #changed callback