From a9ecf1e0c9063594ff9c4a782b4181788e4374a8 Mon Sep 17 00:00:00 2001 From: Alexandre Boeglin Date: Wed, 11 Feb 2015 20:52:07 +0100 Subject: Add capslock and numlock indicators 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 --- unlock_indicator.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'unlock_indicator.c') diff --git a/unlock_indicator.c b/unlock_indicator.c index f1cdfb4..8834f00 100644 --- a/unlock_indicator.c +++ b/unlock_indicator.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -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. */ -- cgit v1.1 From b4f6dae10e82aa95e5e8ae84a07520d3fec0057e Mon Sep 17 00:00:00 2001 From: Deiz Date: Thu, 26 Mar 2015 03:06:18 -0400 Subject: List generic pressed modifiers on failure --- unlock_indicator.c | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) (limited to 'unlock_indicator.c') diff --git a/unlock_indicator.c b/unlock_indicator.c index 8834f00..c2eeafd 100644 --- a/unlock_indicator.c +++ b/unlock_indicator.c @@ -45,9 +45,8 @@ 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; +/* List of pressed modifiers, or NULL if none are pressed. */ +extern char *modifier_string; /* A Cairo surface containing the specified image (-i), if any. */ extern cairo_surface_t *img; @@ -234,27 +233,19 @@ xcb_pixmap_t draw_image(uint32_t *resolution) { cairo_close_path(ctx); } - if (pam_state == STATE_PAM_WRONG && (capslock_active || numlock_active)) { + if (pam_state == STATE_PAM_WRONG && (modifier_string != NULL)) { 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_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); + cairo_text_extents(ctx, modifier_string, &extents); + x = BUTTON_CENTER - ((extents.width / 2) + extents.x_bearing); + y = BUTTON_CENTER - ((extents.height / 2) + extents.y_bearing) + 28.0; - free(lock_text); - } + cairo_move_to(ctx, x, y); + cairo_show_text(ctx, modifier_string); + cairo_close_path(ctx); } /* After the user pressed any valid key or the backspace key, we -- cgit v1.1