XBMCMove 1.0
Controlar o XBMC com gestos
|
00001 00011 #ifndef TECLADO_H 00012 #define TECLADO_H 00013 00014 #include <X11/Xlib.h> 00015 #include <X11/keysym.h> 00016 00017 class teclado{ 00018 public: 00022 void simular(int tecla); 00023 teclado(); 00024 ~teclado(); 00025 private: 00026 XKeyEvent createKeyEvent(Display *display, Window &win, Window &winRoot, bool press, int keycode, int modifiers); 00027 }; 00028 00029 #endif /* TECLADO_H */ 00030