diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-04-03 12:02:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-04-04 10:31:58 +0200 |
commit | b9c10ee923308f336a694bbc0212396ed5317b6a (patch) | |
tree | 72bf09a9eb69802a8e09227934bdb0b6c3150023 /include/editeng | |
parent | c8c0292c2152df8c353aeff32896f0cfa8a53a64 (diff) |
weld ClassificationDialog
with the extra problem of hosting an EditView/EditEngine within a
weld::DrawingArea
Change-Id: Id48a57ed0dfd2d92217209c43f752edd9cf8e1bd
Reviewed-on: https://gerrit.libreoffice.org/70219
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editview.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx index fbb6a614efa2..5dd839ba07f6 100644 --- a/include/editeng/editview.hxx +++ b/include/editeng/editview.hxx @@ -95,12 +95,15 @@ public: // call this when text visualization changed in any way. It // will also update selection, so no need to call this self // additionally (but will also do no harm) - virtual void EditViewInvalidate() const = 0; + virtual void EditViewInvalidate(const tools::Rectangle& rRect) const = 0; // call this when only selection is changed. Text change will // then *not* be checked and not be reacted on. Still, when // only the selection is changed, this is useful and faster virtual void EditViewSelectionChange() const = 0; + + // return the OutputDevice that the EditView will draw to + virtual OutputDevice& EditViewOutputDevice() const = 0; }; class EDITENG_DLLPUBLIC EditView final @@ -130,7 +133,7 @@ public: // set EditViewCallbacks for external handling of Repaints/Visualization void setEditViewCallbacks(const EditViewCallbacks* pEditViewCallbacks); - bool hasEditViewCallbacks() const; + const EditViewCallbacks* getEditViewCallbacks() const; void SetEditEngine( EditEngine* pEditEngine ); EditEngine* GetEditEngine() const; |