btui/C/test.c

80 lines
2.3 KiB
C
Raw Permalink Normal View History

2020-04-25 21:51:25 -07:00
/*
* This file contains a basic example of BTUI C API usage.
*/
2020-04-18 15:09:33 -07:00
#include <stdio.h>
#include "btui.h"
int main(void)
{
btui_t *bt = btui_create(BTUI_MODE_TUI);
2020-04-18 16:03:53 -07:00
if (!bt) return 1;
2020-04-18 15:09:33 -07:00
int done = 0;
2020-04-19 01:34:22 -07:00
int x = 1, y = 1;
2020-04-18 15:09:33 -07:00
while (!done) {
2020-04-18 21:39:33 -07:00
const char *title = "BTUI C Demo";
2020-04-19 01:34:22 -07:00
int w = (int)strlen(title);
int center = (bt->width - w) / 2;
2020-04-20 13:53:33 -07:00
btui_set_attributes(bt, BTUI_FG_BLUE | BTUI_BG_NORMAL);
2020-04-19 01:34:22 -07:00
btui_draw_shadow(bt, center-2, 0, w+4, 3);
2020-04-20 13:53:33 -07:00
btui_set_attributes(bt, BTUI_BG_BLUE | BTUI_FG_BLACK);
btui_fill_box(bt, center-2, 0, w+4, 3);
2020-04-19 01:34:22 -07:00
btui_move_cursor(bt, center, 1);
2020-04-18 21:39:33 -07:00
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_BOLD);
btui_move_cursor(bt, 0, bt->height-2);
btui_printf(bt, "Press 'q' to quit");
btui_set_attributes(bt, BTUI_NORMAL);
btui_set_attributes(bt, BTUI_FAINT);
2020-04-19 01:34:22 -07:00
btui_move_cursor(bt, bt->width-16, bt->height-2);
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);
2020-04-19 16:30:35 -07:00
btui_clear(bt, BTUI_CLEAR_SCREEN);
2020-04-18 15:09:33 -07:00
switch (key) {
case 'q': case KEY_CTRL_C: done = 1; break;
2020-04-19 00:31:42 -07:00
case KEY_CTRL_Z:
btui_suspend(bt);
break;
2020-04-18 15:09:33 -07:00
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) {
2020-04-19 01:34:22 -07:00
x = mouse_x - 15;
y = mouse_y;
}
2020-04-18 15:09:33 -07:00
char buf[256] = {0};
btui_keyname(key, buf);
2020-04-19 01:34:22 -07:00
btui_set_fg_hex(bt, 0xacff40);
btui_draw_linebox(bt, x, y, 30, 1);
btui_move_cursor(bt, x, y);
2020-04-19 01:34:22 -07:00
btui_set_fg_hex(bt, 0xacff40);
2020-04-18 21:39:33 -07:00
btui_printf(bt, " Pressed: %s ", buf);
2020-04-19 01:34:22 -07:00
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;
}