|
| ezQtPropertyContainerWidget () |
| *** ezQtPropertyContainerWidget ***
|
|
virtual void | SetSelection (const ezHybridArray< ezPropertySelection, 8 > &items) override |
| This is called whenever the selection in the editor changes and thus the widget may need to display a different value.
|
|
virtual bool | HasLabel () const override |
| If this returns true (default), a QLabel is created and the text that GetLabel() returns is displayed.
|
|
virtual void | SetIsDefault (bool bIsDefault) override |
| Whether the variable that the widget represents is currently set to the default value or has been modified.
|
|
| ezQtPropertyWidget () |
| *** BASE ***
|
|
void | Init (ezQtPropertyGridWidget *pGrid, ezObjectAccessorBase *pObjectAccessor, const ezRTTI *pType, const ezAbstractProperty *pProp) |
|
ezQtPropertyGridWidget * | GetPropertyGrid () |
|
ezObjectAccessorBase * | GetObjectAccessor () |
|
const ezRTTI * | GetType () const |
|
const ezAbstractProperty * | GetProperty () const |
|
const ezHybridArray< ezPropertySelection, 8 > & | GetSelection () const |
|
virtual const char * | GetLabel (ezStringBuilder &ref_sTmp) const |
| The return value is used to display a label, if HasLabel() returns true.
|
|
virtual void | ExtendContextMenu (QMenu &ref_menu) |
|
bool | GetCommonVariantSubType (const ezHybridArray< ezPropertySelection, 8 > &items, const ezAbstractProperty *pProperty, ezVariantType::Enum &out_type) |
| If the property is of type ezVariant this function returns whether all items have the same type. If true is returned, out_Type contains the common type. Note that 'invalid' can be a common type.
|
|
ezVariant | GetCommonValue (const ezHybridArray< ezPropertySelection, 8 > &items, const ezAbstractProperty *pProperty) |
|
void | PrepareToDie () |
|
virtual void | SetReadOnly (bool bReadOnly=true) |
| By default disables the widget, but can be overridden to make a widget more interactable (for example to be able to copy text from it).
|
|
|
virtual ezQtGroupBoxBase * | CreateElement (QWidget *pParent) |
|
virtual ezQtPropertyWidget * | CreateWidget (ezUInt32 index) |
|
virtual Element & | AddElement (ezUInt32 index) |
|
virtual void | RemoveElement (ezUInt32 index) |
|
virtual void | UpdateElement (ezUInt32 index)=0 |
|
void | UpdateElements () |
|
virtual void | GetRequiredElements (ezDynamicArray< ezVariant > &out_keys) const |
|
virtual void | UpdatePropertyMetaState () |
|
virtual ezPropertyCategory::Enum | GetContainerCategory () const |
| Some containers like ezVariant can be both a map or an array so we can't reply on the property type alone. For these containers, this method can be overwritten to retrieve the category from something other than m_pProp->GetCategory() .
|
|
void | Clear () |
|
virtual void | OnInit () override |
|
void | DeleteItems (ezHybridArray< ezPropertySelection, 8 > &items) |
|
void | MoveItems (ezHybridArray< ezPropertySelection, 8 > &items, ezInt32 iMove) |
|
virtual void | DoPrepareToDie () override |
|
virtual void | dragEnterEvent (QDragEnterEvent *event) override |
|
virtual void | dragMoveEvent (QDragMoveEvent *event) override |
|
virtual void | dragLeaveEvent (QDragLeaveEvent *event) override |
|
virtual void | dropEvent (QDropEvent *event) override |
|
virtual void | paintEvent (QPaintEvent *event) override |
|
virtual void | showEvent (QShowEvent *event) override |
|
void | Broadcast (ezPropertyEvent::Type type) |
|
void | PropertyChangedHandler (const ezPropertyEvent &ed) |
|
bool | IsUndead () const |
|
virtual bool | eventFilter (QObject *pWatched, QEvent *pEvent) override |
|
Base class for all container properties.
This is called whenever the selection in the editor changes and thus the widget may need to display a different value.
If the array holds more than one element, the user selected multiple objects. In this case, the code should check whether the values differ across the selected objects and if so, the widget should display "multiple values".
Reimplemented from ezQtPropertyWidget.
Reimplemented in ezQtExposedParametersPropertyWidget, and ezQtVariantContainerWidget.