aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mapper/style/FontStylerMapper.cpp
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-12-15 21:27:33 +0800
committerYuqian Yang <crupest@crupest.life>2025-12-15 21:27:33 +0800
commitc77072d586bf7aca58e6465ceab3d11a0be0021f (patch)
tree83605be90fd32104ef74bbd1d84d900aaf0271ce /src/ui/mapper/style/FontStylerMapper.cpp
parentbc3fa9650699046f3a87a620282ee43f26b2fa75 (diff)
downloadcru-c77072d586bf7aca58e6465ceab3d11a0be0021f.tar.gz
cru-c77072d586bf7aca58e6465ceab3d11a0be0021f.tar.bz2
cru-c77072d586bf7aca58e6465ceab3d11a0be0021f.zip
Clean up mapper codes.
Diffstat (limited to 'src/ui/mapper/style/FontStylerMapper.cpp')
-rw-r--r--src/ui/mapper/style/FontStylerMapper.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/ui/mapper/style/FontStylerMapper.cpp b/src/ui/mapper/style/FontStylerMapper.cpp
deleted file mode 100644
index ac8051a3..00000000
--- a/src/ui/mapper/style/FontStylerMapper.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "cru/ui/mapper/style/FontStylerMapper.h"
-#include "cru/base/ClonePtr.h"
-#include "cru/ui/mapper/MapperRegistry.h"
-
-namespace cru::ui::mapper::style {
-FontStylerMapper::FontStylerMapper() { SetAllowedTags({"FontStyler"}); }
-
-FontStylerMapper::~FontStylerMapper() {}
-
-ClonePtr<ui::style::FontStyler> FontStylerMapper::DoMapFromXml(
- xml::XmlElementNode* node) {
- auto font_mapper = MapperRegistry::GetInstance()
- ->GetSharedPtrMapper<platform::graphics::IFont>();
-
- std::shared_ptr<platform::graphics::IFont> font;
-
- for (auto child_node : node->GetChildren()) {
- if (child_node->IsElementNode()) {
- font = font_mapper->MapFromXml(child_node->AsElement());
- }
- }
-
- return ui::style::FontStyler::Create(std::move(font));
-}
-} // namespace cru::ui::mapper::style