diff options
Diffstat (limited to 'src/callbacks.h')
| -rw-r--r-- | src/callbacks.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/callbacks.h b/src/callbacks.h new file mode 100644 index 0000000..2b18a54 --- /dev/null +++ b/src/callbacks.h @@ -0,0 +1,15 @@ +#ifndef CALLBACKS_H +#define CALLBACKS_H + +#include <lightdm.h> + +#include "app.h" + + +void authentication_complete_cb(LightDMGreeter *greeter, App *app); +void handle_password(GtkWidget *password_input, App *app); +gboolean handle_tab_key(GtkWidget *widget, GdkEvent *event, App *app); +gboolean handle_hotkeys(GtkWidget *widget, GdkEventKey *event, App *app); +gboolean handle_time_update(App *app); + +#endif |
