diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-02-24 14:30:41 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-02 08:50:53 +0100 |
commit | b780822f5afbf8cd6c2a8c756251a7edf248f55e (patch) | |
tree | 2f427d8ed6c2b914d03c20dcc63259a3fb086450 /sd/source/ui/inc/unomodel.hxx | |
parent | 845708fcc8e9a5a18aa7e70741008c6602f08eae (diff) |
Introduce SdXImpressDocument::postMouseEvent() override
It's far from perfect, but the following use-case works:
- open an empty document with a singe slide (only two placeholder
shapes)
- type a few characters (into the title shape), Esc to finish editing
- click into the non-title placeholder
- type + Esc -> characters appear in the non-title shape
Change-Id: Idc97c1fbeda0fb3ac53769e78b7cd665d8aee67b
Diffstat (limited to 'sd/source/ui/inc/unomodel.hxx')
-rw-r--r-- | sd/source/ui/inc/unomodel.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sd/source/ui/inc/unomodel.hxx b/sd/source/ui/inc/unomodel.hxx index 768e4f633f90..64080e7ad992 100644 --- a/sd/source/ui/inc/unomodel.hxx +++ b/sd/source/ui/inc/unomodel.hxx @@ -244,6 +244,8 @@ public: virtual void initializeForTiledRendering() SAL_OVERRIDE; /// @see vcl::ITiledRenderable::registerCallback(). virtual void registerCallback(LibreOfficeKitCallback pCallback, void* pData) SAL_OVERRIDE; + /// @see vcl::ITiledRenderable::postMouseEvent(). + virtual void postMouseEvent(int nType, int nX, int nY, int nCount) SAL_OVERRIDE; // XComponent |