Darwin Neuroevolution Framework
properties_widget.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/properties.h>
18 
19 #include <QString>
20 #include <QStyledItemDelegate>
21 #include <QTreeWidget>
22 #include <QTreeWidgetItem>
23 
24 #include <string>
25 #include <unordered_map>
26 using namespace std;
27 
28 namespace core_ui {
29 
30 class PropertyItem;
31 class BoundPropertyItem;
32 class PropertiesWidget;
33 
35 class PropertyItemBase : public QTreeWidgetItem {
36  public:
38  PropertiesWidget* parentWidget() const;
39 
41  PropertyItemBase* parent() const;
42 
45  virtual bool isModified() const;
46 
48  virtual void valueChanged();
49 
50  protected:
51  explicit PropertyItemBase(PropertyItemBase* parent) : QTreeWidgetItem(parent) {}
52 };
53 
56  friend class PropertiesWidget;
57 
58  public:
60  PropertyItem* addProperty(const string& name);
61 
63  BoundPropertyItem* addProperty(core::Property* property);
64 
65  private:
66  explicit PropertiesSectionItem(const string& name);
67 };
68 
71  friend class PropertiesSectionItem;
72 
73  public:
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)...));
79  }
80 
82  void setValue(const string& value) { setValue(QString::fromStdString(value)); }
83 
84  private:
85  PropertyItem(PropertyItemBase* section, const string& name);
86 };
87 
90  friend class PropertiesSectionItem;
91 
92  public:
94  core::Property* property() const { return property_; }
95 
97  bool isModified() const override;
98 
99  void valueChanged() override;
100 
101  private:
103 
104  void updateChildProperties();
105 
106  private:
107  core::Property* property_ = nullptr;
108  string original_value_;
109  unordered_map<core::Property*, BoundPropertyItem*> child_properties_;
110 };
111 
112 class PropertyItemDelegate : public QStyledItemDelegate {
113  Q_OBJECT
114 
115  public:
116  using QStyledItemDelegate::QStyledItemDelegate;
117 
118  private slots:
119  void onComboBoxUpdate(int);
120 
121  private:
122  QWidget* createEditor(QWidget* parent,
123  const QStyleOptionViewItem& option,
124  const QModelIndex& index) const override;
125 
126  void setModelData(QWidget* editor,
127  QAbstractItemModel* model,
128  const QModelIndex& index) const override;
129 };
130 
132 class PropertiesWidget : public QTreeWidget {
133  Q_OBJECT
134 
135  friend PropertyItemDelegate;
136 
137  public:
139  explicit PropertiesWidget(QWidget* parent);
140 
142  PropertiesSectionItem* addSection(const string& name);
143 
145  PropertiesSectionItem* addPropertiesSection(const string& name,
146  core::PropertySet* property_set);
147 
149  void autoSizeColumns();
150 
152  bool isModified() const;
153 
154  private:
155  BoundPropertyItem* boundItemFromIndex(const QModelIndex& index) const;
156 };
157 
158 } // namespace core_ui
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 visualizer/editor for a set of properties, grouped into collapsible sections.
Definition: properties_widget.h:132
A property item which is bound to a core::Property.
Definition: properties_widget.h:89
STL namespace.
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