summaryrefslogtreecommitdiff
path: root/src/widget/widget_label.h
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
commitf1ddc12b68b4e4c8087962de25260470e6df2bea (patch)
tree7d0440a6402a9b0ef75ded23fa64b68534255bba /src/widget/widget_label.h
parent6025860a61386bf767b29c3ec5fd0d31285f1056 (diff)
Add tuxanci2 files
Diffstat (limited to 'src/widget/widget_label.h')
-rw-r--r--src/widget/widget_label.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/widget/widget_label.h b/src/widget/widget_label.h
deleted file mode 100644
index bd1b531..0000000
--- a/src/widget/widget_label.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef WIDGET_LABEL_H
-#define WIDGET_LABEL_H
-
-#include "main.h"
-#include "widget.h"
-
-#define WIDGET_LABEL_RIGHT 1
-#define WIDGET_LABEL_LEFT 2
-#define WIDGET_LABEL_CENTER 3
-
-typedef struct widget_label {
- int w, h;
- char *text;
- int bind;
-} widget_label_t;
-
-extern widget_t *label_new(char *text, int x, int y, int bind);
-extern void label_draw(widget_t *widget);
-extern void label_event(widget_t *widget);
-extern void label_destroy(widget_t *widget);
-
-#endif /* WIDGET_LABEL_H */