diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
| commit | f1ddc12b68b4e4c8087962de25260470e6df2bea (patch) | |
| tree | 7d0440a6402a9b0ef75ded23fa64b68534255bba /src/widget/widget_statusbar.h | |
| parent | 6025860a61386bf767b29c3ec5fd0d31285f1056 (diff) | |
Add tuxanci2 files
Diffstat (limited to 'src/widget/widget_statusbar.h')
| -rw-r--r-- | src/widget/widget_statusbar.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/widget/widget_statusbar.h b/src/widget/widget_statusbar.h deleted file mode 100644 index 217c1a5..0000000 --- a/src/widget/widget_statusbar.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef WIDGET_STATUSBAR_H -#define WIDGET_STATUSBAR_H - -#include "main.h" -#include "widget.h" -#include "list.h" - -typedef struct widget_statusbar { - list_t *listElement; - int selectElement; -} widget_statusbar_t; - -#define WIDGET_STATUSBAR_NONE_SELECT_ELEMENT -1 - -#define WIDGET_STATUSBAR_WIDTH 250 -#define WIDGET_STATUSBAR_HEIGHT 65 - -extern widget_t *statusbar_new(int x, int y); -extern void statusbar_add(widget_t *widget, widget_t *widget_catch, char *text); -extern void statusbar_draw(widget_t *widget); -extern void statusbar_event(widget_t *widget); -extern void statusbar_destroy(widget_t *widget); - -#endif /* WIDGET_STATUSBAR_H */ |