LibGUI+VisualBuilder: Support custom editing widgets for property values.

Implemented this by letting GAbstractViews provide a GModelEditingDelegate
for a given index, which then knows how to create and setup a custom widget
appropriate for the data type being edited.
This commit is contained in:
Andreas Kling 2019-06-23 08:18:28 +02:00
commit 6a0011dcea
Notes: sideshowbarker 2024-07-19 13:30:22 +09:00
8 changed files with 170 additions and 7 deletions

View file

@ -10,6 +10,7 @@ public:
enum Column {
Name = 0,
Value,
Type,
__Count
};