diff options
Diffstat (limited to 'src/theme_builder/components/conditions/CompoundConditonEditor.cpp')
-rw-r--r-- | src/theme_builder/components/conditions/CompoundConditonEditor.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/theme_builder/components/conditions/CompoundConditonEditor.cpp b/src/theme_builder/components/conditions/CompoundConditonEditor.cpp new file mode 100644 index 00000000..d3e82878 --- /dev/null +++ b/src/theme_builder/components/conditions/CompoundConditonEditor.cpp @@ -0,0 +1,14 @@ +#include "CompoundConditionEditor.h" + +namespace cru::theme_builder::components::conditions { +CompoundConditionEditor::CompoundConditionEditor() { + GetContainer()->AddChild(&children_container_); + GetContainer()->AddChild(&add_child_button_); + + add_child_button_.SetChild(&add_child_button_text_); + add_child_button_text_.SetText(u"Add"); +} + +CompoundConditionEditor::~CompoundConditionEditor() {} + +} // namespace cru::theme_builder::components::conditions |