diff options
Diffstat (limited to 'src/theme_builder/components/StyleRuleSetEditor.cpp')
-rw-r--r-- | src/theme_builder/components/StyleRuleSetEditor.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/theme_builder/components/StyleRuleSetEditor.cpp b/src/theme_builder/components/StyleRuleSetEditor.cpp index 933706a3..cfb2ad56 100644 --- a/src/theme_builder/components/StyleRuleSetEditor.cpp +++ b/src/theme_builder/components/StyleRuleSetEditor.cpp @@ -4,4 +4,14 @@ namespace cru::theme_builder { StyleRuleSetEditor::StyleRuleSetEditor() {} StyleRuleSetEditor::~StyleRuleSetEditor() {} + +void StyleRuleSetEditor::BindStyleRuleSet( + std::shared_ptr<ui::style::StyleRuleSet> rule_set) { + style_rule_set_ = std::move(rule_set); + UpdateView(); +} + +void StyleRuleSetEditor::UpdateView() { + +} } // namespace cru::theme_builder |