diff options
author | Mihai Varga <mihai.varga@collabora.com> | 2015-10-04 19:40:13 +0300 |
---|---|---|
committer | Mihai Varga <mihai.mv13@gmail.com> | 2015-10-05 15:02:36 +0300 |
commit | c90c08a65c480a1012182979d5e9218f17a2ba2e (patch) | |
tree | ac2e2ca3d07c6ac7c356fd8e503924fe4184d4d8 /sc/inc | |
parent | 0326352470aee1a774bb5aa314c4f3625c1372b3 (diff) |
LOK: added the button type and key modifier to postMouseEvent()
To get a better functionality we need to know the button type (left,
right, middle). We also need the key modifier (ctrl, alt, shift) for
actions such as ctrl+click (to open a link) or shift+click to select
Change-Id: Iaccb93b276f8a6870dd41cc5132dbb85d2bbf71b
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/docuno.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx index 34235a2a0b75..91358f6f5350 100644 --- a/sc/inc/docuno.hxx +++ b/sc/inc/docuno.hxx @@ -51,6 +51,7 @@ #include <cppuhelper/implbase.hxx> #include <cppuhelper/interfacecontainer.h> #include <svl/itemprop.hxx> +#include <vcl/event.hxx> #include <vcl/ITiledRenderable.hxx> #include "drwlayer.hxx" @@ -398,7 +399,7 @@ public: virtual void postKeyEvent(int nType, int nCharCode, int nKeyCode) SAL_OVERRIDE; /// @see vcl::ITiledRenderable::postMouseEvent(). - virtual void postMouseEvent(int nType, int nX, int nY, int nCount) SAL_OVERRIDE; + virtual void postMouseEvent(int nType, int nX, int nY, int nCount, int nButtons = MOUSE_LEFT, int nModifier = 0) SAL_OVERRIDE; /// @see vcl::ITiledRenderable::setTextSelection(). virtual void setTextSelection(int nType, int nX, int nY) SAL_OVERRIDE; |