28#define ALLEGRO_UNSTABLE 1
44 while ((opt = getopt(argc, argv,
"V:")) != -1) {
47 if (!strcmp(
"LOG_NULL", optarg))
49 else if (!strcmp(
"LOG_NOTICE", optarg))
51 else if (!strcmp(
"LOG_INFO", optarg))
53 else if (!strcmp(
"LOG_ERR", optarg))
55 else if (!strcmp(
"LOG_DEBUG", optarg))
74static void expect_streq(
const char* label,
const char* got,
const char* want) {
75 if (!got || strcmp(got, want) != 0) {
76 n_log(
LOG_ERR,
"%s: got '%s', expected '%s'", label, got ? got :
"(null)", want);
94static void on_ctx(
int widget_id,
int row,
int x,
int y,
void* user_data) {
103int main(
int argc,
char** argv) {
106 fprintf(stderr,
"Usage: %s [-V LOG_LEVEL]\n", argv[0]);
111 if (!al_init() || !al_init_font_addon()) {
115 ALLEGRO_FONT* font = al_create_builtin_font();
123 al_destroy_font(font);
142 const char* r0[] = {
"3",
"GET",
"200"};
143 const char* r1[] = {
"1",
"POST",
"404"};
144 const char* r2[] = {
"2",
"GET",
"500"};
180 int cy = (int)(row_h * 2.5f);
182 memset(&ev, 0,
sizeof(ev));
183 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_DOWN;
195 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_DOWN;
198 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_UP;
219 expect_true(
"multiselect: indices are 0 and 2, ascending", k == 2 && sel[0] == 0 && sel[1] == 2);
224 memset(&ev, 0,
sizeof(ev));
225 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_DOWN;
227 ev.mouse.y = (int)(row_h * 1.5f);
230 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_UP;
249 const char* r0[] = {
"3",
"GET",
"200"};
250 const char* r1[] = {
"1",
"POST",
"404"};
251 const char* r2[] = {
"2",
"GET",
"500"};
277 const char* r3[] = {
"9",
"PUT",
"301"};
302 for (i = 0; i < 40; i++) {
303 char a[16], b[16], c[16];
305 snprintf(a,
sizeof(a),
"%d", i);
306 snprintf(b,
sizeof(b),
"M%d", i);
307 snprintf(c,
sizeof(c),
"%d", 200 + i);
319 for (i = 0; i < 40; i++) {
322 snprintf(a,
sizeof(a),
"%d", i);
348 const char* r[3] = {
"1",
"M",
"200"};
368 for (i = 0; i < 25; i++) {
369 char a[16], b[16], c[16];
371 snprintf(a,
sizeof(a),
"%d", 25 - i);
372 snprintf(b,
sizeof(b),
"GET%d", i);
373 snprintf(c,
sizeof(c),
"%d", 200 + (i % 5));
380 for (i = 0; i < 25; i++) {
383 snprintf(a,
sizeof(a),
"%d", 100 + i);
405 memset(&ev, 0,
sizeof(ev));
406 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_DOWN;
409 ev.mouse.y = (int)(row_h * 0.5f);
411 ev.type = ALLEGRO_EVENT_MOUSE_AXES;
414 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_UP;
444 al_destroy_font(font);
void process_args(int argc, char **argv)
static void expect_true(const char *label, int cond)
static void on_ctx(int widget_id, int row, int x, int y, void *user_data)
static void on_cols_changed(int widget_id, void *user_data)
static void expect_streq(const char *label, const char *got, const char *want)
static int g_cols_changed
N_GUI_STYLE style
configurable style (sizes, colours, paddings)
float item_height_pad
min padding added to font height for item height
void n_gui_set_display_size(N_GUI_CTX *ctx, float w, float h)
Set the display (viewport) size for global scrollbar computation.
void n_gui_datagrid_sort(N_GUI_CTX *ctx, int widget_id, int col, int dir)
sort the rows by a column (dir 1 ascending, -1 descending)
void n_gui_datagrid_set_on_columns_changed(N_GUI_CTX *ctx, int widget_id, void(*cb)(int, void *))
set the callback fired after the user drags a column border to resize it, so the host can persist the...
void n_gui_datagrid_set_selected(N_GUI_CTX *ctx, int widget_id, int row)
set the selected row index (fires the on_select callback)
void n_gui_datagrid_clear_row_color(N_GUI_CTX *ctx, int widget_id, int row)
remove the background tint of data row row (it draws untinted again)
int n_gui_datagrid_get_row_count(N_GUI_CTX *ctx, int widget_id)
get the number of rows in a data grid
const char * n_gui_datagrid_get_cell(N_GUI_CTX *ctx, int widget_id, int row, int col)
get a cell string by row and column, or NULL if out of range
size_t n_gui_datagrid_get_column_count(N_GUI_CTX *ctx, int widget_id)
number of columns in a data grid (physical), or 0
float n_gui_datagrid_get_h_scroll(N_GUI_CTX *ctx, int widget_id)
horizontal scroll offset in pixels (how far the columns are scrolled left when their total width exce...
void n_gui_datagrid_set_row_color(N_GUI_CTX *ctx, int widget_id, int row, ALLEGRO_COLOR color)
paint data row row with a background tint (a per-row highlight, e.g.
void n_gui_datagrid_set_scroll_offset(N_GUI_CTX *ctx, int widget_id, int offset)
set the first visible data row (clamped to the row count); the draw path re-clamps to the live viewpo...
size_t n_gui_datagrid_get_selected_rows(N_GUI_CTX *ctx, int widget_id, int *out, size_t max)
fill out with the indices of the selected rows (ascending), up to max, and return the total number of...
int n_gui_datagrid_get_scroll_offset(N_GUI_CTX *ctx, int widget_id)
first visible data row (the vertical scroll position), or 0.
int n_gui_process_event(N_GUI_CTX *ctx, ALLEGRO_EVENT event)
Process an allegro event through the GUI system.
void n_gui_datagrid_set_on_context(N_GUI_CTX *ctx, int widget_id, void(*on_context)(int, int, int, int, void *))
set the right-click context callback; fired (with the cursor x/y in GUI coordinates) when a data row ...
int n_gui_datagrid_is_row_selected(N_GUI_CTX *ctx, int widget_id, int row)
report whether a given data row is selected (1) or not (0)
int n_gui_datagrid_add_column(N_GUI_CTX *ctx, int widget_id, const char *title, float width)
append a column with a header title and pixel width; returns the column index or -1
void n_gui_datagrid_set_h_scroll(N_GUI_CTX *ctx, int widget_id, float px)
set the horizontal scroll offset in pixels (clamped to >= 0; the draw path re-clamps to the live cont...
void n_gui_datagrid_set_multiselect(N_GUI_CTX *ctx, int widget_id, int enabled)
enable (1) or disable (0) multi-row selection.
#define N_GUI_WIN_FRAMELESS
frameless window: no title bar drawn, drag via window body unless N_GUI_WIN_FIXED_POSITION is also se...
void n_gui_datagrid_move_column(N_GUI_CTX *ctx, int widget_id, int from, int to)
move the column at display position from to display position to, shifting the columns in between (reo...
int n_gui_datagrid_get_row_color(N_GUI_CTX *ctx, int widget_id, int row, ALLEGRO_COLOR *out)
report whether data row row carries a background tint (1) or not (0), and copy the tint into out when...
void n_gui_datagrid_clear_selection(N_GUI_CTX *ctx, int widget_id)
clear the entire selection (no row selected)
int n_gui_add_window(N_GUI_CTX *ctx, const char *title, float x, float y, float w, float h)
Add a new pseudo-window to the context.
void n_gui_datagrid_select_row(N_GUI_CTX *ctx, int widget_id, int row, int selected)
select (1) or deselect (0) a single row in a multi-select grid programmatically (e....
N_GUI_CTX * n_gui_new_ctx(ALLEGRO_FONT *default_font)
Create a new GUI context.
void n_gui_datagrid_clear_rows(N_GUI_CTX *ctx, int widget_id)
remove all rows from a data grid (columns are kept)
int n_gui_datagrid_display_to_physical(N_GUI_CTX *ctx, int widget_id, int display_pos)
physical column shown at display position display_pos, or -1 if out of range
float n_gui_datagrid_get_column_width(N_GUI_CTX *ctx, int widget_id, int col)
current pixel width of physical column col, or 0 if out of range
const char * n_gui_datagrid_get_column_title(N_GUI_CTX *ctx, int widget_id, int col)
header title of physical column col, or "" if out of range
void n_gui_destroy_ctx(N_GUI_CTX **ctx)
Destroy a GUI context and all its windows/widgets.
int n_gui_datagrid_add_row(N_GUI_CTX *ctx, int widget_id, const char **values)
append a row of cell strings (values must have one entry per column); returns the row index or -1
void n_gui_datagrid_set_column_width(N_GUI_CTX *ctx, int widget_id, int col, float width)
set the pixel width of physical column col (clamped to a small minimum)
void n_gui_datagrid_set_column_visible(N_GUI_CTX *ctx, int widget_id, int col, int visible)
show (1) or hide (0) physical column col; hidden columns keep their cells but are skipped in the head...
void n_gui_window_set_flags(N_GUI_CTX *ctx, int window_id, int flags)
Set feature flags on a window.
void n_gui_datagrid_clear_row_colors(N_GUI_CTX *ctx, int widget_id)
remove every row background tint (the rows and cells are kept)
int n_gui_datagrid_get_selected(N_GUI_CTX *ctx, int widget_id)
get the selected row index, or -1 if none
int n_gui_datagrid_get_column_visible(N_GUI_CTX *ctx, int widget_id, int col)
whether physical column col is visible (1) or hidden (0); 0 if out of range
int n_gui_add_datagrid(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, void(*on_select)(int, int, void *), void *user_data)
Add a sortable data grid widget.
The top-level GUI context that holds all windows.
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
#define LOG_DEBUG
debug-level messages
#define LOG_ERR
error conditions
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
#define LOG_NOTICE
normal but significant condition
#define LOG_NULL
no log output
#define LOG_INFO
informational
Common headers and low-level functions & define.
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.