2012-01-03 15:56:05 -05:00
|
|
|
#ifndef _UNLOCK_INDICATOR_H
|
|
|
|
#define _UNLOCK_INDICATOR_H
|
|
|
|
|
2020-07-05 03:05:16 -04:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2012-01-03 15:56:05 -05:00
|
|
|
typedef enum {
|
2018-01-14 16:17:43 -05:00
|
|
|
STATE_STARTED = 0, /* default state */
|
|
|
|
STATE_KEY_PRESSED = 1, /* key was pressed, show unlock indicator */
|
|
|
|
STATE_KEY_ACTIVE = 2, /* a key was pressed recently, highlight part
|
2012-01-03 15:56:05 -05:00
|
|
|
of the unlock indicator. */
|
2018-01-14 16:17:43 -05:00
|
|
|
STATE_BACKSPACE_ACTIVE = 3, /* backspace was pressed recently, highlight
|
2012-01-03 15:56:05 -05:00
|
|
|
part of the unlock indicator in red. */
|
2018-01-14 16:17:43 -05:00
|
|
|
STATE_NOTHING_TO_DELETE = 4, /* backspace was pressed, but there is nothing to delete. */
|
2012-01-03 15:56:05 -05:00
|
|
|
} unlock_state_t;
|
|
|
|
|
|
|
|
typedef enum {
|
2018-01-14 16:17:43 -05:00
|
|
|
STATE_AUTH_IDLE = 0, /* no authenticator interaction at the moment */
|
|
|
|
STATE_AUTH_VERIFY = 1, /* currently verifying the password via authenticator */
|
|
|
|
STATE_AUTH_LOCK = 2, /* currently locking the screen */
|
|
|
|
STATE_AUTH_WRONG = 3, /* the password was wrong */
|
|
|
|
STATE_I3LOCK_LOCK_FAILED = 4, /* i3lock failed to load */
|
2017-04-15 03:39:13 -04:00
|
|
|
} auth_state_t;
|
2012-01-03 15:56:05 -05:00
|
|
|
|
2020-07-05 03:05:16 -04:00
|
|
|
void free_bg_pixmap(void);
|
|
|
|
void draw_image(xcb_pixmap_t bg_pixmap, uint32_t* resolution);
|
2012-04-01 06:28:28 -04:00
|
|
|
void redraw_screen(void);
|
2014-03-06 15:22:02 -05:00
|
|
|
void clear_indicator(void);
|
2012-01-03 15:56:05 -05:00
|
|
|
|
|
|
|
#endif
|