Loading...
Searching...
No Matches
SplitPanelStyle.h
Go to the documentation of this file.
1// SplitPanelStyle.h
2#ifndef MALENA_SPLITPANELSTYLE_H
3#define MALENA_SPLITPANELSTYLE_H
4#pragma once
8
9namespace ml
10{
12 {
14 { static_cast<SplitPanelSettings&>(*this) = s; return *this; }
16 { static_cast<SplitPanelTheme&>(*this) = t; return *this; }
18 { static_cast<SplitPanelTheme&>(*this) = c; return *this; }
20 { static_cast<SplitPanelSettings&>(*this) = c; return *this; }
22 { SplitPanelTheme::applyFrom(t); return *this; }
23 };
24} // namespace ml
25#endif
Definition Component.h:22
Settings trait for interactive UI controls — layout only.
Theme tokens for interactive UI controls.
SplitPanelStyle & operator=(const ControlTheme &c)
SplitPanelStyle & operator=(const SplitPanelSettings &s)
SplitPanelStyle & operator=(const SplitPanelTheme &t)
SplitPanelStyle & applyFrom(const Theme &t)
Populate all fields from the global Theme token set.
SplitPanelStyle & operator=(const ControlSettings &c)
SplitPanelTheme & applyFrom(const Theme &t) override
Populate all fields from the global Theme token set.
Universal design token set applied across all Themeable components.
Definition Theme.h:70