blob: b3e57dd779b8ff193fba3498d1a780c1467040c5 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
add_library(CruUi SHARED
DeleteLater.cpp
Helper.cpp
ThemeManager.cpp
ThemeResourceDictionary.cpp
components/Component.cpp
components/Input.cpp
components/Menu.cpp
components/PopupButton.cpp
components/Select.cpp
controls/Button.cpp
controls/CheckBox.cpp
controls/Container.cpp
controls/Control.cpp
controls/FlexLayout.cpp
controls/IconButton.cpp
controls/NoChildControl.cpp
controls/Popup.cpp
controls/RootControl.cpp
controls/ScrollView.cpp
controls/StackLayout.cpp
controls/TextBlock.cpp
controls/TextBox.cpp
controls/TextHostControlService.cpp
controls/TreeView.cpp
controls/Window.cpp
events/MouseEventArgs.cpp
helper/ClickDetector.cpp
helper/ShortcutHub.cpp
host/LayoutPaintCycler.cpp
host/WindowHost.cpp
mapper/BorderStyleMapper.cpp
mapper/BrushMapper.cpp
mapper/ColorMapper.cpp
mapper/CornerRadiusMapper.cpp
mapper/CursorMapper.cpp
mapper/FontMapper.cpp
mapper/Mapper.cpp
mapper/MapperRegistry.cpp
mapper/MeasureLengthMapper.cpp
mapper/PointMapper.cpp
mapper/SizeMapper.cpp
mapper/StringMapper.cpp
mapper/ThicknessMapper.cpp
mapper/style/AndConditionMapper.cpp
mapper/style/BorderStylerMapper.cpp
mapper/style/CheckedConditionMapper.cpp
mapper/style/ClickStateConditionMapper.cpp
mapper/style/ContentBrushStylerMapper.cpp
mapper/style/CursorStylerMapper.cpp
mapper/style/FocusConditionMapper.cpp
mapper/style/FontStylerMapper.cpp
mapper/style/HoverConditionMapper.cpp
mapper/style/MarginStylerMapper.cpp
mapper/style/NoConditionMapper.cpp
mapper/style/OrConditionMapper.cpp
mapper/style/PaddingStylerMapper.cpp
mapper/style/PreferredSizeStylerMapper.cpp
mapper/style/StyleRuleMapper.cpp
mapper/style/StyleRuleSetMapper.cpp
render/BorderRenderObject.cpp
render/CanvasRenderObject.cpp
render/FlexLayoutRenderObject.cpp
render/GeometryRenderObject.cpp
render/LayoutHelper.cpp
render/RenderObject.cpp
render/ScrollBar.cpp
render/ScrollRenderObject.cpp
render/SingleChildRenderObject.cpp
render/StackLayoutRenderObject.cpp
render/TextRenderObject.cpp
render/TreeRenderObject.cpp
style/Condition.cpp
style/Styler.cpp
style/StyleRule.cpp
style/StyleRuleSet.cpp
)
target_compile_definitions(CruUi PRIVATE CRU_UI_EXPORT_API)
target_link_libraries(CruUi PUBLIC CruPlatformGui CruXml)
|