summaryrefslogtreecommitdiffstats
path: root/src/ui/status.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/status.vala')
-rw-r--r--src/ui/status.vala24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ui/status.vala b/src/ui/status.vala
deleted file mode 100644
index db33820..0000000
--- a/src/ui/status.vala
+++ /dev/null
@@ -1,24 +0,0 @@
-using Curses;
-
-public class StatusPanel {
- Window win;
-
- public StatusPanel() {
- win = new Window(1, COLS - 2, LINES-1, 1);
- win.bkgdset(COLOR_PAIR(2) | Attribute.BOLD);
-
- win.clrtobot();
- win.refresh();
- }
-
- public void set(string msg) {
- win.mvaddstr(0,1, msg);
- win.clrtobot();
- win.refresh();
- }
-
- public void redraw() {
- win.touchwin();
- win.refresh();
- }
-}