]> git.sur5r.net Git - i3/i3lock/commitdiff
Add capslock and numlock indicators
authorAlexandre Boeglin <alex@boeglin.org>
Wed, 11 Feb 2015 19:52:07 +0000 (20:52 +0100)
committerDeiz <silverwraithii@gmail.com>
Sat, 28 Mar 2015 18:50:05 +0000 (14:50 -0400)
When the unlock indicator warns the user that a password was typed
wrong, it now also reports the state of the capslock and numlock
modifiers.

Signed-off-by: Alexandre Boeglin <alex@boeglin.org>
i3lock.c
unlock_indicator.c

index d971f0d2432486c6b289a0041c670444d68c1468..4c52e303455870a792a92e7ce05436e8d39eb72c 100644 (file)
--- a/i3lock.c
+++ b/i3lock.c
@@ -59,6 +59,8 @@ static bool beep = false;
 bool debug_mode = false;
 static bool dpms = false;
 bool unlock_indicator = true;
+bool capslock_active = false;
+bool numlock_active = false;
 static bool dont_fork = false;
 struct ev_loop *main_loop;
 static struct ev_timer *clear_pam_wrong_timeout;
@@ -277,6 +279,11 @@ static void input_done(void) {
     if (debug_mode)
         fprintf(stderr, "Authentication failure\n");
 
+    /* Get state of Caps and Num lock modifiers, to be displayed in
+     * STATE_PAM_WRONG state */
+    capslock_active = xkb_state_mod_name_is_active(xkb_state, XKB_MOD_NAME_CAPS, XKB_STATE_MODS_EFFECTIVE);
+    numlock_active = xkb_state_mod_name_is_active(xkb_state, XKB_MOD_NAME_NUM, XKB_STATE_MODS_EFFECTIVE);
+
     pam_state = STATE_PAM_WRONG;
     failed_attempts += 1;
     clear_input();
@@ -327,7 +334,7 @@ static void handle_key_press(xcb_key_press_event_t *event) {
     bool composed = false;
 
     ksym = xkb_state_key_get_one_sym(xkb_state, event->detail);
-    ctrl = xkb_state_mod_name_is_active(xkb_state, "Control", XKB_STATE_MODS_DEPRESSED);
+    ctrl = xkb_state_mod_name_is_active(xkb_state, XKB_MOD_NAME_CTRL, XKB_STATE_MODS_DEPRESSED);
 
     /* The buffer will be null-terminated, so n >= 2 for 1 actual character. */
     memset(buffer, '\0', sizeof(buffer));
index f1cdfb481f46405f6f2e05e01603eb7ab24051ce..8834f0012d58906eae8b3937de9161ac956e1f41 100644 (file)
@@ -9,6 +9,7 @@
 #include <stdbool.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include <string.h>
 #include <math.h>
 #include <xcb/xcb.h>
 #include <ev.h>
@@ -44,6 +45,10 @@ extern uint32_t last_resolution[2];
 /* Whether the unlock indicator is enabled (defaults to true). */
 extern bool unlock_indicator;
 
+/* Whether the capslock and numlock mods are active or not. */
+extern bool capslock_active;
+extern bool numlock_active;
+
 /* A Cairo surface containing the specified image (-i), if any. */
 extern cairo_surface_t *img;
 
@@ -229,6 +234,29 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
             cairo_close_path(ctx);
         }
 
+        if (pam_state == STATE_PAM_WRONG && (capslock_active || numlock_active)) {
+            cairo_text_extents_t extents;
+            double x, y;
+            char *lock_text = NULL;
+
+            if (asprintf(&lock_text, "%s%s%s locked",
+                        capslock_active ? "Caps" : "",
+                        capslock_active && numlock_active ? ", " : "",
+                        numlock_active ? "Num" : "") != -1) {
+                cairo_set_font_size(ctx, 14.0);
+
+                cairo_text_extents(ctx, lock_text, &extents);
+                x = BUTTON_CENTER - ((extents.width / 2) + extents.x_bearing);
+                y = BUTTON_CENTER - ((extents.height / 2) + extents.y_bearing) + 28.0;
+
+                cairo_move_to(ctx, x, y);
+                cairo_show_text(ctx, lock_text);
+                cairo_close_path(ctx);
+
+                free(lock_text);
+            }
+        }
+
         /* After the user pressed any valid key or the backspace key, we
          * highlight a random part of the unlock indicator to confirm this
          * keypress. */