diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-30 14:11:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-30 17:13:13 +0200 |
commit | 31342a1bda26f4e3dd29274dafd306fd0a9e7047 (patch) | |
tree | ff55c1961391d911b9e62a866b7cf38aa4ddf23a /include/svx/svdedxv.hxx | |
parent | 9e129e8557370207f784cba0f40643044ead88be (diff) |
tdf#134566 accept input engine commands in editview in custom widget
for the generic case first
Change-Id: I10bd707900b54c70c9bda79d5d09532cc159779e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103692
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svx/svdedxv.hxx')
-rw-r--r-- | include/svx/svdedxv.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/svx/svdedxv.hxx b/include/svx/svdedxv.hxx index 192c61e3c07c..3036836a999f 100644 --- a/include/svx/svdedxv.hxx +++ b/include/svx/svdedxv.hxx @@ -65,9 +65,10 @@ class SVXCORE_DLLPUBLIC SdrObjEditView : public SdrGlueEditView, public EditView // Now derived from EditViewCallbacks and overriding these callbacks to // allow own EditText visualization - virtual void EditViewInvalidate(const tools::Rectangle& rRect) const override; - virtual void EditViewSelectionChange() const override; + virtual void EditViewInvalidate(const tools::Rectangle& rRect) override; + virtual void EditViewSelectionChange() override; virtual OutputDevice& EditViewOutputDevice() const override; + virtual void EditViewInputContext(const InputContext& rInputContext) override; // The OverlayObjects used for visualizing active TextEdit (currently // using TextEditOverlayObject, but not limited to it @@ -159,7 +160,7 @@ public: // used to call the old ImpPaintOutlinerView. Will be replaced when the // outliner will be displayed on the overlay in edit mode. - void TextEditDrawing(SdrPaintWindow& rPaintWindow) const; + void TextEditDrawing(SdrPaintWindow& rPaintWindow); // Actionhandling for macromode virtual bool IsAction() const override; |