1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

VisualBuilder: Add icons to the toolbox, and support for GProgressBar.

This commit is contained in:
Andreas Kling 2019-04-11 06:08:06 +02:00
parent 75c76f6692
commit b5d1cfef58
9 changed files with 40 additions and 16 deletions

View file

@ -15,7 +15,7 @@ public:
String caption() const { return m_caption; }
void set_caption(const String& caption) { m_caption = caption; }
enum Format { Percentage, ValueSlashMax };
enum Format { NoText, Percentage, ValueSlashMax };
Format format() const { return m_format; }
void set_format(Format format) { m_format = format; }