summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthew J. Francis <mjay.francis@gmail.com>2015-10-03 04:31:48 +0800
committerMatthew Francis <mjay.francis@gmail.com>2015-10-16 12:03:30 +0000
commit59c38539bcabf3a5c949745ff8f501ed7c98a528 (patch)
treef53668f6e0f0554171718b3491b8ff0183598a21 /include
parentfa2a7665194c7fff311d14932ee7930f80e6c7e2 (diff)
Allow injection of keyboard and mouse events through UNO
Change-Id: I3d139c6378f5274be1e7bfd88f72d1576c13243d Reviewed-on: https://gerrit.libreoffice.org/19321 Reviewed-by: Matthew Francis <mjay.francis@gmail.com> Tested-by: Matthew Francis <mjay.francis@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/toolkit/helper/vclunohelper.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/toolkit/helper/vclunohelper.hxx b/include/toolkit/helper/vclunohelper.hxx
index 0b3e944be19b..a03e89655b18 100644
--- a/include/toolkit/helper/vclunohelper.hxx
+++ b/include/toolkit/helper/vclunohelper.hxx
@@ -145,11 +145,15 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxContext
);
+ static ::MouseEvent createVCLMouseEvent( const ::com::sun::star::awt::MouseEvent& _rAwtEvent );
+
static ::com::sun::star::awt::KeyEvent
createKeyEvent(
const ::KeyEvent& _rVclEvent,
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxContext
);
+
+ static ::KeyEvent createVCLKeyEvent( const ::com::sun::star::awt::KeyEvent& _rAwtEvent );
};