x.cpp 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  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. // Ignore XQueryKeymap BadValue errors, we can work without it.
  30. // 128 = XShape request code, not sure why XQueryKeymap generates this?
  31. if ( event->request_code == 128 && event->error_code == BadValue ) {
  32. fprintf( stderr, "_X Error \"BadValue\" for XQueryKeymap ignored...\n" );
  33. return EXIT_SUCCESS;
  34. }
  35. // Everything else should be fatal as I don't like undefined behavior.
  36. char buffer[1024];
  37. XGetErrorText( dpy, event->error_code, buffer, 1024 );
  38. fprintf( stderr,
  39. "_X Error of failed request: %s\n_ Error code of failed request: %3d\n_ Major opcode of failed request: %3d\n_ Minor opcode of failed request: %3d\n_ Serial number of failed request: %5li\n_ Current serial number in output stream:?????\n",
  40. buffer,
  41. event->error_code,
  42. event->request_code,
  43. event->minor_code,
  44. event->serial );
  45. exit(1);
  46. }
  47. unsigned int slop::XEngine::getWidth() {
  48. if ( !m_good ) {
  49. return -1;
  50. }
  51. return WidthOfScreen( m_screen );
  52. }
  53. unsigned int slop::XEngine::getHeight() {
  54. if ( !m_good ) {
  55. return -1;
  56. }
  57. return HeightOfScreen( m_screen );
  58. }
  59. slop::XEngine::XEngine() {
  60. m_keypressed = false;
  61. m_display = NULL;
  62. m_visual = NULL;
  63. m_screen = NULL;
  64. m_good = false;
  65. m_mousex = -1;
  66. m_mousey = -1;
  67. m_hoverWindow = None;
  68. }
  69. slop::XEngine::~XEngine() {
  70. if ( !m_good ) {
  71. return;
  72. }
  73. for ( unsigned int i=0; i<m_cursors.size(); i++ ) {
  74. if ( m_cursors.at( i ) ) {
  75. XFreeCursor( m_display, m_cursors[i] );
  76. }
  77. }
  78. XCloseDisplay( m_display );
  79. }
  80. bool slop::XEngine::mouseDown( unsigned int button ) {
  81. if ( button >= m_mouse.size() ) {
  82. return false;
  83. }
  84. return m_mouse.at( button );
  85. }
  86. int slop::XEngine::init( std::string display ) {
  87. // Initialize display
  88. m_display = XOpenDisplay( display.c_str() );
  89. if ( !m_display ) {
  90. fprintf( stderr, "Error: Failed to open X display %s\n", display.c_str() );
  91. return EXIT_FAILURE;
  92. }
  93. m_screen = ScreenOfDisplay( m_display, DefaultScreen( m_display ) );
  94. m_visual = DefaultVisual ( m_display, XScreenNumberOfScreen( m_screen ) );
  95. m_colormap = DefaultColormap( m_display, XScreenNumberOfScreen( m_screen ) );
  96. //m_root = RootWindow ( m_display, XScreenNumberOfScreen( m_screen ) );
  97. m_root = DefaultRootWindow( m_display );
  98. #ifdef OPENGL_ENABLED
  99. m_res = XRRGetScreenResourcesCurrent( m_display, m_root);
  100. #endif // OPENGL_ENABLED
  101. m_good = true;
  102. XSetErrorHandler( slop::XEngineErrorHandler );
  103. selectAllInputs( m_root, EnterWindowMask );
  104. return EXIT_SUCCESS;
  105. }
  106. #ifdef OPENGL_ENABLED
  107. std::vector<XRRCrtcInfo*> slop::XEngine::getCRTCS() {
  108. std::vector<XRRCrtcInfo*> monitors;
  109. if ( !m_res ) {
  110. return monitors;
  111. }
  112. for ( int i=0;i<m_res->ncrtc;i++ ) {
  113. monitors.push_back( XRRGetCrtcInfo( m_display, m_res, m_res->crtcs[ i ] ) );
  114. }
  115. return monitors;
  116. }
  117. void slop::XEngine::freeCRTCS( std::vector<XRRCrtcInfo*> monitors ) {
  118. for ( unsigned int i=0;i<monitors.size();i++ ) {
  119. XRRFreeCrtcInfo( monitors[ i ] );
  120. }
  121. }
  122. #endif // OPENGL_ENABLED
  123. bool slop::XEngine::keyPressed( KeySym key ) {
  124. KeyCode keycode = XKeysymToKeycode( m_display, key );
  125. if ( keycode != 0 ) {
  126. // Get the whole keyboard state
  127. char keys[32];
  128. XQueryKeymap( m_display, keys );
  129. // Check our keycode
  130. return ( keys[ keycode / 8 ] & ( 1 << ( keycode % 8 ) ) ) != 0;
  131. } else {
  132. return false;
  133. }
  134. }
  135. bool slop::XEngine::anyKeyPressed() {
  136. if ( !m_good ) {
  137. return false;
  138. }
  139. // Thanks to SFML for some reliable key state grabbing.
  140. // Get the whole keyboard state
  141. char keys[ 32 ];
  142. XQueryKeymap( m_display, keys );
  143. // Each bit indicates a different key, 1 for pressed, 0 otherwise.
  144. // Every bit should be 0 if nothing is pressed.
  145. for ( unsigned int i = 0; i < 32; i++ ) {
  146. if ( keys[ i ] != 0 ) {
  147. return true;
  148. }
  149. }
  150. return false;
  151. }
  152. int slop::XEngine::grabKeyboard() {
  153. if ( !m_good ) {
  154. return EXIT_FAILURE;
  155. }
  156. int err = XGrabKeyboard( m_display, m_root, False, GrabModeAsync, GrabModeAsync, CurrentTime );
  157. if ( err != GrabSuccess ) {
  158. fprintf( stderr, "Warning: Failed to grab X keyboard.\n" );
  159. fprintf( stderr, " This happens when something has already grabbed your keybaord.\n" );
  160. fprintf( stderr, " slop should still run properly though.\n" );
  161. return EXIT_FAILURE;
  162. }
  163. return EXIT_SUCCESS;
  164. }
  165. int slop::XEngine::releaseKeyboard() {
  166. if ( !m_good ) {
  167. return EXIT_FAILURE;
  168. }
  169. XUngrabKeyboard( m_display, CurrentTime );
  170. return EXIT_SUCCESS;
  171. }
  172. void slop::XEngine::selectAllInputs( Window win, long event_mask) {
  173. Window root, parent;
  174. Window* children;
  175. unsigned int nchildren;
  176. XQueryTree( m_display, win, &root, &parent, &children, &nchildren );
  177. for ( unsigned int i=0;i<nchildren;i++ ) {
  178. XSelectInput( m_display, children[ i ], event_mask );
  179. selectAllInputs( children[ i ], event_mask );
  180. }
  181. free( children );
  182. }
  183. // Grabs the cursor, be wary that setCursor changes the mouse masks.
  184. // waittime is how long grabCursor can repeatedly try to grab the cursor, if it fails to grab.
  185. // This is because tiling window managers like i3 grab the mouse while holding down certain keys,
  186. // while these certain keys also launch slop.
  187. int slop::XEngine::grabCursor( slop::CursorType type, double waittime ) {
  188. if ( !m_good ) {
  189. return EXIT_FAILURE;
  190. }
  191. int xfontcursor = makeCursor( type );
  192. int err = XGrabPointer( m_display, m_root, True,
  193. PointerMotionMask | ButtonPressMask | ButtonReleaseMask | EnterWindowMask,
  194. GrabModeAsync, GrabModeAsync, None, xfontcursor, CurrentTime );
  195. double accumulationtime = 0;
  196. int timestep = 10000; // in microseconds
  197. while ( err != GrabSuccess && accumulationtime < waittime ) {
  198. err = XGrabPointer( m_display, m_root, True,
  199. PointerMotionMask | ButtonPressMask | ButtonReleaseMask | EnterWindowMask,
  200. GrabModeAsync, GrabModeAsync, None, xfontcursor, CurrentTime );
  201. usleep( timestep );
  202. accumulationtime += double( timestep/1000000.f );
  203. }
  204. if ( err != GrabSuccess ) {
  205. fprintf( stderr, "Error: Failed to grab X cursor.\n" );
  206. switch( err ) {
  207. case 1:
  208. fprintf( stderr, " The cursor is already grabbed by another application.\n" );
  209. break;
  210. case 2:
  211. fprintf( stderr, " The cursor grab was initiated at an invalid time (in the past?) .\n" );
  212. break;
  213. case 3:
  214. fprintf( stderr, " The cursor is not viewable or outside of the bounds of the root window.\n" );
  215. break;
  216. case 4:
  217. fprintf( stderr, " The grab is frozen already by an active grab by another application.\n" );
  218. break;
  219. default:
  220. break;
  221. }
  222. fprintf( stderr, " This can be caused by launching slop weirdly.\n" );
  223. return EXIT_FAILURE;
  224. }
  225. // Quickly set the mouse position so we don't have to worry about x11 generating an event.
  226. Window root, child;
  227. int mx, my;
  228. int wx, wy;
  229. unsigned int mask;
  230. XQueryPointer( m_display, m_root, &root, &child, &mx, &my, &wx, &wy, &mask );
  231. m_mousex = mx;
  232. m_mousey = my;
  233. // Get the deepest available window.
  234. Window test = child;
  235. while( test ) {
  236. child = test;
  237. XQueryPointer( m_display, child, &root, &test, &mx, &my, &wx, &wy, &mask );
  238. }
  239. m_hoverWindow = child;
  240. return EXIT_SUCCESS;
  241. }
  242. int slop::XEngine::releaseCursor() {
  243. if ( !m_good ) {
  244. return EXIT_FAILURE;
  245. }
  246. XUngrabPointer( m_display, CurrentTime );
  247. return EXIT_SUCCESS;
  248. }
  249. void slop::XEngine::tick() {
  250. if ( !m_good ) {
  251. return;
  252. }
  253. XEvent event;
  254. while ( XPending( m_display ) ) {
  255. XNextEvent( m_display, &event );
  256. switch ( event.type ) {
  257. case MotionNotify: {
  258. m_mousex = event.xmotion.x;
  259. m_mousey = event.xmotion.y;
  260. break;
  261. }
  262. case ButtonPress: {
  263. // Our pitiful mouse manager--
  264. if ( m_mouse.size() > event.xbutton.button ) {
  265. m_mouse.at( event.xbutton.button ) = true;
  266. } else {
  267. m_mouse.resize( event.xbutton.button+2, false );
  268. m_mouse.at( event.xbutton.button ) = true;
  269. }
  270. break;
  271. }
  272. case EnterNotify: {
  273. if ( event.xcrossing.subwindow != None ) {
  274. m_hoverWindow = event.xcrossing.subwindow;
  275. } else {
  276. m_hoverWindow = event.xcrossing.window;
  277. }
  278. break;
  279. }
  280. case ButtonRelease: {
  281. if ( m_mouse.size() > event.xbutton.button ) {
  282. m_mouse.at( event.xbutton.button ) = false;
  283. } else {
  284. m_mouse.resize( event.xbutton.button+2, false );
  285. m_mouse.at( event.xbutton.button ) = false;
  286. }
  287. break;
  288. }
  289. default: break;
  290. }
  291. }
  292. }
  293. // This converts an enum into a preallocated cursor, the cursor will automatically deallocate itself on ~XEngine
  294. Cursor slop::XEngine::makeCursor( slop::CursorType type ) {
  295. int xfontcursor;
  296. switch ( type ) {
  297. default:
  298. case Left: xfontcursor = XC_left_ptr; break;
  299. case Crosshair: xfontcursor = XC_crosshair; break;
  300. case Cross: xfontcursor = XC_cross; break;
  301. case UpperLeftCorner: xfontcursor = XC_ul_angle; break;
  302. case UpperRightCorner: xfontcursor = XC_ur_angle; break;
  303. case LowerLeftCorner: xfontcursor = XC_ll_angle; break;
  304. case LowerRightCorner: xfontcursor = XC_lr_angle; break;
  305. case Dot: xfontcursor = XC_dot; break;
  306. case Box: xfontcursor = 40; break;
  307. }
  308. Cursor newcursor = 0;
  309. if ( m_cursors.size() > (unsigned int)xfontcursor ) {
  310. newcursor = m_cursors.at( xfontcursor );
  311. }
  312. if ( !newcursor ) {
  313. newcursor = XCreateFontCursor( m_display, xfontcursor );
  314. m_cursors.resize( xfontcursor+2, 0 );
  315. m_cursors.at( xfontcursor ) = newcursor;
  316. }
  317. return newcursor;
  318. }
  319. slop::CursorType slop::XEngine::getCursor() {
  320. if ( m_currentCursor ) {
  321. return m_currentCursor;
  322. } else {
  323. return slop::Left;
  324. }
  325. }
  326. // 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.
  327. void slop::XEngine::setCursor( slop::CursorType type ) {
  328. if ( !m_good ) {
  329. return;
  330. }
  331. m_currentCursor = type;
  332. Cursor xfontcursor = makeCursor( type );
  333. XChangeActivePointerGrab( m_display,
  334. PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
  335. xfontcursor, CurrentTime );
  336. }
  337. void slop::WindowRectangle::applyPadding( int padding ) {
  338. if ( (int)m_width + padding*2 >= 0 ) {
  339. m_x -= padding;
  340. m_width += padding*2;
  341. }
  342. if ( (int)m_height + padding*2 >= 0 ) {
  343. m_y -= padding;
  344. m_height += padding*2;
  345. }
  346. }
  347. Window slop::WindowRectangle::getWindow() {
  348. return m_window;
  349. }
  350. void slop::WindowRectangle::applyMinMaxSize( unsigned int minimumsize, unsigned int maximumsize ) {
  351. if ( minimumsize > maximumsize && maximumsize > 0 ) {
  352. fprintf( stderr, "Error: minimumsize is greater than maximumsize.\n" );
  353. exit( 1 );
  354. }
  355. if ( m_width < minimumsize ) {
  356. int diff = minimumsize - m_width;
  357. m_width = minimumsize;
  358. m_x -= diff/2;
  359. }
  360. if ( m_height < minimumsize ) {
  361. int diff = minimumsize - m_height;
  362. m_height = minimumsize;
  363. m_y -= diff/2;
  364. }
  365. if ( maximumsize > 0 ) {
  366. if ( m_width > maximumsize ) {
  367. int diff = m_width;
  368. m_width = maximumsize;
  369. // Center in the center of the window
  370. m_x += diff/2 - maximumsize/2;
  371. }
  372. if ( m_height > maximumsize ) {
  373. int diff = m_height;
  374. m_height = maximumsize;
  375. // Center in the center of the window
  376. m_y += diff/2 - maximumsize/2;
  377. }
  378. }
  379. }
  380. void slop::WindowRectangle::setGeometry( Window win, bool decorations ) {
  381. if ( decorations ) {
  382. Window root, parent, test, junk;
  383. Window* childlist;
  384. unsigned int ujunk;
  385. // Try to find the actual decorations.
  386. test = win;
  387. int status = XQueryTree( xengine->m_display, test, &root, &parent, &childlist, &ujunk);
  388. free( childlist );
  389. while( parent != root ) {
  390. if ( !parent || !status ) {
  391. break;
  392. }
  393. test = parent;
  394. status = XQueryTree( xengine->m_display, test, &root, &parent, &childlist, &ujunk);
  395. free( childlist );
  396. }
  397. // test contains the window we're screenshotting.
  398. m_window = test;
  399. // Once found, proceed normally.
  400. if ( test && parent == root && status ) {
  401. XWindowAttributes attr;
  402. XGetWindowAttributes( xengine->m_display, test, &attr );
  403. m_width = attr.width;
  404. m_height = attr.height;
  405. m_border = attr.border_width;
  406. XTranslateCoordinates( xengine->m_display, test, attr.root, -attr.border_width, -attr.border_width, &(m_x), &(m_y), &junk );
  407. // We make sure we include borders, since we want decorations.
  408. m_width += m_border * 2;
  409. m_height += m_border * 2;
  410. }
  411. return;
  412. }
  413. Window junk;
  414. // Now here we should be able to just use whatever we get.
  415. XWindowAttributes attr;
  416. // We use XGetWindowAttributes to know our root window.
  417. XGetWindowAttributes( xengine->m_display, win, &attr );
  418. //m_x = attr.x;
  419. //m_y = attr.y;
  420. m_width = attr.width;
  421. m_height = attr.height;
  422. m_border = attr.border_width;
  423. XTranslateCoordinates( xengine->m_display, win, attr.root, -attr.border_width, -attr.border_width, &(m_x), &(m_y), &junk );
  424. m_window = win;
  425. }