Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / awt / XToolkitRobot.idl
bloba74521d5e0001d5110952b8c7c21179fd0b1e67b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef __com_sun_star_awt_XToolkitRobot_idl__
11 #define __com_sun_star_awt_XToolkitRobot_idl__
13 #include <com/sun/star/awt/KeyEvent.idl>
14 #include <com/sun/star/awt/XTopWindow.idl>
16 module com { module sun { module star { module awt {
18 /** Allows injection of keyboard and mouse events
19 @since LibreOffice 5.1
21 interface XToolkitRobot
24 void keyPress( [in] com::sun::star::awt::KeyEvent aKeyEvent );
26 void keyRelease( [in] com::sun::star::awt::KeyEvent aKeyEvent );
28 void mousePress( [in] com::sun::star::awt::MouseEvent aMouseEvent );
30 void mouseRelease( [in] com::sun::star::awt::MouseEvent aMouseEvent );
32 void mouseMove( [in] com::sun::star::awt::MouseEvent aMouseEvent );
36 }; }; }; };
38 #endif
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */