diff options
author | Yuqian Yang <crupest@outlook.com> | 2018-10-06 15:51:36 +0000 |
---|---|---|
committer | Yuqian Yang <crupest@outlook.com> | 2018-10-06 15:51:36 +0000 |
commit | b0057dc911f96258c7280b89c8f4da828ecc283c (patch) | |
tree | ccdc237b84423c9564458df3fae036f08815dda6 /src/application.h | |
parent | 7e870dd16e2f5b41fa6c6f687723aaa50c16274d (diff) | |
parent | 2261a4bc348a6017a0f31233f969bdf31ae35679 (diff) | |
download | cru-b0057dc911f96258c7280b89c8f4da828ecc283c.tar.gz cru-b0057dc911f96258c7280b89c8f4da828ecc283c.tar.bz2 cru-b0057dc911f96258c7280b89c8f4da828ecc283c.zip |
Merge branch '13-debug-layout' into 'master'
Resolve "Add debug layout visual effect."
Closes #13
See merge request crupest/CruUI!13
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/application.h b/src/application.h index 106e7171..b371c8f9 100644 --- a/src/application.h +++ b/src/application.h @@ -34,6 +34,15 @@ namespace cru float half_caret_width; }; +#ifdef CRU_DEBUG_LAYOUT + struct DebugLayoutResource + { + Microsoft::WRL::ComPtr<ID2D1Brush> out_border_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> margin_brush; + Microsoft::WRL::ComPtr<ID2D1Brush> padding_brush; + }; +#endif + class GodWindow : public Object { public: @@ -111,10 +120,10 @@ namespace cru return caret_info_; } -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - Microsoft::WRL::ComPtr<ID2D1Brush> GetDebugBorderBrush() const +#ifdef CRU_DEBUG_LAYOUT + const DebugLayoutResource* GetDebugLayoutResource() const { - return debug_border_brush_; + return &debug_layout_resource_; } #endif @@ -128,8 +137,8 @@ namespace cru std::unique_ptr<GodWindow> god_window_; -#ifdef CRU_DEBUG_DRAW_CONTROL_BORDER - Microsoft::WRL::ComPtr<ID2D1Brush> debug_border_brush_; +#ifdef CRU_DEBUG_LAYOUT + DebugLayoutResource debug_layout_resource_; #endif CaretInfo caret_info_; |