blob: 2b18a543b8c033c96900ad6a646bc088f80431f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|