aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-11-04 03:28:28 +0300
committerJoursoir <chat@joursoir.net>2021-11-04 03:28:28 +0300
commit2498e52020252a6f915c6c5242509fe06e6b02e8 (patch)
treef508be0629e2a6617e772449e6caba4ca4f435b3
parent854718a302d46a588bd2aa1a62664569b6f41553 (diff)
downloadufm-2498e52020252a6f915c6c5242509fe06e6b02e8.tar.gz
ufm-2498e52020252a6f915c6c5242509fe06e6b02e8.tar.bz2
ufm-2498e52020252a6f915c6c5242509fe06e6b02e8.zip
implement the menu bar
-rw-r--r--src/menu-bar.c25
-rw-r--r--src/menu-bar.h17
2 files changed, 42 insertions, 0 deletions
diff --git a/src/menu-bar.c b/src/menu-bar.c
new file mode 100644
index 0000000..db7af38
--- /dev/null
+++ b/src/menu-bar.c
@@ -0,0 +1,25 @@
+#include <Library/DebugLib.h>
+
+#include "lib/tbi/screen.h"
+#include "lib/tbi/win.h"
+#include "menu-bar.h"
+
+struct window *menubar = NULL;
+
+BOOLEAN init_menubar(struct screen *scr)
+{
+ menubar = newwin(scr, scr->columns, 1, 0, 0);
+ if(!menubar)
+ return FALSE;
+
+ wrefresh(menubar);
+ return TRUE;
+}
+
+VOID free_menubar(VOID)
+{
+ ASSERT(menubar != NULL);
+
+ delwin(menubar);
+ menubar = NULL;
+}
diff --git a/src/menu-bar.h b/src/menu-bar.h
new file mode 100644
index 0000000..9012f9f
--- /dev/null
+++ b/src/menu-bar.h
@@ -0,0 +1,17 @@
+#ifndef UFM_MENU_BAR_H
+#define UFM_MENU_BAR_H
+
+/*
+ * Menu bar:
+ * Located on the first line, occupies its entire length.
+ * At the moment, nothing is planned here, a reserve for the future
+*/
+
+#include <Uefi.h>
+
+struct screen;
+
+BOOLEAN init_menubar(struct screen *scr);
+VOID free_menubar(VOID);
+
+#endif /* UFM_MENU_BAR_H */