diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-15 15:58:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-16 09:54:58 +0200 |
commit | a399853f864ace2d4bd7e9a3a3b3eeb8a2379e4a (patch) | |
tree | c39ff3adad7060656ff7623cebd63e88bc60f0d4 /include | |
parent | bb34fed5b4cec43811a733e197137c2ac05f47c4 (diff) |
refactor to move overlay creation to SdrPaintView
Change-Id: Idbb734a44289d7ecead84f3c4ac2bc1ebc44ef40
Reviewed-on: https://gerrit.libreoffice.org/72381
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/svx/svdpntv.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/svx/svdpntv.hxx b/include/svx/svdpntv.hxx index 429e9b96f020..43bcd34e234f 100644 --- a/include/svx/svdpntv.hxx +++ b/include/svx/svdpntv.hxx @@ -43,6 +43,7 @@ class SdrPageWindow; namespace com { namespace sun { namespace star { namespace awt { class XControlContainer; }}}} +namespace sdr { namespace overlay { class OverlayManager; } } class SdrPage; class SdrView; @@ -220,6 +221,8 @@ public: bool IsPagePaintingAllowed() const { return mbPagePaintingAllowed;} void SetPagePaintingAllowed(bool bNew); + rtl::Reference<sdr::overlay::OverlayManager> CreateOverlayManager(OutputDevice& rDevice) const; + protected: svtools::ColorConfig maColorConfig; Color maGridColor; |