diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-12-04 12:11:49 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-12-04 14:32:57 +0100 |
commit | bfdee54f8cd0fa987d004e42564a19aba24b4393 (patch) | |
tree | 3fcd4605307291c11413a55d383ae70dae88994e /include | |
parent | 227ab55b1a1d6fb50fd1c41ba4f7d42518b4994c (diff) |
honour GtkScrolledWindow shadow-type
Change-Id: If6cc9f9f6c310261d783f2698b86329aa2a12c5a
Reviewed-on: https://gerrit.libreoffice.org/84401
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/decoview.hxx | 10 | ||||
-rw-r--r-- | include/vcl/layout.hxx | 1 | ||||
-rw-r--r-- | include/vcl/vclenum.hxx | 11 |
3 files changed, 12 insertions, 10 deletions
diff --git a/include/vcl/decoview.hxx b/include/vcl/decoview.hxx index 5bcdcc1a208a..40dc600b87d2 100644 --- a/include/vcl/decoview.hxx +++ b/include/vcl/decoview.hxx @@ -43,16 +43,6 @@ namespace o3tl } // Flags for DrawFrame() -enum class DrawFrameStyle -{ - NONE = 0x0000, - In = 0x0001, - Out = 0x0002, - Group = 0x0003, - DoubleIn = 0x0004, - DoubleOut = 0x0005, - NWF = 0x0006, -}; enum class DrawFrameFlags { NONE = 0x0000, diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx index f60014bb315d..9d8290929db6 100644 --- a/include/vcl/layout.hxx +++ b/include/vcl/layout.hxx @@ -521,6 +521,7 @@ private: void InitScrollBars(const Size &rRequest); virtual bool EventNotify(NotifyEvent& rNEvt) override; bool m_bUserManagedScrolling; + DrawFrameStyle m_eDrawFrameStyle; VclPtr<ScrollBar> m_pVScroll; VclPtr<ScrollBar> m_pHScroll; VclPtr<ScrollBarBox> m_aScrollBarBox; diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx index 95650b2ed889..738dca1fc3b0 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -326,6 +326,17 @@ namespace vcl }; } +enum class DrawFrameStyle +{ + NONE = 0x0000, + In = 0x0001, + Out = 0x0002, + Group = 0x0003, + DoubleIn = 0x0004, + DoubleOut = 0x0005, + NWF = 0x0006, +}; + #endif // INCLUDED_VCL_VCLENUM_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |