Go to file
Dustin Bensing 7d3feb72bb added windows cmake building 2015-02-20 21:03:24 +01:00
XInputSimulator added windows cmake building 2015-02-20 21:03:24 +01:00
.gitignore added windows cmake building 2015-02-20 21:03:24 +01:00
.travis.yml Update .travis.yml 2015-02-15 20:16:42 +01:00
README.md Update README.md 2015-02-15 21:07:58 +01:00

README.md

XInputSimulator

Cross (X) Plattform (Linux/Mac/Win) Simulator for input devices to simulate mouse moves/clicks/scrolls or keyboard keystrokes.

Build Status

This program is published under the terms of the LGPL (http://www.gnu.org/licenses/) ####How to use For a detailed example see main.cpp

  XInputSimulator &sim = XInputSimulator::getInstance();

  sim.mouseMoveTo(500,400);                           //set mouse to screen cords 500x400
  sim.mouseMoveRelative(400, -100);                   //move frome there 400px in x to the right and -100px in y upwards
  sim.mouseDown(XInputSimulator::LEFT_MOUSE_BUTTON);  //press left mouse and hold
  sim.mouseMoveRelative(0, 300);                      //drag/mark with pressed mousebutton 300px down
  sim.mouseUp(XInputSimulator::LEFT_MOUSE_BUTTON);    //release the mousebutton press

building for Linux use -lX11 -lXtst | include X11/Xlib.h X11/Xutil.h
building for Mac use -framework ApplicationServices | include ApplicationServices/ApplicationServices.h
building for Win use User32.lib | include Windows.h

if you wanna use qmake i provide a XInputSimulator.pro file simply type:

>$ qmake XInputSimulator.pro && make

for cmake there is a CMakeLists.txt file -simply type:

>$ mkdir build
>$ cd build
>$ cmake ../XInputSimulator/
>$ make

for xcode there is an xcode project file

####Status early Alpha 2013-07-16: Linux, Mac and Win part with following functions

mouseMoveTo  
mouseMoveRelative  
mouseDown  
mouseUp  
mouseClick  
mouseScrollY  //up and down
mouseScrollX  //left an right

be aware that some glitches might appear and the interface might be changing every minute due to the early state of development. There is not much testing going on apart from the main.cpp. Feel free to file bugreports, wishes or patches :)