btui/C/test.c

55 lines
1.7 KiB
C
Raw Normal View History

2020-04-18 15:09:33 -07:00
#include <stdio.h>
#include "btui.h"
int main(void)
{
2020-04-18 16:03:53 -07:00
btui_t *bt = btui_enable();
if (!bt) return 1;
2020-04-18 15:09:33 -07:00
int done = 0;
int x = 0, y = 0;
while (!done) {
2020-04-18 21:39:33 -07:00
const char *title = "BTUI C Demo";
2020-04-18 22:15:30 -07:00
btui_set_attributes(bt, BTUI_FG_BLUE | BTUI_BOLD | BTUI_UNDERLINE);
2020-04-18 21:39:33 -07:00
btui_move_cursor(bt, (bt->width - (int)strlen(title)) / 2, 0);
btui_printf(bt, "%s", title);
2020-04-18 22:15:30 -07:00
btui_set_attributes(bt, BTUI_NORMAL);
2020-04-18 21:39:33 -07:00
btui_set_attributes(bt, BTUI_FG_NORMAL | BTUI_FAINT);
2020-04-18 16:03:53 -07:00
btui_move_cursor(bt, 0, bt->height-1);
2020-04-18 21:39:33 -07:00
btui_printf(bt, "Size = %dx%d", bt->width, bt->height);
btui_set_attributes(bt, BTUI_NORMAL);
btui_flush(bt);
2020-04-18 15:09:33 -07:00
int mouse_x = -1, mouse_y = -1;
2020-04-18 22:59:59 -07:00
int key = btui_getkey(bt, -1, &mouse_x, &mouse_y);
btui_clear_screen(bt);
2020-04-18 15:09:33 -07:00
switch (key) {
case 'q': case KEY_CTRL_C: done = 1; break;
case -1: break;
case KEY_ARROW_DOWN:
btui_scroll(bt, 1, bt->height-1, +1);
break;
case KEY_ARROW_UP:
btui_scroll(bt, 1, bt->height-1, -1);
break;
2020-04-18 15:09:33 -07:00
default: {
if (mouse_x != -1) {
x = mouse_x;
y = mouse_y;
}
2020-04-18 15:09:33 -07:00
char buf[256] = {0};
btui_keyname(key, buf);
btui_move_cursor(bt, x, y);
2020-04-18 21:39:33 -07:00
btui_set_bg_hex(bt, 0xacff40);
btui_set_attributes(bt, BTUI_FG_BLACK);
btui_printf(bt, " Pressed: %s ", buf);
2020-04-18 16:03:53 -07:00
btui_set_attributes(bt, BTUI_NORMAL);
fflush(bt->out);
2020-04-18 15:09:33 -07:00
break;
}
}
}
2020-04-18 16:03:53 -07:00
btui_disable(bt);
2020-04-18 15:09:33 -07:00
return 0;
}