]> git.sur5r.net Git - i3/i3/blobdiff - src/sighandler.c
ipc: add active flag
[i3/i3] / src / sighandler.c
index 8bfec4933d450c0b8f37cad371f7ef56b9f9ce1c..590608b63636fd3a139743664e47673c2314f12b 100644 (file)
@@ -31,7 +31,7 @@
 #include "xcb.h"
 #include "log.h"
 #include "config.h"
-#include "xinerama.h"
+#include "randr.h"
 
 static xcb_gcontext_t pixmap_gc;
 static xcb_pixmap_t pixmap;
@@ -78,7 +78,6 @@ static int sig_draw_window(xcb_connection_t *conn, xcb_window_t win, int width,
         return 1;
 }
 
-
 /*
  * Handles keypresses of 'e' or 'r' to exit or restart i3
  *
@@ -116,8 +115,8 @@ static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect,
         values[1] = 1;
 
         /* center each popup on the specified screen */
-        uint32_t x = screen_rect.x + ((screen_rect.width / 2) - (width/2)),
-                 y = screen_rect.y + ((screen_rect.height / 2) - (height/2));
+        uint32_t x = screen_rect.x + ((screen_rect.width / 2) - (width / 2)),
+                 y = screen_rect.y + ((screen_rect.height / 2) - (height / 2));
 
         xcb_create_window(conn,
                         XCB_COPY_FROM_PARENT,
@@ -171,9 +170,11 @@ void handle_signal(int sig, siginfo_t *info, void *data) {
         int width = font_width + 20;
 
         /* Open a popup window on each virtual screen */
-        i3Screen *screen;
+        Output *screen;
         xcb_window_t win;
-        TAILQ_FOREACH(screen, virtual_screens, screens) {
+        TAILQ_FOREACH(screen, &outputs, outputs) {
+                if (!screen->active)
+                        continue;
                 win = open_input_window(conn, screen->rect, width, height);
 
                 /* Create pixmap */
@@ -188,6 +189,10 @@ void handle_signal(int sig, siginfo_t *info, void *data) {
                 /* Grab the keyboard to get all input */
                 xcb_grab_keyboard(conn, false, win, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC);
 
+                /* Grab the cursor inside the popup */
+                xcb_grab_pointer(conn, false, win, XCB_NONE, XCB_GRAB_MODE_ASYNC,
+                                 XCB_GRAB_MODE_ASYNC, win, XCB_NONE, XCB_CURRENT_TIME);
+
                 sig_draw_window(conn, win, width, height, font->height);
                 xcb_flush(conn);
         }
@@ -205,6 +210,8 @@ void setup_signal_handler() {
         action.sa_sigaction = handle_signal;
         action.sa_flags = SA_NODEFER | SA_RESETHAND | SA_SIGINFO;
         sigemptyset(&action.sa_mask);
-        sigaction(SIGSEGV, &action, NULL);
-        sigaction(SIGFPE, &action, NULL);
+
+        if (sigaction(SIGSEGV, &action, NULL) == -1 ||
+            sigaction(SIGFPE, &action, NULL) == -1)
+                ELOG("Could not setup signal handler");
 }