diff options
author | crupest <crupest@outlook.com> | 2019-03-24 19:44:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-24 19:44:31 +0800 |
commit | b76e435faca204f830644047077ab08930dc8f9c (patch) | |
tree | 8bca146bc7443a704d3cb4b71b36e632cb505c25 /src/ui/ui_manager.hpp | |
parent | 79d1d76509dbf6cf9c79f8eb55968535982975aa (diff) | |
download | cru-b76e435faca204f830644047077ab08930dc8f9c.tar.gz cru-b76e435faca204f830644047077ab08930dc8f9c.tar.bz2 cru-b76e435faca204f830644047077ab08930dc8f9c.zip |
...
Diffstat (limited to 'src/ui/ui_manager.hpp')
-rw-r--r-- | src/ui/ui_manager.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ui/ui_manager.hpp b/src/ui/ui_manager.hpp index b736381d..107b536c 100644 --- a/src/ui/ui_manager.hpp +++ b/src/ui/ui_manager.hpp @@ -1,11 +1,10 @@ #pragma once #include "pre.hpp" -#include <d2d1.h> -#include <wrl/client.h> - #include "base.hpp" +struct ID2D1Brush; +struct IDWriteTextFormat; namespace cru::graph { class GraphManager; } @@ -25,6 +24,9 @@ class PredefineResources : public Object { PredefineResources& operator=(PredefineResources&& other) = delete; ~PredefineResources() override; + // region Button + ID2D1Brush* button_normal_border_brush = nullptr; + // region TextBlock ID2D1Brush* text_block_selection_brush = nullptr; ID2D1Brush* text_block_text_brush = nullptr; |