diff options
author | crupest <crupest@outlook.com> | 2018-11-10 21:53:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-10 21:53:33 +0800 |
commit | e5513daa53cb958b0c83d575c440f40aaf40f562 (patch) | |
tree | c6782f0cbfe4eca466f13ef571338e6b55342860 /src/ui/ui_manager.hpp | |
parent | cfcd03f564e82419345a7a6900fdc17c5b8c2631 (diff) | |
download | cru-e5513daa53cb958b0c83d575c440f40aaf40f562.tar.gz cru-e5513daa53cb958b0c83d575c440f40aaf40f562.tar.bz2 cru-e5513daa53cb958b0c83d575c440f40aaf40f562.zip |
...
Diffstat (limited to 'src/ui/ui_manager.hpp')
-rw-r--r-- | src/ui/ui_manager.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ui/ui_manager.hpp b/src/ui/ui_manager.hpp index 753da907..6b368e12 100644 --- a/src/ui/ui_manager.hpp +++ b/src/ui/ui_manager.hpp @@ -53,6 +53,15 @@ namespace cru::ui Microsoft::WRL::ComPtr<ID2D1Brush> toggle_button_on_brush; Microsoft::WRL::ComPtr<ID2D1Brush> toggle_button_off_brush; + //region ListItem + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_normal_border_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_normal_fill_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_hover_border_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_hover_fill_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_select_border_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> list_item_select_fill_brush; + + #ifdef CRU_DEBUG_LAYOUT //region debug Microsoft::WRL::ComPtr<ID2D1Brush> debug_layout_out_border_brush; |