mirror of https://github.com/fairyglade/ly.git
always submit password on enter
Moves the keypress logic for keypresses from if-else statements to switches, adds non-contextual behavior on pressing enter
This commit is contained in:
parent
80a0599a9c
commit
b558473512
|
|
@ -263,7 +263,7 @@ void config_defaults()
|
||||||
config.blank_box = true;
|
config.blank_box = true;
|
||||||
config.blank_password = false;
|
config.blank_password = false;
|
||||||
config.console_dev = strdup("/dev/console");
|
config.console_dev = strdup("/dev/console");
|
||||||
config.default_input = 2;
|
config.default_input = PASSWORD_INPUT;
|
||||||
config.fg = 9;
|
config.fg = 9;
|
||||||
config.hide_borders = false;
|
config.hide_borders = false;
|
||||||
config.input_len = 34;
|
config.input_len = 34;
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,12 @@
|
||||||
|
|
||||||
#include "ctypes.h"
|
#include "ctypes.h"
|
||||||
|
|
||||||
|
enum INPUTS {
|
||||||
|
SESSION_SWITCH,
|
||||||
|
LOGIN_INPUT,
|
||||||
|
PASSWORD_INPUT,
|
||||||
|
};
|
||||||
|
|
||||||
struct lang
|
struct lang
|
||||||
{
|
{
|
||||||
char* capslock;
|
char* capslock;
|
||||||
|
|
|
||||||
44
src/main.c
44
src/main.c
|
|
@ -196,45 +196,43 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
if (event.type == TB_EVENT_KEY)
|
if (event.type == TB_EVENT_KEY)
|
||||||
{
|
{
|
||||||
if (event.key == TB_KEY_F1)
|
switch (event.key)
|
||||||
{
|
{
|
||||||
|
case TB_KEY_F1:
|
||||||
shutdown = true;
|
shutdown = true;
|
||||||
|
run = false;
|
||||||
break;
|
break;
|
||||||
}
|
case TB_KEY_F2:
|
||||||
else if (event.key == TB_KEY_F2)
|
|
||||||
{
|
|
||||||
reboot = true;
|
reboot = true;
|
||||||
|
run = false;
|
||||||
break;
|
break;
|
||||||
}
|
case TB_KEY_CTRL_C:
|
||||||
else if (event.key == TB_KEY_CTRL_C)
|
run = false;
|
||||||
{
|
|
||||||
break;
|
break;
|
||||||
}
|
case TB_KEY_ARROW_UP:
|
||||||
else if ((event.key == TB_KEY_ARROW_UP) && (active_input > 0))
|
if (active_input > 0)
|
||||||
{
|
{
|
||||||
--active_input;
|
--active_input;
|
||||||
update = true;
|
update = true;
|
||||||
}
|
}
|
||||||
else if (((event.key == TB_KEY_ARROW_DOWN)
|
break;
|
||||||
|| (event.key == TB_KEY_ENTER))
|
case TB_KEY_ARROW_DOWN:
|
||||||
&& (active_input < 2))
|
if (active_input < 2)
|
||||||
{
|
{
|
||||||
++active_input;
|
++active_input;
|
||||||
update = true;
|
update = true;
|
||||||
}
|
}
|
||||||
else if (event.key == TB_KEY_TAB)
|
break;
|
||||||
{
|
case TB_KEY_TAB:
|
||||||
++active_input;
|
++active_input;
|
||||||
|
|
||||||
if (active_input > 2)
|
if (active_input > 2)
|
||||||
{
|
{
|
||||||
active_input = 0;
|
active_input = PASSWORD_INPUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
update = true;
|
update = true;
|
||||||
}
|
break;
|
||||||
else if (event.key == TB_KEY_ENTER)
|
case TB_KEY_ENTER:
|
||||||
{
|
|
||||||
save(&desktop, &login);
|
save(&desktop, &login);
|
||||||
auth(&desktop, &login, &password, &buf);
|
auth(&desktop, &login, &password, &buf);
|
||||||
update = true;
|
update = true;
|
||||||
|
|
@ -242,6 +240,8 @@ int main(int argc, char** argv)
|
||||||
if (dgn_catch())
|
if (dgn_catch())
|
||||||
{
|
{
|
||||||
++auth_fails;
|
++auth_fails;
|
||||||
|
// move focus back to password input
|
||||||
|
active_input = PASSWORD_INPUT;
|
||||||
|
|
||||||
if (dgn_output_code() != DGN_PAM)
|
if (dgn_output_code() != DGN_PAM)
|
||||||
{
|
{
|
||||||
|
|
@ -256,13 +256,13 @@ int main(int argc, char** argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
load(&desktop, &login);
|
load(&desktop, &login);
|
||||||
}
|
break;
|
||||||
else
|
default:
|
||||||
{
|
|
||||||
(*input_handles[active_input])(
|
(*input_handles[active_input])(
|
||||||
input_structs[active_input],
|
input_structs[active_input],
|
||||||
&event);
|
&event);
|
||||||
update = true;
|
update = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue