x.cpp 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. /* x.cpp: Handles starting and managing X.
  2. *
  3. * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
  4. *
  5. * This file is part of Slop.
  6. *
  7. * Slop is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Slop is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Slop. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include "x.hpp"
  21. slop::XEngine* xengine = new slop::XEngine();
  22. int slop::XEngineErrorHandler( Display* dpy, XErrorEvent* event ) {
  23. // Ignore XGrabKeyboard BadAccess errors, we can work without it.
  24. // 31 = XGrabKeyboard's request code
  25. if ( event->request_code == 31 && event->error_code == BadAccess ) {
  26. fprintf( stderr, "_X Error \"BadAccess\" for XGrabKeyboard ignored...\n" );
  27. return EXIT_SUCCESS;
  28. }
  29. // Everything else should be fatal as I don't like undefined behavior.
  30. char buffer[1024];
  31. XGetErrorText( dpy, event->error_code, buffer, 1024 );
  32. fprintf( stderr,
  33. "_X Error of failed request: %s\n_ Major opcode of failed request: % 3d\n_ Serial number of failed request:% 5li\n_ Current serial number in output stream:?????\n",
  34. buffer,
  35. event->request_code,
  36. event->serial );
  37. exit(1);
  38. }
  39. unsigned int slop::XEngine::getWidth() {
  40. if ( !m_good ) {
  41. return -1;
  42. }
  43. return WidthOfScreen( m_screen );
  44. }
  45. unsigned int slop::XEngine::getHeight() {
  46. if ( !m_good ) {
  47. return -1;
  48. }
  49. return HeightOfScreen( m_screen );
  50. }
  51. slop::XEngine::XEngine() {
  52. m_keypressed = false;
  53. m_display = NULL;
  54. m_visual = NULL;
  55. m_screen = NULL;
  56. m_good = false;
  57. m_mousex = -1;
  58. m_mousey = -1;
  59. m_hoverWindow = None;
  60. }
  61. slop::XEngine::~XEngine() {
  62. if ( !m_good ) {
  63. return;
  64. }
  65. for ( unsigned int i=0; i<m_cursors.size(); i++ ) {
  66. if ( m_cursors.at( i ) ) {
  67. XFreeCursor( m_display, m_cursors[i] );
  68. }
  69. }
  70. XCloseDisplay( m_display );
  71. }
  72. bool slop::XEngine::mouseDown( unsigned int button ) {
  73. if ( button >= m_mouse.size() ) {
  74. return false;
  75. }
  76. return m_mouse.at( button );
  77. }
  78. int slop::XEngine::init( std::string display ) {
  79. // Initialize display
  80. m_display = XOpenDisplay( display.c_str() );
  81. if ( !m_display ) {
  82. fprintf( stderr, "Error: Failed to open X display %s\n", display.c_str() );
  83. return EXIT_FAILURE;
  84. }
  85. m_screen = ScreenOfDisplay( m_display, DefaultScreen( m_display ) );
  86. m_visual = DefaultVisual ( m_display, XScreenNumberOfScreen( m_screen ) );
  87. m_colormap = DefaultColormap( m_display, XScreenNumberOfScreen( m_screen ) );
  88. //m_root = RootWindow ( m_display, XScreenNumberOfScreen( m_screen ) );
  89. m_root = DefaultRootWindow( m_display );
  90. m_good = true;
  91. XSetErrorHandler( slop::XEngineErrorHandler );
  92. selectAllInputs( m_root, EnterWindowMask );
  93. return EXIT_SUCCESS;
  94. }
  95. bool slop::XEngine::keyPressed( KeySym key ) {
  96. KeyCode keycode = XKeysymToKeycode( m_display, key );
  97. if ( keycode != 0 ) {
  98. // Get the whole keyboard state
  99. char keys[32];
  100. XQueryKeymap( m_display, keys );
  101. // Check our keycode
  102. return ( keys[ keycode / 8 ] & ( 1 << ( keycode % 8 ) ) ) != 0;
  103. } else {
  104. return false;
  105. }
  106. }
  107. bool slop::XEngine::anyKeyPressed() {
  108. if ( !m_good ) {
  109. return false;
  110. }
  111. // Thanks to SFML for some reliable key state grabbing.
  112. // Get the whole keyboard state
  113. char keys[ 32 ];
  114. XQueryKeymap( m_display, keys );
  115. // Each bit indicates a different key, 1 for pressed, 0 otherwise.
  116. // Every bit should be 0 if nothing is pressed.
  117. for ( unsigned int i = 0; i < 32; i++ ) {
  118. if ( keys[ i ] != 0 ) {
  119. return true;
  120. }
  121. }
  122. return false;
  123. }
  124. int slop::XEngine::grabKeyboard() {
  125. if ( !m_good ) {
  126. return EXIT_FAILURE;
  127. }
  128. int err = XGrabKeyboard( m_display, m_root, False, GrabModeAsync, GrabModeAsync, CurrentTime );
  129. if ( err != GrabSuccess ) {
  130. fprintf( stderr, "Warning: Failed to grab X keyboard.\n" );
  131. fprintf( stderr, " This happens when something has already grabbed your keybaord.\n" );
  132. fprintf( stderr, " slop should still run properly though.\n" );
  133. return EXIT_FAILURE;
  134. }
  135. return EXIT_SUCCESS;
  136. }
  137. int slop::XEngine::releaseKeyboard() {
  138. if ( !m_good ) {
  139. return EXIT_FAILURE;
  140. }
  141. XUngrabKeyboard( m_display, CurrentTime );
  142. return EXIT_SUCCESS;
  143. }
  144. void slop::XEngine::selectAllInputs( Window win, long event_mask) {
  145. Window root, parent;
  146. Window* children;
  147. unsigned int nchildren;
  148. XQueryTree( m_display, win, &root, &parent, &children, &nchildren );
  149. for ( unsigned int i=0;i<nchildren;i++ ) {
  150. XSelectInput( m_display, children[ i ], event_mask );
  151. selectAllInputs( children[ i ], event_mask );
  152. }
  153. free( children );
  154. }
  155. // Grabs the cursor, be wary that setCursor changes the mouse masks.
  156. int slop::XEngine::grabCursor( slop::CursorType type ) {
  157. if ( !m_good ) {
  158. return EXIT_FAILURE;
  159. }
  160. int xfontcursor = getCursor( type );
  161. int err = XGrabPointer( m_display, m_root, True,
  162. PointerMotionMask | ButtonPressMask | ButtonReleaseMask | EnterWindowMask,
  163. GrabModeAsync, GrabModeAsync, None, xfontcursor, CurrentTime );
  164. if ( err != GrabSuccess ) {
  165. fprintf( stderr, "Error: Failed to grab X cursor.\n" );
  166. fprintf( stderr, " This can be caused by launching slop weirdly.\n" );
  167. return EXIT_FAILURE;
  168. }
  169. // Quickly set the mouse position so we don't have to worry about x11 generating an event.
  170. Window root, child;
  171. int mx, my;
  172. int wx, wy;
  173. unsigned int mask;
  174. XQueryPointer( m_display, m_root, &root, &child, &mx, &my, &wx, &wy, &mask );
  175. m_mousex = mx;
  176. m_mousey = my;
  177. // Get the deepest available window.
  178. Window test = child;
  179. while( test ) {
  180. child = test;
  181. XQueryPointer( m_display, child, &root, &test, &mx, &my, &wx, &wy, &mask );
  182. }
  183. m_hoverWindow = child;
  184. return EXIT_SUCCESS;
  185. }
  186. int slop::XEngine::releaseCursor() {
  187. if ( !m_good ) {
  188. return EXIT_FAILURE;
  189. }
  190. XUngrabPointer( m_display, CurrentTime );
  191. return EXIT_SUCCESS;
  192. }
  193. void slop::XEngine::tick() {
  194. if ( !m_good ) {
  195. return;
  196. }
  197. XEvent event;
  198. while ( XPending( m_display ) ) {
  199. XNextEvent( m_display, &event );
  200. switch ( event.type ) {
  201. case MotionNotify: {
  202. m_mousex = event.xmotion.x;
  203. m_mousey = event.xmotion.y;
  204. break;
  205. }
  206. case ButtonPress: {
  207. // Our pitiful mouse manager--
  208. if ( m_mouse.size() > event.xbutton.button ) {
  209. m_mouse.at( event.xbutton.button ) = true;
  210. } else {
  211. m_mouse.resize( event.xbutton.button+2, false );
  212. m_mouse.at( event.xbutton.button ) = true;
  213. }
  214. break;
  215. }
  216. case EnterNotify: {
  217. if ( event.xcrossing.subwindow != None ) {
  218. m_hoverWindow = event.xcrossing.subwindow;
  219. } else {
  220. m_hoverWindow = event.xcrossing.window;
  221. }
  222. break;
  223. }
  224. case ButtonRelease: {
  225. if ( m_mouse.size() > event.xbutton.button ) {
  226. m_mouse.at( event.xbutton.button ) = false;
  227. } else {
  228. m_mouse.resize( event.xbutton.button+2, false );
  229. m_mouse.at( event.xbutton.button ) = false;
  230. }
  231. break;
  232. }
  233. default: break;
  234. }
  235. }
  236. }
  237. // This converts an enum into a preallocated cursor, the cursor will automatically deallocate itself on ~XEngine
  238. Cursor slop::XEngine::getCursor( slop::CursorType type ) {
  239. int xfontcursor;
  240. switch ( type ) {
  241. default:
  242. case Left: xfontcursor = XC_left_ptr; break;
  243. case Crosshair: xfontcursor = XC_crosshair; break;
  244. case Cross: xfontcursor = XC_cross; break;
  245. case UpperLeftCorner: xfontcursor = XC_ul_angle; break;
  246. case UpperRightCorner: xfontcursor = XC_ur_angle; break;
  247. case LowerLeftCorner: xfontcursor = XC_ll_angle; break;
  248. case LowerRightCorner: xfontcursor = XC_lr_angle; break;
  249. case Dot: xfontcursor = XC_dot; break;
  250. case Box: xfontcursor = 40; break;
  251. }
  252. Cursor newcursor = 0;
  253. if ( m_cursors.size() > (unsigned int)xfontcursor ) {
  254. newcursor = m_cursors.at( xfontcursor );
  255. }
  256. if ( !newcursor ) {
  257. newcursor = XCreateFontCursor( m_display, xfontcursor );
  258. m_cursors.resize( xfontcursor+2, 0 );
  259. m_cursors.at( xfontcursor ) = newcursor;
  260. }
  261. return newcursor;
  262. }
  263. // Swaps out the current cursor, bewary that XChangeActivePointerGrab also resets masks, so if you change the mouse masks on grab you need to change them here too.
  264. void slop::XEngine::setCursor( slop::CursorType type ) {
  265. if ( !m_good ) {
  266. return;
  267. }
  268. Cursor xfontcursor = getCursor( type );
  269. XChangeActivePointerGrab( m_display,
  270. PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
  271. xfontcursor, CurrentTime );
  272. }
  273. void slop::WindowRectangle::applyPadding( int padding ) {
  274. if ( (int)m_width + padding*2 >= 0 ) {
  275. m_x -= padding;
  276. m_width += padding*2;
  277. }
  278. if ( (int)m_height + padding*2 >= 0 ) {
  279. m_y -= padding;
  280. m_height += padding*2;
  281. }
  282. }
  283. Window slop::WindowRectangle::getWindow() {
  284. return m_window;
  285. }
  286. void slop::WindowRectangle::applyMinMaxSize( unsigned int minimumsize, unsigned int maximumsize ) {
  287. if ( minimumsize > maximumsize && maximumsize > 0 ) {
  288. fprintf( stderr, "Error: minimumsize is greater than maximumsize.\n" );
  289. exit( 1 );
  290. }
  291. if ( m_width < minimumsize ) {
  292. int diff = minimumsize - m_width;
  293. m_width = minimumsize;
  294. m_x -= diff/2;
  295. }
  296. if ( m_height < minimumsize ) {
  297. int diff = minimumsize - m_height;
  298. m_height = minimumsize;
  299. m_y -= diff/2;
  300. }
  301. if ( maximumsize > 0 ) {
  302. if ( m_width > maximumsize ) {
  303. int diff = m_width;
  304. m_width = maximumsize;
  305. // Center in the center of the window
  306. m_x += diff/2 - maximumsize/2;
  307. }
  308. if ( m_height > maximumsize ) {
  309. int diff = m_height;
  310. m_height = maximumsize;
  311. // Center in the center of the window
  312. m_y += diff/2 - maximumsize/2;
  313. }
  314. }
  315. }
  316. void slop::WindowRectangle::setGeometry( Window win, bool decorations ) {
  317. if ( decorations ) {
  318. Window root, parent, test, junk;
  319. Window* childlist;
  320. unsigned int ujunk;
  321. // Try to find the actual decorations.
  322. test = win;
  323. int status = XQueryTree( xengine->m_display, test, &root, &parent, &childlist, &ujunk);
  324. free( childlist );
  325. while( parent != root ) {
  326. if ( !parent || !status ) {
  327. break;
  328. }
  329. test = parent;
  330. status = XQueryTree( xengine->m_display, test, &root, &parent, &childlist, &ujunk);
  331. free( childlist );
  332. }
  333. // test contains the window we're screenshotting.
  334. m_window = test;
  335. // Once found, proceed normally.
  336. if ( test && parent == root && status ) {
  337. XWindowAttributes attr;
  338. XGetWindowAttributes( xengine->m_display, test, &attr );
  339. m_width = attr.width;
  340. m_height = attr.height;
  341. m_border = attr.border_width;
  342. XTranslateCoordinates( xengine->m_display, test, attr.root, -attr.border_width, -attr.border_width, &(m_x), &(m_y), &junk );
  343. // We make sure we include borders, since we want decorations.
  344. m_width += m_border * 2;
  345. m_height += m_border * 2;
  346. }
  347. return;
  348. }
  349. Window junk;
  350. // Now here we should be able to just use whatever we get.
  351. XWindowAttributes attr;
  352. // We use XGetWindowAttributes to know our root window.
  353. XGetWindowAttributes( xengine->m_display, win, &attr );
  354. //m_x = attr.x;
  355. //m_y = attr.y;
  356. m_width = attr.width;
  357. m_height = attr.height;
  358. m_border = attr.border_width;
  359. XTranslateCoordinates( xengine->m_display, win, attr.root, -attr.border_width, -attr.border_width, &(m_x), &(m_y), &junk );
  360. m_window = win;
  361. }