aboutsummaryrefslogtreecommitdiff
path: root/src/ui/style/Styler.cpp
blob: b0b14c6117875cd9f8dfc46b2a37f2f410e9f356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "cru/ui/style/Styler.h"

#include "cru/base/ClonePtr.h"
#include "cru/platform/gui/Cursor.h"
#include "cru/platform/gui/UiApplication.h"
#include "cru/ui/controls/Control.h"
#include "cru/ui/controls/IBorderControl.h"
#include "cru/ui/controls/IContentBrushControl.h"
#include "cru/ui/controls/IFontControl.h"
#include "cru/ui/style/ApplyBorderStyleInfo.h"

namespace cru::ui::style {
BorderStyler::BorderStyler(ApplyBorderStyleInfo style)
    : style_(std::move(style)) {}

void BorderStyler::Apply(controls::Control* control) const {
  if (auto border_control = dynamic_cast<controls::IBorderControl*>(control)) {
    border_control->ApplyBorderStyle(style_);
  }
}

ClonePtr<CursorStyler> CursorStyler::Create(
    platform::gui::SystemCursorType type) {
  return Create(platform::gui::IUiApplication::GetInstance()
                    ->GetCursorManager()
                    ->GetSystemCursor(type));
}

void CursorStyler::Apply(controls::Control* control) const {
  control->SetCursor(cursor_);
}

void PreferredSizeStyler::Apply(controls::Control* control) const {
  control->SetSuggestSize(size_);
}

void MarginStyler::Apply(controls::Control* control) const {
  control->SetMargin(margin_);
}

void PaddingStyler::Apply(controls::Control* control) const {
  control->SetPadding(padding_);
}

void ContentBrushStyler::Apply(controls::Control* control) const {
  if (auto content_brush_control =
          dynamic_cast<controls::IContentBrushControl*>(control)) {
    content_brush_control->SetContentBrush(brush_);
  }
}

void FontStyler::Apply(controls::Control* control) const {
  if (auto font_control = dynamic_cast<controls::IFontControl*>(control)) {
    font_control->SetFont(font_);
  }
}
}  // namespace cru::ui::style