diff options
author | louie <lshprung@tutanota.com> | 2023-07-07 15:03:52 -0700 |
---|---|---|
committer | louie <lshprung@tutanota.com> | 2023-07-08 17:28:21 -0700 |
commit | 15b92cd8b26116a5c59fab1490f50b33a5cdf01c (patch) | |
tree | b7ab60c0601e2dda33ef915c0919c431c355f664 /src/tui_text.h | |
parent | 2d4457781f7262bef67d6681767db9393ce35b6d (diff) |
Create tui_text structure
Diffstat (limited to 'src/tui_text.h')
-rw-r--r-- | src/tui_text.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tui_text.h b/src/tui_text.h new file mode 100644 index 0000000..6edc9e6 --- /dev/null +++ b/src/tui_text.h @@ -0,0 +1,28 @@ +#ifndef TUI_TEXT_H +#define TUI_TEXT_H + +enum tui_text_type { ENTRY, GROUP }; + +typedef struct tui_text { + // location of beginning of text in window + int start_x; + int start_y; + + // relevant data + enum tui_text_type type; + void *data; // should be either Entry * or Group * +} Tui_text; + +// getters +int tui_text_get_x(Tui_text *t); +int tui_text_get_y(Tui_text *t); +enum tui_text_type tui_text_get_type(Tui_text *t); +void *tui_text_get_data(Tui_text *t); + +// setters +void tui_text_set_x(Tui_text *t, int start_x); +void tui_text_set_y(Tui_text *t, int start_y); +void tui_text_set_type(Tui_text *t, enum tui_text_type type); +void tui_text_set_data(Tui_text *t, void *data); + +#endif |