17 #include <core/properties.h> 20 #include <QStyledItemDelegate> 21 #include <QTreeWidget> 22 #include <QTreeWidgetItem> 25 #include <unordered_map> 31 class BoundPropertyItem;
32 class PropertiesWidget;
45 virtual bool isModified()
const;
48 virtual void valueChanged();
76 template <
class T,
class... EXTRA>
77 void setValue(
const T& value, EXTRA&&... extra) {
78 setText(1, QString(
"%1").arg(value, std::forward<EXTRA>(extra)...));
97 bool isModified()
const override;
99 void valueChanged()
override;
104 void updateChildProperties();
108 string original_value_;
109 unordered_map<core::Property*, BoundPropertyItem*> child_properties_;
112 class PropertyItemDelegate :
public QStyledItemDelegate {
116 using QStyledItemDelegate::QStyledItemDelegate;
119 void onComboBoxUpdate(
int);
122 QWidget* createEditor(QWidget* parent,
123 const QStyleOptionViewItem& option,
124 const QModelIndex& index)
const override;
126 void setModelData(QWidget* editor,
127 QAbstractItemModel* model,
128 const QModelIndex& index)
const override;
135 friend PropertyItemDelegate;
149 void autoSizeColumns();
152 bool isModified()
const;
A basic, manually-updated property item.
Definition: properties_widget.h:70
void setValue(const string &value)
Updates the value.
Definition: properties_widget.h:82
A property item which is bound to a core::Property.
Definition: properties_widget.h:89
Grouping section for a set of related sub-items.
Definition: properties_widget.h:55
core::Property * property() const
The corresponding core::Property.
Definition: properties_widget.h:94
Base class for all the items in a PropertiesWidget.
Definition: properties_widget.h:35
Reusable components for building UIs.
Definition: canvas.cpp:21
Reflection interface to a property in a PropertySet.
Definition: properties.h:41
The foundation for data structures supporting runtime reflection.
Definition: properties.h:388
void setValue(const T &value, EXTRA &&... extra)
Sets the value to a formatted string.
Definition: properties_widget.h:77