aboutsummaryrefslogtreecommitdiff
path: root/src/ui/style/Styler.cpp
blob: da3a22478c251a465951f37cdbb97744544da96c (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
#include "cru/ui/style/Styler.hpp"

#include "../Helper.hpp"
#include "cru/common/ClonablePtr.hpp"
#include "cru/platform/gui/Cursor.hpp"
#include "cru/platform/gui/UiApplication.hpp"
#include "cru/ui/controls/Control.hpp"
#include "cru/ui/controls/IBorderControl.hpp"
#include "cru/ui/style/ApplyBorderStyleInfo.hpp"

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_);
  }
}

ClonablePtr<CursorStyler> CursorStyler::Create(
    platform::gui::SystemCursorType type) {
  return Create(GetUiApplication()->GetCursorManager()->GetSystemCursor(type));
}

void CursorStyler::Apply(controls::Control *control) const {
  control->SetCursor(cursor_);
}
}  // namespace cru::ui::style