unreal.CommonButtonBase
¶
- class unreal.CommonButtonBase(outer=None, name='None')¶
Bases:
unreal.CommonUserWidget
Common Button Base
C++ Source:
Plugin: CommonUI
Module: CommonUI
File: CommonButtonBase.h
Editor Properties: (see get_editor_property/set_editor_property)
accessible_behavior
(SlateAccessibleBehavior): [Read-Write] Whether or not the widget is accessible, and how to describe it. If set to custom, additional customization options will appear.accessible_summary_behavior
(SlateAccessibleBehavior): [Read-Write] How to describe this widget when it’s being presented through a summary of a parent widget. If set to custom, additional customization options will appear.accessible_summary_text
(Text): [Read-Write] When AccessibleSummaryBehavior is set to Custom, this is the text that will be used to describe the widget.accessible_text
(Text): [Read-Write] When AccessibleBehavior is set to Custom, this is the text that will be used to describe the widget.apply_alpha_on_disable
(bool): [Read-Write] The type of mouse action required by the user to trigger the button’s ‘Click’can_children_be_accessible
(bool): [Read-Write] Whether or not children of this widget can appear as distinct accessible widgets.click_method
(ButtonClickMethod): [Read-Write] The type of mouse action required by the user to trigger the button’s ‘Click’clipping
(WidgetClipping): [Read-Write] Controls how the clipping behavior of this widget. Normally content that overflows the bounds of the widget continues rendering. Enabling clipping prevents that overflowing content from being seen.NOTE: Elements in different clipping spaces can not be batched together, and so there is a performance cost to clipping. Do not enable clipping unless a panel actually needs to prevent content from showing up outside its bounds.
color_and_opacity
(LinearColor): [Read-Write] The color and opacity of this widget. Tints all child widgets.consume_pointer_input
(bool): [Read-Write] Set this to true if you don’t want any pointer (mouse and touch) input to bubble past this widgetcursor
(MouseCursor): [Read-Write] The cursor to show when the mouse is over the widgetdisplay_input_action_when_not_interactable
(bool): [Read-Write] True if the input action should be displayed when the button is not interactableflow_direction_preference
(FlowDirectionPreference): [Read-Write] Allows you to set a new flow directionforeground_color
(SlateColor): [Read-Write] The foreground color of the widget, this is inherited by sub widgets. Any color property that is marked as inherit will use this color.hide_input_action
(bool): [Read-Write] Whether to hide the input action widget at all times (useful for textless small buttons)hide_input_action_with_keyboard
(bool): [Read-Write] True if the input action should be hidden while the user is using a keyboardhovered_slate_sound_override
(SlateSound): [Read-Write] Optional override for the sound to play when this button is hoveredinput_action_widget
(CommonActionWidget): [Read-Write] Optionally bound widget for visualization behavior of an input action; NOTE: If specified, will visualize according to the following algorithm: If TriggeringInputAction is specified, visualize it else: If TriggeredInputAction is specified, visualize it else: Visualize the default click action while hoveredinput_mode_override
(CommonInputMode): [Read-Write] Set this to Game for special cases where an input action needs to be set for an in-game button.input_priority
(int32): [Read-Write] This is the priority for the TriggeringInputAction. The first, HIGHEST PRIORITY widget will handle the input action, and no other widgets will be considered. Additionally, no inputs with a priority below the current ActivatablePanel’s Input Priority value will even be considered!interactable_when_selected
(bool): [Read-Write] If true, the button may be clicked while selected. Otherwise, interaction is disabled in the selected state.is_enabled
(bool): [Read-Write] Sets whether this widget can be modified interactively by the useris_focusable
(bool): [Read-Write] Setting this flag to true, allows this widget to accept focus when clicked, or when navigated to.is_persistent_binding
(bool): [Read-Write] DANGER! Be very, very careful with this. Unless you absolutely know what you’re doing, this is not the property you’re looking for.True to register the action bound to this button as a “persistent” binding. False (default) will register a standard activation-based binding. A persistent binding ignores the standard ruleset for UI input routing - the binding will be live immediately upon construction of the button.
is_volatile
(bool): [Read-Write] If true prevents the widget or its child’s geometry or layout information from being cached. If this widget changes every frame, but you want it to still be in an invalidation panel you should make it as volatile instead of invalidating it every frame, which would prevent the invalidation panel from actually ever caching anything.min_height
(int32): [Read-Write] The minimum height of the button (only used if greater than the style’s minimum)min_width
(int32): [Read-Write] The minimum width of the button (only used if greater than the style’s minimum)navigation
(WidgetNavigation): [Read-Write] The navigation object for this widget is optionally created if the user has configured custom navigation rules for this widget in the widget designer. Those rules determine how navigation transitions can occur between widgets.on_button_base_clicked
(CommonButtonBaseClicked): [Read-Write] On Button Base Clickedon_button_base_double_clicked
(CommonButtonBaseClicked): [Read-Write] On Button Base Double Clickedon_button_base_hovered
(CommonButtonBaseClicked): [Read-Write] On Button Base Hoveredon_button_base_unhovered
(CommonButtonBaseClicked): [Read-Write] On Button Base Unhoveredon_selected_changed_base
(CommonSelectedStateChangedBase): [Read-Write] On Selected Changed Baseon_visibility_changed
(OnVisibilityChangedEvent): [Read-Write] Called when the visibility has changedoverride_accessible_defaults
(bool): [Read-Write] Override all of the default accessibility behavior and text for this widget.override_cursor
(bool): [Read-Write] Override Cursorpadding
(Margin): [Read-Write] The padding area around the content.press_method
(ButtonPressMethod): [Read-Write] Press Methodpressed_slate_sound_override
(SlateSound): [Read-Write] Optional override for the sound to play when this button is pressedpreview_background
(Texture2D): [Read-Write] A preview background that you can use when designing the UI to get a sense of scale on the screen. Use a texture with a screenshot of your game in it, for example if you were designing a HUD.priority
(int32): [Read-Write] Priorityrender_opacity
(float): [Read-Write] The opacity of the widgetrender_transform
(WidgetTransform): [Read-Write] The render transform of the widget allows for arbitrary 2D transforms to be applied to the widget.render_transform_pivot
(Vector2D): [Read-Write] The render transform pivot controls the location about which transforms are applied. This value is a normalized coordinate about which things like rotations will occur.selectable
(bool): [Read-Write] True if the button supports being in a “selected” state, which will update the style accordinglyshould_select_upon_receiving_focus
(bool): [Read-Write] If true, the button will be selected when it receives focus.should_use_fallback_default_input_action
(bool): [Read-Write] True if this button should use the default fallback input action (bool is useful for buttons that shouldn’t because they are never directly hit via controller)slot
(PanelSlot): [Read-Write] The parent slot of the UWidget. Allows us to easily inline edit the layout controlling this widget.stop_action
(bool): [Read-Write] Stop Actionstyle
(type(Class)): [Read-Write] References the button style asset that defines a style in multiple sizestick_frequency
(WidgetTickFrequency): [Read-Write] This widget is allowed to tick. If this is unchecked tick will never be called, animations will not play correctly, and latent actions will not execute. Uncheck this for performance reasons onlytoggleable
(bool): [Read-Write] True if the button can be deselected by clicking it when selectedtool_tip_text
(Text): [Read-Write] Tooltip text to show when the user hovers over the widget with the mousetool_tip_widget
(Widget): [Read-Only] Tooltip widget to show when the user hovers over the widget with the mousetouch_method
(ButtonTouchMethod): [Read-Write] Touch Methodtriggering_input_action
(DataTableRowHandle): [Read-Write] The input action that is bound to this button. The common input manager will trigger this button to click if the action was pressedvisibility
(SlateVisibility): [Read-Write] The visibility of the widget
- property apply_alpha_on_disable¶
[Read-Only] The type of mouse action required by the user to trigger the button’s ‘Click’
- Type
(bool)
- property click_method¶
[Read-Only] The type of mouse action required by the user to trigger the button’s ‘Click’
- Type
- disable_button_with_reason(disabled_reason) → None¶
Disables this button with a reason (use instead of SetIsEnabled)
- Parameters
disabled_reason (Text) –
- property display_input_action_when_not_interactable¶
[Read-Only] True if the input action should be displayed when the button is not interactable
- Type
(bool)
- get_current_text_style() → CommonTextStyle¶
- Returns
The text style that corresponds to the current size and selection state
- Return type
- get_current_text_style_class()¶
- get_input_action() → DataTableRowHandle or None¶
Gets the appropriate input action that is set
- Returns
input_action_row (DataTableRowHandle):
- Return type
- get_selected() → bool¶
- Returns
True if the button is currently in a selected state, False otherwise
- Return type
- get_should_select_upon_receiving_focus() → bool¶
Get whether the button should become selected upon receiving focus or not
- Returns
- Return type
- get_single_material_style_mid() → MaterialInstanceDynamic¶
Returns the dynamic instance of the material being used for this button, if it is using a single material style.
- Returns
- Return type
- get_style() → CommonButtonStyle¶
- Returns
Current button style
- Return type
- property hide_input_action¶
[Read-Only] Whether to hide the input action widget at all times (useful for textless small buttons)
- Type
(bool)
- property hide_input_action_with_keyboard¶
[Read-Only] True if the input action should be hidden while the user is using a keyboard
- Type
(bool)
- property hovered_slate_sound_override¶
[Read-Only] Optional override for the sound to play when this button is hovered
- Type
- property input_action_widget¶
[Read-Only] Optionally bound widget for visualization behavior of an input action; NOTE: If specified, will visualize according to the following algorithm: If TriggeringInputAction is specified, visualize it else: If TriggeredInputAction is specified, visualize it else: Visualize the default click action while hovered
- Type
- property input_priority¶
[Read-Only] This is the priority for the TriggeringInputAction. The first, HIGHEST PRIORITY widget will handle the input action, and no other widgets will be considered. Additionally, no inputs with a priority below the current ActivatablePanel’s Input Priority value will even be considered!
- Type
(int32)
- property interactable_when_selected¶
[Read-Only] If true, the button may be clicked while selected. Otherwise, interaction is disabled in the selected state.
- Type
(bool)
- is_interaction_enabled() → bool¶
Is this button currently interactable? (use instead of GetIsEnabled)
- Returns
- Return type
- property min_height¶
[Read-Only] The minimum height of the button (only used if greater than the style’s minimum)
- Type
(int32)
- property min_width¶
[Read-Only] The minimum width of the button (only used if greater than the style’s minimum)
- Type
(int32)
- property on_button_base_clicked¶
[Read-Write] On Button Base Clicked
- Type
- property on_button_base_double_clicked¶
[Read-Write] On Button Base Double Clicked
- Type
- property on_button_base_hovered¶
[Read-Write] On Button Base Hovered
- Type
- property on_button_base_unhovered¶
[Read-Write] On Button Base Unhovered
- Type
- on_current_text_style_changed() → None¶
Allows derived classes to take action when the current text style has changed
- property on_selected_changed_base¶
[Read-Write] On Selected Changed Base
- on_triggered_input_action_changed(new_triggered_action) → None¶
On Triggered Input Action Changed
- Parameters
new_triggered_action (DataTableRowHandle) –
- property press_method¶
[Read-Only] Press Method
- Type
- property pressed_slate_sound_override¶
[Read-Only] Optional override for the sound to play when this button is pressed
- Type
- property selectable¶
[Read-Only] True if the button supports being in a “selected” state, which will update the style accordingly
- Type
(bool)
- set_click_method(click_method) → None¶
Set the click method for mouse interaction
- Parameters
click_method (ButtonClickMethod) –
- set_input_action_progress_material(progress_material_brush, progress_material_param) → None¶
Set Input Action Progress Material
- Parameters
progress_material_brush (SlateBrush) –
progress_material_param (Name) –
- set_is_focusable(is_focusable) → None¶
Updates the bIsFocusable flag
- Parameters
is_focusable (bool) –
- set_is_interactable_when_selected(interactable_when_selected) → None¶
Change whether this widget is selectable at all. If false and currently selected, will deselect.
- Parameters
interactable_when_selected (bool) –
- set_is_interaction_enabled(is_interaction_enabled) → None¶
Change whether this widget is selectable at all. If false and currently selected, will deselect.
- Parameters
is_interaction_enabled (bool) –
- set_is_selectable(is_selectable) → None¶
Change whether this widget is selectable at all. If false and currently selected, will deselect.
- Parameters
is_selectable (bool) –
- set_is_toggleable(is_toggleable) → None¶
Change whether this widget is toggleable. If toggleable, clicking when selected will deselect.
- Parameters
is_toggleable (bool) –
- set_min_dimensions(min_width, min_height) → None¶
Sets the minimum dimensions of this button
- Parameters
min_width (int32) –
min_height (int32) –
- set_press_method(press_method) → None¶
Set the click method for keyboard/gamepad button press interaction
- Parameters
press_method (ButtonPressMethod) –
- set_selected_internal(selected, allow_sound=True, broadcast=True) → None¶
Internal method to allow the selected state to be set regardless of selectability or toggleability
- set_should_select_upon_receiving_focus(should_select_upon_receiving_focus) → None¶
Set whether the button should become selected upon receiving focus or not; Only settable for buttons that are selectable
- Parameters
should_select_upon_receiving_focus (bool) –
- set_should_use_fallback_default_input_action(should_use_fallback_default_input_action) → None¶
Change whether this widget should use the fallback default input action.
- Parameters
should_use_fallback_default_input_action (bool) –
- set_touch_method(touch_method) → None¶
Set the click method for touch interaction
- Parameters
touch_method (ButtonTouchMethod) –
- set_triggered_input_action(input_action_row) → None¶
Updates the current triggered action
- Parameters
input_action_row (DataTableRowHandle) –
- set_triggering_input_action(input_action_row) → None¶
Updates the current triggering action
- Parameters
input_action_row (DataTableRowHandle) –
- property should_select_upon_receiving_focus¶
[Read-Only] If true, the button will be selected when it receives focus.
- Type
(bool)
- property should_use_fallback_default_input_action¶
[Read-Only] True if this button should use the default fallback input action (bool is useful for buttons that shouldn’t because they are never directly hit via controller)
- Type
(bool)
- stop_double_click_propagation() → None¶
Unless this is called, we will assume the double click should be converted into a normal click.
- property style¶
[Read-Only] References the button style asset that defines a style in multiple sizes
- property toggleable¶
[Read-Only] True if the button can be deselected by clicking it when selected
- Type
(bool)
- property touch_method¶
[Read-Only] Touch Method
- Type
- property triggering_input_action¶
[Read-Only] The input action that is bound to this button. The common input manager will trigger this button to click if the action was pressed
- Type