![]() |
NDEVR
API Documentation
|
Editor widget for configuring the detail items of a build action such as failure behavior and conditional execution criteria. More...
Public Member Functions | |
| BuildActionItemsWidget (const DynamicPointer< QTDesignObject > &object, QWidget *parent=nullptr) | |
| Constructs the widget and sets the given design object as the target. | |
| BuildActionItemsWidget (QWidget *parent=nullptr) | |
| Constructs the widget with no initial target. | |
| BuildActionDefinition | definition () const |
| Returns the BuildActionDefinition derived from the current target. | |
| void | setTarget (const DynamicPointer< QTDesignObject > &object) override |
| Sets the target design object for this editor. | |
| void | updateValues () override |
| Refreshes all UI fields from the current target data. | |
| Public Member Functions inherited from Editor | |
| Editor (const DynamicPointer< QTDesignObject > &object, QWidget *parent=nullptr) | |
| Constructs an Editor targeting the given design object. | |
| Editor (QWidget *parent=nullptr) | |
| Constructs an Editor with no design object target. | |
| virtual Buffer< QWidget * > | bottomOptions () |
| Returns widgets to be placed at the bottom of the editor layout. | |
| virtual StringView | customDialogIcon () const |
| Returns a custom icon name for the editor dialog, or an empty string if none. | |
| virtual TranslatedString | customDialogTitle () const |
| Returns a custom title for the editor dialog, or an empty string if none. | |
| virtual bool | disableExport () const |
| Returns whether exporting should be disabled for this editor. | |
| Model | getModel () const |
| Returns the target design object as a Model. | |
| DesignObject | getObject () const |
| Returns the target design object. | |
| virtual bool | isBusy () const |
| Returns whether the editor is currently busy performing an operation. | |
| void | isBusyStatusChanged () |
| Emitted when the busy status of the editor changes. | |
| virtual bool | isHorizontal () const |
| Returns whether the editor layout is horizontal. | |
| virtual void | moveTargetWithMouse () |
| Initiates interactive mouse-based movement of the target object in the viewport. | |
| void | objectUpdatedSignal () |
| Emitted when the target object has been updated. | |
| virtual InterfaceOrientationController * | orientationController () const |
| Returns the orientation controller associated with this editor. | |
| virtual Buffer< QWidget * > | printableWidgetOptions () |
| Returns option widgets to configure printing for this editor. | |
| virtual Buffer< QWidget * > | printableWidgets () |
| Returns the widgets that can be printed from this editor. | |
| virtual void | requestScrollEnabled (bool enabled) |
| Requests enabling or disabling scrolling within the editor. | |
| virtual void | setHorizontal (bool horizontal) |
| Sets whether the editor layout is horizontal. | |
| virtual void | setReadOnly (bool read_only) |
| Sets whether the editor is in read-only mode. | |
| virtual void | setup (DesignObjectDialog *, const ShowPropertiesSettings &) |
| Sets up the editor with a parent dialog and property display settings. | |
| virtual EditorShowMode | showMode () const |
| Returns the preferred display mode for this editor. | |
| const DynamicPointer< QTDesignObject > & | target () const |
| Returns the current design object target. | |
Protected Attributes | |
| Ui::BuildActionItemsUI * | ui |
| The auto-generated UI form. | |
| Protected Attributes inherited from Editor | |
| DynamicPointer< QTDesignObject > | m_design_object |
| The design object being edited. | |
| bool | m_is_read_only = false |
| Whether the editor is in read-only mode. | |
| InterfaceOrientationController * | m_orientation_controller |
| The orientation controller for this editor. | |
Additional Inherited Members | |
| Protected Member Functions inherited from Editor | |
| void | onDesignObjectDeletedSlot () |
| Slot called when the target design object is deleted. | |
| void | onDesignObjectUpdateSlot () |
| Slot called when the target design object is updated. | |
Editor widget for configuring the detail items of a build action such as failure behavior and conditional execution criteria.
Definition at line 14 of file BuildActionItemsWidget.h.
| BuildActionItemsWidget::BuildActionItemsWidget | ( | QWidget * | parent = nullptr | ) |
Constructs the widget with no initial target.
| [in] | parent | Optional parent widget. |
| BuildActionItemsWidget::BuildActionItemsWidget | ( | const DynamicPointer< QTDesignObject > & | object, |
| QWidget * | parent = nullptr ) |
Constructs the widget and sets the given design object as the target.
| [in] | object | The design object to edit. |
| [in] | parent | Optional parent widget. |
| BuildActionDefinition BuildActionItemsWidget::definition | ( | ) | const |
Returns the BuildActionDefinition derived from the current target.
|
overridevirtual |
Sets the target design object for this editor.
| [in] | object | The design object to edit. |
Reimplemented from Editor.