mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
LibGUI: Register a whole bunch of properties in various widgets
This commit is contained in:
committed by
Andreas Kling
parent
20b74e4ede
commit
90aeacbb58
@@ -35,6 +35,12 @@ namespace GUI {
|
||||
ProgressBar::ProgressBar()
|
||||
{
|
||||
REGISTER_STRING_PROPERTY("text", text, set_text);
|
||||
REGISTER_ENUM_PROPERTY("format", format, set_format, Format,
|
||||
{ Format::NoText, "NoText" },
|
||||
{ Format::Percentage, "Percentage" },
|
||||
{ Format::ValueSlashMax, "ValueSlashMax" });
|
||||
REGISTER_INT_PROPERTY("min", min, set_min);
|
||||
REGISTER_INT_PROPERTY("max", max, set_max);
|
||||
}
|
||||
|
||||
ProgressBar::~ProgressBar()
|
||||
|
||||
Reference in New Issue
Block a user