aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.h
diff options
context:
space:
mode:
authorSpacedio <spacedio@thernusen.net>2026-02-26 19:20:14 -0500
committerSpacedio <spacedio@thernusen.net>2026-02-26 19:20:14 -0500
commitdb657412e6ae93341ed42d59df6aef564a739a1f (patch)
tree6f67f55f6dc61fb0afa8829a950f0dbf1a0aeadf /src/ui.h
downloadlightdm-mini-greeter-db657412e6ae93341ed42d59df6aef564a739a1f.tar.gz
Initial commit after cloneHEADmaster
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h24
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