btui/test.c

35 lines
940 B
C

#include <stdio.h>
#include "btui.h"
int main(void)
{
btui_t *bt = btui_enable();
if (!bt) return 1;
int done = 0;
int x = 0, y = 0;
int i = 0;
while (!done) {
btui_move_cursor(bt, 0, bt->height-1);
fprintf(bt->out, "Update %d, size = %dx%d", i++, bt->width, bt->height);
fflush(bt->out);
int key = btui_getkey(bt, NULL, NULL);
switch (key) {
case 'q': case KEY_CTRL_C: done = 1; break;
case -1: break;
default: {
char buf[256] = {0};
btui_keyname(key, buf);
btui_move_cursor(bt, x, y++);
btui_set_attributes(bt, BTUI_FG_YELLOW | BTUI_BOLD);
fprintf(bt->out, "Pressed: %s", buf);
btui_set_attributes(bt, BTUI_NORMAL);
fflush(bt->out);
break;
}
}
}
btui_disable(bt);
return 0;
}