aboutsummaryrefslogtreecommitdiff
path: root/src/ui/ui_manager.hpp
diff options
context:
space:
mode:
author杨宇千 <crupest@outlook.com>2018-11-10 22:39:26 +0800
committerGitHub <noreply@github.com>2018-11-10 22:39:26 +0800
commit8b04c0dd788be75c2dd7d8f58aebc7d6bf6752df (patch)
tree2d00b4f6a7af93a13d271d78e6ef682c335c91c7 /src/ui/ui_manager.hpp
parent7c2fb4578b6997b5ab0d98121cda253f734139c1 (diff)
parentb2eced8d9719eb00796c2674fc2c23ab0c9bbdbf (diff)
downloadcru-8b04c0dd788be75c2dd7d8f58aebc7d6bf6752df.tar.gz
cru-8b04c0dd788be75c2dd7d8f58aebc7d6bf6752df.tar.bz2
cru-8b04c0dd788be75c2dd7d8f58aebc7d6bf6752df.zip
Merge pull request #11 from crupest/listitem
Add ListItem.
Diffstat (limited to 'src/ui/ui_manager.hpp')
-rw-r--r--src/ui/ui_manager.hpp9
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;