diff options
Diffstat (limited to 'src/ui.h')
| -rw-r--r-- | src/ui.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ui.h b/src/ui.h new file mode 100644 index 0000000..3d84aaf --- /dev/null +++ b/src/ui.h @@ -0,0 +1,24 @@ +#ifndef UI_H +#define UI_H + +#include <gtk/gtk.h> +#include "config.h" + + +typedef struct UI_ { + GtkWindow **background_windows; + int monitor_count; + GtkWindow *main_window; + GtkGrid *layout_container; + GtkGrid *info_container; + GtkWidget *sys_info_label; + GtkWidget *time_label; + GtkWidget *password_label; + GtkWidget *password_input; + GtkWidget *feedback_label; +} UI; + + +UI *initialize_ui(Config *config); + +#endif |
