Class that implements a user action.
Inherits :
Inherited By : assetiofilteraction_dz, createitemaction_dz, editaction_dz, paneaction_dz, saveassupportaction_dz, savefilteraction_dz, DzScriptAction and viewtoolaction_dz
DAZ Script | |
---|---|
void | hover () |
void | setChecked ( Boolean onOff ) |
void | setDisabled ( Boolean onOff ) |
void | setEnabled ( Boolean onOff ) |
void | setOff ( Boolean onOff ) |
void | setVisible ( Boolean onOff ) |
void | toggle () |
void | trigger () |
void | triggerWithSettings ( Object settings ) |
This class represents an action that the user can perform in the interface via pressing a hot key or clicking on a menu/toolbar item.
All action items are added to a list of interface actions which the user can customize. The user can specify their own keyboard shortcut or 'Hot Key' for the action, and any action item can be moved into a custom toolbar, as well as appear in the DAZ Studio main menu.
See Also:
Holds the action group that this action belongs to (Read Only)
Holds whether or not this action will auto repeat when the keyboard shortcut combination is held down.
Holds whether or not this action is checkable (has an on/off state).
Holds whether or not this action is checked (on) - checkable must be true
.
Holds the primary menu that this action is added to by default, if the user has not chosen a custom location (Read Only)
Holds the menus that this action is added to by default, if the user has not chosen a custom location (Read Only).
Since:
Holds the default keyboard shortcut (hotkey) that is associated with this action (Read Only before 4.6.4.48)
Holds the primary toolBar that this action is added to by default, if the user has not chosen a custom location (Read Only)
Holds the toolBars that this action is added to by default, if the user has not chosen a custom location (Read Only).
Since:
Holds the user-readable description of the action.
Holds whether or not this action is enabled. Disabled actions cannot be triggered by the user via the UI.
Emitted when an action is enabled or disabled. onOff
is true
if the action was enabled, false
if it was disabled.
Holds the image file that is used as the icon for this action (if any).
Holds the descriptive icon text for this action.
Holds whether or not this action should show an icon in a menu.
Holds the primary shortcut key sequence for this action.
Holds the status bar text for this action.
Holds the standard pixmap that is used as the icon for this action (if any).
Since:
Holds the label for this action.
Holds the popup tool tip text for this action.
Holds the settings used when triggerWithSettings() is called - will be empty if trigger() is called. (Read Only)
Since:
Holds whether or not this action can be seen in the UI (e.g., in menus and toolbars).
Holds the brief description text for this action.
void : hover()
Activates the action in the 'Hover' state programatically.
See Also:
void : setChecked( Boolean onOff )
Sets the action's toggle state.
Parameter(s):
true
, the action's toggle state is set on, otherwise, its toggle state is set off.See Also:
void : setDisabled( Boolean onOff )
Disables/Enables the action in the interface.
Parameter(s):
true
, the action will be 'grayed out' in menus, and the user will be unable to activate it. If false
, the action will be enabled.See Also:
void : setEnabled( Boolean onOff )
Enables/Disables the action in the interface.
Parameter(s):
true
, the action will be displayed normally in menus, and the user will be able to activate it. If false
, the action will be disabled.See Also:
void : setOff( Boolean onOff )
The same as calling setChecked( !onOff ). This method is provided for convenience when connecting this slot to a signal that emits a value that is the inverse of the desired onOff state.
Parameter(s):
true
, the action's toggle state is set off, otherwise, its toggle state is set on.See Also:
void : setVisible( Boolean onOff )
Sets whether the action is visible in the interface.
Parameter(s):
true
, the action will be displayed in menus and toolbars that it has been added to. If false
, the action will not be displayed in any menus or toolbars.void : toggle()
Toggles the action programatically.
See Also:
void : trigger()
Activates the action programatically.
See Also:
void : triggerWithSettings( Object settings )
Triggers this action with the settings provided.
Parameter(s):
Attention:
settings
are used.See Also:
Since:
void : changed()
Signature:“changed()”
Emitted when an action has changed.
void : enabled( Boolean onOff )
TODO: Add description.
void : hovered()
Signature:“hovered()”
Emitted when an action is highlighted by the user; for example, when the user pauses with the cursor over a menu option, toolbar button, or presses an action's shortcut key combination.
void : preExecute()
Signature:“preExecute()”
Emitted immediately before executeAction() is called.
Since:
void : toggled( Boolean checked )
Signature:“toggled(bool)”
Emitted when a toggle action changes state. checked
is the new action state, true
for on, false
for off.
void : triggered( Boolean checked )
Signature:“triggered(bool)”
Emitted when an action is activated by the user; for example, when the user clicks a menu option, toolbar button, or presses an action's shortcut key combination, or when trigger() was called. Notably, it is not emitted when setChecked() or toggle() is called. checked
is true if the action is checked, or false if the action is unchecked.