VisualBuilder: Add some widget-specific properties.

This commit is contained in:
Andreas Kling 2019-04-12 15:17:53 +02:00
commit c98bbff0cb
Notes: sideshowbarker 2024-07-19 14:44:17 +09:00
5 changed files with 66 additions and 25 deletions

View file

@ -11,6 +11,8 @@ public:
void set_value(int);
int value() const { return m_value; }
int min() const { return m_min; }
int max() const { return m_max; }
String caption() const { return m_caption; }
void set_caption(const String& caption) { m_caption = caption; }