Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_gui.c
Go to the documentation of this file.
1/*
2 * Nilorea Library
3 * Copyright (C) 2005-2026 Castagnier Mickael
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14 * implied. See the License for the specific language governing
15 * permissions and limitations under the License.
16 *
17 * SPDX-License-Identifier: Apache-2.0
18 */
19
42#define WIDTH 1280
43#define HEIGHT 900
44
45#define ALLEGRO_UNSTABLE 1
46#define HAVE_CJSON 1
47
48#include "nilorea/n_gui.h"
49#include "cJSON.h"
50
51ALLEGRO_DISPLAY* display = NULL;
52
53int DONE = 0,
56
57static char theme_file[512] = "";
58
59/* application state driven by toggle buttons */
60static int player_mode = 0;
61static int height_mode = 0;
62static int show_grid = 0;
63static int smooth_height = 0;
64static int ghost_enabled = 0;
65static int current_proj = 0; /* 0=Classic, 1=Iso, 2=Military, 3=Staggered */
66
67static const char* proj_names[] = {"Classic 2:1", "True Isometric", "Military", "Staggered"};
68
69/* widget ids for status display */
70static int lbl_status = -1;
71static int lbl_proj = -1;
72
73/* projection toggle button ids for radio group */
74static int proj_btn_ids[4] = {-1, -1, -1, -1};
75
76/* window ids (needed for show/hide dropdown) */
77#define NUM_WINDOWS 18
78static int win_ids[NUM_WINDOWS];
79static const char* win_names[NUM_WINDOWS];
80
81/* dropdown menu widget id for show/hide */
82static int dropmenu_windows_id = -1;
83
84/* coordinate-helper readout label (updated each tick from the virtual
85 * mouse position via n_gui_virtual_to_screen). */
86static int lbl_coords = -1;
87
88/* Path used by the Layout I/O window's save/load buttons. Persists
89 * window geometry across runs via n_gui_save_layout_json /
90 * n_gui_load_layout_json. */
91#define EX_GUI_LAYOUT_FILE "ex_gui_layout.json"
92
93/* callback: button click */
94void on_button_click(int widget_id, void* user_data) {
95 (void)user_data;
96 n_log(LOG_NOTICE, "Button %d clicked!", widget_id);
97}
98
99/* callback: slider change */
100void on_slider_change(int widget_id, double value, void* user_data) {
101 (void)user_data;
102 n_log(LOG_NOTICE, "Slider %d value: %.2f", widget_id, value);
103}
104
105/* callback: checkbox toggle */
106void on_checkbox_toggle(int widget_id, int checked, void* user_data) {
107 (void)user_data;
108 n_log(LOG_NOTICE, "Checkbox %d: %s", widget_id, checked ? "checked" : "unchecked");
109}
110
111/* callback: textarea change */
112void on_text_change(int widget_id, const char* text, void* user_data) {
113 (void)user_data;
114 n_log(LOG_NOTICE, "Textarea %d: \"%s\"", widget_id, text);
115}
116
117/* callback: scrollbar scroll */
118void on_scroll(int widget_id, double pos, void* user_data) {
119 (void)user_data;
120 n_log(LOG_NOTICE, "Scrollbar %d pos: %.2f", widget_id, pos);
121}
122
123/* callback: quit button */
124void on_quit_click(int widget_id, void* user_data) {
125 (void)widget_id;
126 int* done = (int*)user_data;
127 *done = 1;
128}
129
130/* callback: login button */
131void on_login_click(int widget_id, void* user_data) {
132 (void)user_data;
133 n_log(LOG_NOTICE, "Login button %d clicked!", widget_id);
134}
135
136/* callback: Save Layout button, persist current window geometry to JSON */
137void on_save_layout_click(int widget_id, void* user_data) {
138 (void)widget_id;
139 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
141 n_log(LOG_NOTICE, "Layout saved to %s", EX_GUI_LAYOUT_FILE);
142 } else {
143 n_log(LOG_ERR, "Failed to save layout to %s", EX_GUI_LAYOUT_FILE);
144 }
145}
146
147/* callback: Load Layout button, restore window geometry from JSON */
148void on_load_layout_click(int widget_id, void* user_data) {
149 (void)widget_id;
150 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
152 n_log(LOG_NOTICE, "Layout loaded from %s", EX_GUI_LAYOUT_FILE);
153 } else {
154 n_log(LOG_NOTICE, "No saved layout at %s yet (Save first)", EX_GUI_LAYOUT_FILE);
155 }
156}
157
158/* callback: listbox selection */
159void on_listbox_select(int widget_id, int index, int selected, void* user_data) {
160 (void)user_data;
161 n_log(LOG_NOTICE, "Listbox %d: item %d %s", widget_id, index, selected ? "selected" : "deselected");
162}
163
164/* callback: radiolist selection */
165void on_radiolist_select(int widget_id, int index, void* user_data) {
166 (void)user_data;
167 n_log(LOG_NOTICE, "Radiolist %d: selected item %d", widget_id, index);
168}
169
170/* callback: combobox selection */
171void on_combobox_select(int widget_id, int index, void* user_data) {
172 (void)user_data;
173 n_log(LOG_NOTICE, "Combobox %d: selected item %d", widget_id, index);
174}
175
176/* callback: label link click */
177void on_link_click(int widget_id, const char* link, void* user_data) {
178 (void)user_data;
179 n_log(LOG_NOTICE, "Link %d clicked: %s", widget_id, link);
180}
181
182/* toggle button callbacks */
183
184void on_player_toggle(int widget_id, void* user_data) {
185 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
187 n_log(LOG_NOTICE, "Player mode: %s", player_mode ? "ON" : "OFF");
188}
189
190void on_height_toggle(int widget_id, void* user_data) {
191 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
193 n_log(LOG_NOTICE, "Height mode: %s", height_mode ? "ON" : "OFF");
194}
195
196void on_grid_toggle(int widget_id, void* user_data) {
197 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
199 n_log(LOG_NOTICE, "Grid: %s", show_grid ? "ON" : "OFF");
200}
201
202void on_smooth_toggle(int widget_id, void* user_data) {
203 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
205 n_log(LOG_NOTICE, "Height rendering: %s", smooth_height ? "SMOOTH" : "CUT");
206}
207
208void on_ghost_toggle(int widget_id, void* user_data) {
209 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
211 n_log(LOG_NOTICE, "DR Ghost: %s", ghost_enabled ? "ON" : "OFF");
212}
213
214/* projection buttons: act as a radio group using toggle buttons */
215void on_proj_select(int widget_id, void* user_data) {
216 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
217 for (int i = 0; i < 4; i++) {
218 if (proj_btn_ids[i] == widget_id) {
219 current_proj = i;
221 } else {
223 }
224 }
225 n_log(LOG_NOTICE, "Projection: %s", proj_names[current_proj]);
226}
227
228/* dropdown menu: show/hide windows */
229
230/* callback when a window toggle entry is clicked in the dropdown */
231void on_window_toggle_click(int widget_id, int entry_index, int tag, void* user_data) {
232 (void)widget_id;
233 (void)entry_index;
234 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
236 n_log(LOG_NOTICE, "Toggled window id %d", tag);
237}
238
239/* callback to rebuild dynamic entries when the dropdown opens */
240void on_windows_menu_open(int widget_id, void* user_data) {
241 N_GUI_CTX* gui = (N_GUI_CTX*)user_data;
242
243 /* clear old dynamic entries */
245
246 /* add one dynamic entry per window showing its show/hide state */
247 for (int i = 0; i < NUM_WINDOWS; i++) {
248 if (win_ids[i] < 0) continue;
249 char buf[N_GUI_ID_MAX];
250 int is_open = n_gui_window_is_open(gui, win_ids[i]);
251 snprintf(buf, sizeof(buf), "[%s] %s", is_open ? "X" : " ", win_names[i]);
252 n_gui_dropmenu_add_dynamic_entry(gui, widget_id, buf, win_ids[i],
254 }
255}
256
257int main(int argc, char* argv[]) {
259
260 n_log(LOG_NOTICE, "%s is starting ...", argv[0]);
261
262 /* allegro 5 + addons loading */
263 if (!al_init()) {
264 n_abort("Could not init Allegro.\n");
265 }
266 if (!al_install_audio()) {
267 n_log(LOG_ERR, "Unable to initialize audio addon");
268 }
269 if (!al_init_acodec_addon()) {
270 n_log(LOG_ERR, "Unable to initialize audio codec addon");
271 }
272 if (!al_init_image_addon()) {
273 n_abort("Unable to initialize image addon\n");
274 }
275 if (!al_init_primitives_addon()) {
276 n_abort("Unable to initialize primitives addon\n");
277 }
278 if (!al_init_font_addon()) {
279 n_abort("Unable to initialize font addon\n");
280 }
281 if (!al_init_ttf_addon()) {
282 n_abort("Unable to initialize ttf_font addon\n");
283 }
284 if (!al_install_keyboard()) {
285 n_abort("Unable to initialize keyboard handler\n");
286 }
287 if (!al_install_mouse()) {
288 n_abort("Unable to initialize mouse handler\n");
289 }
290
291 /* parse command line */
292 char ver_str[128] = "";
293 while ((getoptret = getopt(argc, argv, "hvV:L:t:")) != EOF) {
294 switch (getoptret) {
295 case 'h':
296 n_log(LOG_NOTICE, "\n %s -h help -v version -V DEBUGLEVEL -L logfile -t theme.json", argv[0]);
297 exit(TRUE);
298 case 'v':
299 sprintf(ver_str, "%s %s", __DATE__, __TIME__);
300 exit(TRUE);
301 break;
302 case 'V':
303 if (!strncmp("NOTICE", optarg, 6)) {
305 } else if (!strncmp("VERBOSE", optarg, 7)) {
307 } else if (!strncmp("ERROR", optarg, 5)) {
309 } else if (!strncmp("DEBUG", optarg, 5)) {
311 } else {
312 n_log(LOG_ERR, "%s is not a valid log level", optarg);
313 exit(FALSE);
314 }
316 break;
317 case 'L':
318 set_log_file(optarg);
319 break;
320 case 't':
321 strncpy(theme_file, optarg, sizeof(theme_file) - 1);
322 theme_file[sizeof(theme_file) - 1] = '\0';
323 break;
324 default:
325 n_log(LOG_ERR, "\n %s -h help -v version -V DEBUGLEVEL -L logfile -t theme.json", argv[0]);
326 exit(FALSE);
327 }
328 }
329
330 ALLEGRO_EVENT_QUEUE* event_queue = al_create_event_queue();
331 if (!event_queue) {
332 n_abort("Failed to create event queue!\n");
333 }
334
335 al_set_new_display_flags(ALLEGRO_OPENGL | ALLEGRO_WINDOWED | ALLEGRO_RESIZABLE);
336 display = al_create_display(WIDTH, HEIGHT);
337 if (!display) {
338 n_abort("Unable to create display\n");
339 }
340 al_set_window_title(display, "Nilorea GUI Demo - All Widgets + Dropdown Menus");
341
342 ALLEGRO_TIMER* fps_timer = al_create_timer(1.0 / 60.0);
343
344 al_register_event_source(event_queue, al_get_display_event_source(display));
345 al_register_event_source(event_queue, al_get_timer_event_source(fps_timer));
346 al_register_event_source(event_queue, al_get_keyboard_event_source());
347 al_register_event_source(event_queue, al_get_mouse_event_source());
348 al_hide_mouse_cursor(display);
349
350 /* load a built-in font */
351 ALLEGRO_FONT* font = al_create_builtin_font();
352 if (!font) {
353 n_abort("Unable to create builtin font\n");
354 }
355
356 /* create the GUI */
357 N_GUI_CTX* gui = n_gui_new_ctx(font);
358
359 /* set display size for global scrollbars (shown when GUI exceeds display) */
360 n_gui_set_display_size(gui, (float)WIDTH, (float)HEIGHT);
361
362 /* set display pointer for clipboard operations (copy/paste in text areas) */
364
365 /* enable virtual canvas: widget coordinates stay in WIDTH x HEIGHT space,
366 * the GUI scales uniformly to fit the actual display size */
367 n_gui_set_virtual_size(gui, (float)WIDTH, (float)HEIGHT);
368
369 /* detect and apply DPI scale */
370 float dpi = n_gui_detect_dpi_scale(gui, display);
371 n_log(LOG_NOTICE, "DPI scale: %.2f", dpi);
372
373 /* load theme file if specified on command line */
374 if (theme_file[0]) {
376 n_log(LOG_NOTICE, "Loaded theme: %s", theme_file);
377 } else {
378 n_log(LOG_ERR, "Failed to load theme: %s", theme_file);
379 }
380 }
381
382 int win_idx = 0;
383
384 /* Window 0: Menu Bar (frameless, fixed position) */
385 win_ids[win_idx] = n_gui_add_window(gui, "Menu", 0, 0, (float)WIDTH, 28);
386 win_names[win_idx] = "Menu";
387 int win_menu = win_ids[win_idx];
389 win_idx++;
390
391 /* dropdown: Windows (show/hide) */
393 "Windows", 10, 2, 120, 22,
395
396 /* dropdown: File (static entries) */
397 int dm_file = n_gui_add_dropmenu(gui, win_menu,
398 "File", 140, 2, 100, 22, NULL, NULL);
399 n_gui_dropmenu_add_entry(gui, dm_file, "New", 0, NULL, NULL);
400 n_gui_dropmenu_add_entry(gui, dm_file, "Open", 1, NULL, NULL);
401 n_gui_dropmenu_add_entry(gui, dm_file, "Save", 2, NULL, NULL);
402
403 /* Window 1: Buttons */
404 win_ids[win_idx] = n_gui_add_window(gui, "Buttons", 20, 60, 300, 280);
405 win_names[win_idx] = "Buttons";
406 int win1 = win_ids[win_idx];
407 win_idx++;
408
409 n_gui_add_button(gui, win1, "Click Me!", 20, 20, 120, 36, N_GUI_SHAPE_RECT, on_button_click, NULL);
410 n_gui_add_button(gui, win1, "Rounded", 160, 20, 120, 36, N_GUI_SHAPE_ROUNDED, on_button_click, NULL);
411 n_gui_add_button(gui, win1, "Quit", 20, 80, 260, 40, N_GUI_SHAPE_ROUNDED, on_quit_click, &DONE);
412
413 /* custom themed button */
414 int btn_custom = n_gui_add_button(gui, win1, "Custom Theme", 20, 140, 260, 36, N_GUI_SHAPE_ROUNDED, on_button_click, NULL);
415 N_GUI_THEME red_theme = n_gui_make_theme(
416 al_map_rgba(120, 30, 30, 230), al_map_rgba(160, 40, 40, 240), al_map_rgba(200, 60, 60, 255),
417 al_map_rgba(200, 80, 80, 255), al_map_rgba(230, 100, 100, 255), al_map_rgba(255, 120, 120, 255),
418 al_map_rgba(255, 220, 220, 255), al_map_rgba(255, 255, 255, 255), al_map_rgba(255, 255, 255, 255),
419 2.0f, 8.0f, 8.0f);
420 n_gui_set_widget_theme(gui, btn_custom, red_theme);
421
422 {
423 int btn_dis = n_gui_add_button(gui, win1, "Disabled Button", 20, 196, 260, 30, N_GUI_SHAPE_RECT, on_button_click, NULL);
424 n_gui_set_widget_enabled(gui, btn_dis, 0);
425 }
426
427 /* Window 2: Sliders (resizable) */
428 win_ids[win_idx] = n_gui_add_window(gui, "Sliders (resizable)", 340, 60, 320, 200);
429 win_names[win_idx] = "Sliders (resizable)";
430 int win2 = win_ids[win_idx];
432 win_idx++;
433
434 n_gui_add_slider(gui, win2, 20, 20, 180, 24, 0.0, 100.0, 50.0, N_GUI_SLIDER_VALUE, on_slider_change, NULL);
435 n_gui_add_slider(gui, win2, 20, 60, 180, 24, 0.0, 100.0, 25.0, N_GUI_SLIDER_PERCENT, on_slider_change, NULL);
436 {
437 int sld_dis = n_gui_add_slider(gui, win2, 20, 100, 180, 24, -50.0, 50.0, 0.0, N_GUI_SLIDER_VALUE, on_slider_change, NULL);
438 n_gui_set_widget_enabled(gui, sld_dis, 0);
439 }
440
441 /* vertical sliders */
442 n_gui_add_vslider(gui, win2, 240, 10, 24, 120, 0.0, 100.0, 75.0, N_GUI_SLIDER_VALUE, on_slider_change, NULL);
443 n_gui_add_vslider(gui, win2, 275, 10, 24, 120, 0.0, 100.0, 40.0, N_GUI_SLIDER_PERCENT, on_slider_change, NULL);
444
445 /* Window 3: Text Areas */
446 win_ids[win_idx] = n_gui_add_window(gui, "Text Areas", 20, 360, 350, 280);
447 win_names[win_idx] = "Text Areas";
448 int win3 = win_ids[win_idx];
449 win_idx++;
450
451 n_gui_add_textarea(gui, win3, 20, 20, 310, 28, 0, 64, on_text_change, NULL);
452 int ta_multi = n_gui_add_textarea(gui, win3, 20, 60, 310, 160, 1, 512, on_text_change, NULL);
453 n_gui_textarea_set_text(gui, ta_multi, "Hello! This is a\nmultiline text area.\nType here...");
454
455 /* Window 4: Checkboxes (auto-sized) */
456 win_ids[win_idx] = n_gui_add_window_auto(gui, "Checkboxes (auto)", 680, 60);
457 win_names[win_idx] = "Checkboxes (auto)";
458 int win4 = win_ids[win_idx];
459 win_idx++;
460
461 n_gui_add_checkbox(gui, win4, "Enable sound", 20, 20, 260, 28, 1, on_checkbox_toggle, NULL);
462 n_gui_add_checkbox(gui, win4, "Fullscreen", 20, 56, 260, 28, 0, on_checkbox_toggle, NULL);
463 {
464 int cb_fps = n_gui_add_checkbox(gui, win4, "Show FPS (disabled)", 20, 92, 260, 28, 1, on_checkbox_toggle, NULL);
465 n_gui_set_widget_enabled(gui, cb_fps, 0);
466 }
467 {
468 int cb_vsync = n_gui_add_checkbox(gui, win4, "VSync (hidden)", 20, 128, 260, 28, 0, on_checkbox_toggle, NULL);
469 n_gui_set_widget_visible(gui, cb_vsync, 0);
470 }
471 /* auto-size to fit the widgets */
473
474 /* Window 5: Scrollbars */
475 win_ids[win_idx] = n_gui_add_window(gui, "Scrollbars", 390, 360, 320, 280);
476 win_names[win_idx] = "Scrollbars";
477 int win5 = win_ids[win_idx];
478 win_idx++;
479
481 1000.0, 200.0, on_scroll, NULL);
483 500.0, 100.0, on_scroll, NULL);
485 2000.0, 500.0, on_scroll, NULL);
487 100.0, 100.0, on_scroll, NULL);
488
489 /* Window 6: Listbox (single select) */
490 win_ids[win_idx] = n_gui_add_window(gui, "Listbox (Single)", 730, 360, 260, 240);
491 win_names[win_idx] = "Listbox (Single)";
492 int win6 = win_ids[win_idx];
493 win_idx++;
494
495 int lb_single = n_gui_add_listbox(gui, win6, 10, 10, 240, 180, N_GUI_SELECT_SINGLE, on_listbox_select, NULL);
496 n_gui_listbox_add_item(gui, lb_single, "Apple");
497 n_gui_listbox_add_item(gui, lb_single, "Banana");
498 n_gui_listbox_add_item(gui, lb_single, "Cherry");
499 n_gui_listbox_add_item(gui, lb_single, "Date");
500 n_gui_listbox_add_item(gui, lb_single, "Elderberry");
501 n_gui_listbox_add_item(gui, lb_single, "Fig");
502 n_gui_listbox_add_item(gui, lb_single, "Grape");
503 n_gui_listbox_add_item(gui, lb_single, "Honeydew");
504 n_gui_listbox_add_item(gui, lb_single, "Kiwi");
505 n_gui_listbox_add_item(gui, lb_single, "Lemon");
506 n_gui_listbox_add_item(gui, lb_single, "Mango");
507 n_gui_listbox_add_item(gui, lb_single, "Nectarine");
508 n_gui_listbox_add_item(gui, lb_single, "Orange");
509 n_gui_listbox_add_item(gui, lb_single, "Papaya");
510 n_gui_listbox_add_item(gui, lb_single, "Quince");
511 n_gui_listbox_set_selected(gui, lb_single, 2, 1);
512
513 /* Window 7: Listbox (multi select) */
514 win_ids[win_idx] = n_gui_add_window(gui, "Listbox (Multi)", 1000, 360, 260, 240);
515 win_names[win_idx] = "Listbox (Multi)";
516 int win7 = win_ids[win_idx];
517 win_idx++;
518
519 int lb_multi = n_gui_add_listbox(gui, win7, 10, 10, 240, 180, N_GUI_SELECT_MULTIPLE, on_listbox_select, NULL);
520 n_gui_listbox_add_item(gui, lb_multi, "Red");
521 n_gui_listbox_add_item(gui, lb_multi, "Green");
522 n_gui_listbox_add_item(gui, lb_multi, "Blue");
523 n_gui_listbox_add_item(gui, lb_multi, "Yellow");
524 n_gui_listbox_add_item(gui, lb_multi, "Cyan");
525 n_gui_listbox_add_item(gui, lb_multi, "Magenta");
526 n_gui_listbox_add_item(gui, lb_multi, "White");
527 n_gui_listbox_add_item(gui, lb_multi, "Black");
528 n_gui_listbox_add_item(gui, lb_multi, "Orange");
529 n_gui_listbox_add_item(gui, lb_multi, "Pink");
530 n_gui_listbox_add_item(gui, lb_multi, "Brown");
531 n_gui_listbox_add_item(gui, lb_multi, "Purple");
532 n_gui_listbox_set_selected(gui, lb_multi, 0, 1);
533 n_gui_listbox_set_selected(gui, lb_multi, 2, 1);
534
535 /* Window 8: Radiolist */
536 win_ids[win_idx] = n_gui_add_window(gui, "Radio List", 730, 60, 260, 230);
537 win_names[win_idx] = "Radio List";
538 int win8 = win_ids[win_idx];
539 win_idx++;
540
541 int radio1 = n_gui_add_radiolist(gui, win8, 10, 10, 240, 170, on_radiolist_select, NULL);
542 n_gui_radiolist_add_item(gui, radio1, "Option A");
543 n_gui_radiolist_add_item(gui, radio1, "Option B");
544 n_gui_radiolist_add_item(gui, radio1, "Option C");
545 n_gui_radiolist_add_item(gui, radio1, "Option D");
546 n_gui_radiolist_add_item(gui, radio1, "Option E");
547 n_gui_radiolist_add_item(gui, radio1, "Option F");
548 n_gui_radiolist_add_item(gui, radio1, "Option G");
549 n_gui_radiolist_add_item(gui, radio1, "Option H");
550 n_gui_radiolist_add_item(gui, radio1, "Option I");
551 n_gui_radiolist_add_item(gui, radio1, "Option J");
553
554 /* Window 9: Combobox + Labels + Image */
555 win_ids[win_idx] = n_gui_add_window(gui, "Combo / Labels / Image", 1000, 60, 260, 280);
556 win_names[win_idx] = "Combo / Labels / Image";
557 int win9 = win_ids[win_idx];
558 win_idx++;
559
560 /* combobox */
561 int combo1 = n_gui_add_combobox(gui, win9, 10, 10, 240, 24, on_combobox_select, NULL);
562 n_gui_combobox_add_item(gui, combo1, "Tiny");
563 n_gui_combobox_add_item(gui, combo1, "Small");
564 n_gui_combobox_add_item(gui, combo1, "Medium");
565 n_gui_combobox_add_item(gui, combo1, "Large");
566 n_gui_combobox_add_item(gui, combo1, "Extra Large");
567 n_gui_combobox_add_item(gui, combo1, "XXL");
568 n_gui_combobox_add_item(gui, combo1, "XXXL");
569 n_gui_combobox_add_item(gui, combo1, "Huge");
570 n_gui_combobox_add_item(gui, combo1, "Gigantic");
571 n_gui_combobox_add_item(gui, combo1, "Colossal");
573
574 /* static labels */
575 n_gui_add_label(gui, win9, "Left aligned label", 10, 50, 240, 20, N_GUI_ALIGN_LEFT);
576 n_gui_add_label(gui, win9, "Centered label", 10, 74, 240, 20, N_GUI_ALIGN_CENTER);
577 n_gui_add_label(gui, win9, "Right aligned label", 10, 98, 240, 20, N_GUI_ALIGN_RIGHT);
578 n_gui_add_label(gui, win9, "Justified: this text spreads across width evenly", 10, 122, 240, 20, N_GUI_ALIGN_JUSTIFIED);
579
580 /* hyperlink label */
582 "Click this link!", "https://example.com",
583 10, 150, 240, 20, N_GUI_ALIGN_LEFT,
584 on_link_click, NULL);
585
586 /* image widgets with different scale modes */
587 ALLEGRO_BITMAP* img_192 = al_load_bitmap("DATAS/img/android-chrome-192x192.png");
588 ALLEGRO_BITMAP* img_32 = al_load_bitmap("DATAS/img/favicon-32x32.png");
589 n_gui_add_label(gui, win9, "Image FIT:", 10, 180, 80, 16, N_GUI_ALIGN_LEFT);
590 n_gui_add_image(gui, win9, 10, 198, 80, 80, img_192, N_GUI_IMAGE_FIT);
591 n_gui_add_label(gui, win9, "STRETCH:", 100, 180, 70, 16, N_GUI_ALIGN_LEFT);
592 n_gui_add_image(gui, win9, 100, 198, 70, 80, img_192, N_GUI_IMAGE_STRETCH);
593 n_gui_add_label(gui, win9, "CENTER:", 180, 180, 70, 16, N_GUI_ALIGN_LEFT);
594 n_gui_add_image(gui, win9, 180, 198, 70, 80, img_32, N_GUI_IMAGE_CENTER);
595
596 /* Window 10: Mode Toggles (stays clicked/unclicked) */
597 win_ids[win_idx] = n_gui_add_window(gui, "Mode Toggles", 20, 660, 300, 230);
598 win_names[win_idx] = "Mode Toggles";
599 int win10 = win_ids[win_idx];
600 win_idx++;
601
602 n_gui_add_label(gui, win10, "Click or press key to toggle on/off:", 20, 10, 260, 20, N_GUI_ALIGN_LEFT);
603
604 {
605 int btn_id;
606 btn_id = n_gui_add_toggle_button(gui, win10, "Player Mode [Ctrl+P]",
607 20, 40, 260, 32, N_GUI_SHAPE_ROUNDED, 0,
609 n_gui_button_set_keycode(gui, btn_id, ALLEGRO_KEY_P, ALLEGRO_KEYMOD_CTRL);
610
611 btn_id = n_gui_add_toggle_button(gui, win10, "Height Mode [Ctrl+H]",
612 20, 80, 260, 32, N_GUI_SHAPE_ROUNDED, 0,
614 n_gui_button_set_keycode(gui, btn_id, ALLEGRO_KEY_H, ALLEGRO_KEYMOD_CTRL);
615
616 btn_id = n_gui_add_toggle_button(gui, win10, "Grid [Shift+G]",
617 20, 120, 260, 32, N_GUI_SHAPE_ROUNDED, 0,
619 n_gui_button_set_keycode(gui, btn_id, ALLEGRO_KEY_G, ALLEGRO_KEYMOD_SHIFT);
620
621 btn_id = n_gui_add_toggle_button(gui, win10, "Smooth Height [Shift+V]",
622 20, 160, 260, 32, N_GUI_SHAPE_ROUNDED, 0,
624 n_gui_button_set_keycode(gui, btn_id, ALLEGRO_KEY_V, ALLEGRO_KEYMOD_SHIFT);
625 }
626
627 /* Window 11: Projection Selection (toggle radio group) */
628 win_ids[win_idx] = n_gui_add_window(gui, "Projection", 340, 660, 280, 230);
629 win_names[win_idx] = "Projection";
630 int win11 = win_ids[win_idx];
631 win_idx++;
632
633 n_gui_add_label(gui, win11, "Select projection:", 20, 10, 240, 20, N_GUI_ALIGN_LEFT);
634
635 proj_btn_ids[0] = n_gui_add_toggle_button(gui, win11, "Classic 2:1 [Ctrl+F1]",
636 20, 40, 240, 30, N_GUI_SHAPE_ROUNDED, 1,
638 n_gui_button_set_keycode(gui, proj_btn_ids[0], ALLEGRO_KEY_F1, ALLEGRO_KEYMOD_CTRL);
639 proj_btn_ids[1] = n_gui_add_toggle_button(gui, win11, "True Isometric [Shift+F2]",
640 20, 78, 240, 30, N_GUI_SHAPE_ROUNDED, 0,
642 n_gui_button_set_keycode(gui, proj_btn_ids[1], ALLEGRO_KEY_F2, ALLEGRO_KEYMOD_SHIFT);
643 proj_btn_ids[2] = n_gui_add_toggle_button(gui, win11, "Military [Ctrl+F3]",
644 20, 116, 240, 30, N_GUI_SHAPE_ROUNDED, 0,
646 n_gui_button_set_keycode(gui, proj_btn_ids[2], ALLEGRO_KEY_F3, ALLEGRO_KEYMOD_CTRL);
647 proj_btn_ids[3] = n_gui_add_toggle_button(gui, win11, "Staggered [Shift+F4]",
648 20, 154, 240, 30, N_GUI_SHAPE_ROUNDED, 0,
650 n_gui_button_set_keycode(gui, proj_btn_ids[3], ALLEGRO_KEY_F4, ALLEGRO_KEYMOD_SHIFT);
651
652 /* custom theme: green for active/toggled state */
653 N_GUI_THEME green_theme = n_gui_make_theme(
654 al_map_rgba(40, 60, 40, 230), al_map_rgba(50, 80, 50, 240), al_map_rgba(30, 120, 30, 255),
655 al_map_rgba(60, 100, 60, 255), al_map_rgba(70, 140, 70, 255), al_map_rgba(40, 160, 40, 255),
656 al_map_rgba(200, 255, 200, 255), al_map_rgba(255, 255, 255, 255), al_map_rgba(255, 255, 255, 255),
657 2.0f, 8.0f, 8.0f);
658 for (int i = 0; i < 4; i++) {
659 n_gui_set_widget_theme(gui, proj_btn_ids[i], green_theme);
660 }
661
662 /* Window 12: Status Display */
663 win_ids[win_idx] = n_gui_add_window(gui, "Toggle Status", 640, 660, 620, 230);
664 win_names[win_idx] = "Toggle Status";
665 int win12 = win_ids[win_idx];
666 win_idx++;
667
668 lbl_status = n_gui_add_label(gui, win12, "Waiting...", 20, 10, 580, 20, N_GUI_ALIGN_LEFT);
669 lbl_proj = n_gui_add_label(gui, win12, "Projection: Classic 2:1", 20, 40, 580, 20, N_GUI_ALIGN_LEFT);
670 /* lbl_coords is updated each tick from the virtual mouse position
671 * via n_gui_virtual_to_screen (round-tripped against the cached
672 * screen position via n_gui_screen_to_virtual). */
673 lbl_coords = n_gui_add_label(gui, win12, "Coords: ?", 20, 60, 580, 20, N_GUI_ALIGN_LEFT);
674
675 n_gui_add_label(gui, win12, "Toggle buttons stay visually pressed when ON.", 20, 80, 580, 20, N_GUI_ALIGN_LEFT);
676 n_gui_add_label(gui, win12, "Click again to turn OFF. Projection uses radio-group pattern.", 20, 100, 580, 20, N_GUI_ALIGN_LEFT);
677 n_gui_add_label(gui, win12, "The state persists: no need to hold the mouse button down.", 20, 120, 580, 20, N_GUI_ALIGN_LEFT);
678
679 /* Window 13: Scrollable Content. AUTO_SCROLLBAR scrolls overflow; NO_HSCROLL makes
680 * this a vertical-only panel, so the content wider than the window is clipped rather
681 * than shown behind a horizontal scrollbar (the vertical scrollbar still appears). */
682 win_ids[win_idx] = n_gui_add_window(gui, "Scrollable (vertical only)", 390, 270, 280, 80);
683 win_names[win_idx] = "Scrollable (vertical only)";
684 int win_scroll = win_ids[win_idx];
686 win_idx++;
687
688 /* add many labels wider and taller than the window: vertical overflow scrolls, the
689 horizontal overflow is clipped (no horizontal scrollbar thanks to NO_HSCROLL) */
690 for (int i = 0; i < 20; i++) {
691 char buf[128];
692 snprintf(buf, sizeof(buf), "Scrollable line %d - wide content clipped, not h-scrolled", i + 1);
693 n_gui_add_label(gui, win_scroll, buf, 10, (float)(i * 22), 400, 20, N_GUI_ALIGN_LEFT);
694 }
695
696 /* Window 14: Bitmap Skinning Demo
697 * Demonstrates optional bitmap overlays on widgets and windows.
698 * Placeholder bitmaps are created programmatically as colored rectangles
699 * with gradients to show where the skinning takes effect.
700 * In a real application, use al_load_bitmap() with actual image files.
701 * Bitmaps are NOT owned by N_GUI, caller must keep them alive while
702 * the GUI uses them and destroy them AFTER n_gui_destroy_ctx(). */
703 ALLEGRO_BITMAP* skin_win_bg = NULL;
704 ALLEGRO_BITMAP* skin_win_tb = NULL;
705 ALLEGRO_BITMAP* skin_sld_track = NULL;
706 ALLEGRO_BITMAP* skin_sld_fill = NULL;
707 ALLEGRO_BITMAP* skin_sld_handle = NULL;
708 ALLEGRO_BITMAP* skin_sld_handle_h = NULL;
709 ALLEGRO_BITMAP* skin_chk_unchecked = NULL;
710 ALLEGRO_BITMAP* skin_chk_checked = NULL;
711
712 /* Window 16 ("Bitmap Skinning II") bitmaps. Declared at the outer
713 * scope so they live until the cleanup section runs after
714 * n_gui_destroy_ctx. N_GUI stores raw pointers; the caller owns
715 * the bitmaps and must outlive the GUI's use of them. */
716 ALLEGRO_BITMAP* skin_btn_normal = NULL;
717 ALLEGRO_BITMAP* skin_btn_hover = NULL;
718 ALLEGRO_BITMAP* skin_btn_active = NULL;
719 ALLEGRO_BITMAP* skin_list_bg = NULL;
720 ALLEGRO_BITMAP* skin_list_item = NULL;
721 ALLEGRO_BITMAP* skin_list_sel = NULL;
722 ALLEGRO_BITMAP* skin_drop_panel = NULL;
723 ALLEGRO_BITMAP* skin_drop_hover = NULL;
724 ALLEGRO_BITMAP* skin_text_bg = NULL;
725 ALLEGRO_BITMAP* skin_tb_close_n = NULL;
726 ALLEGRO_BITMAP* skin_tb_close_h = NULL;
727 ALLEGRO_BITMAP* skin_tb_close_a = NULL;
728
729 {
730 /* create placeholder skin bitmaps programmatically */
731 ALLEGRO_BITMAP* prev_target = al_get_target_bitmap();
732
733 /* window background: blue gradient */
734 skin_win_bg = al_create_bitmap(64, 64);
735 al_set_target_bitmap(skin_win_bg);
736 for (int row = 0; row < 64; row++) {
737 float t = (float)row / 63.0f;
738 al_draw_line(0, (float)row, 64, (float)row,
739 al_map_rgba((unsigned char)(20 + 40 * t), (unsigned char)(40 + 60 * t), (unsigned char)(80 + 80 * t), 230), 1.0f);
740 }
741
742 /* titlebar: dark gradient */
743 skin_win_tb = al_create_bitmap(64, 16);
744 al_set_target_bitmap(skin_win_tb);
745 for (int row = 0; row < 16; row++) {
746 float t = (float)row / 15.0f;
747 al_draw_line(0, (float)row, 64, (float)row,
748 al_map_rgba((unsigned char)(60 + 40 * t), (unsigned char)(30 + 30 * t), (unsigned char)(100 + 50 * t), 240), 1.0f);
749 }
750
751 /* slider track: dark rounded bar */
752 skin_sld_track = al_create_bitmap(32, 8);
753 al_set_target_bitmap(skin_sld_track);
754 al_clear_to_color(al_map_rgba(50, 50, 60, 200));
755
756 /* slider fill: bright bar */
757 skin_sld_fill = al_create_bitmap(32, 8);
758 al_set_target_bitmap(skin_sld_fill);
759 al_clear_to_color(al_map_rgba(100, 180, 255, 230));
760
761 /* slider handle: circle-ish */
762 skin_sld_handle = al_create_bitmap(16, 16);
763 al_set_target_bitmap(skin_sld_handle);
764 al_clear_to_color(al_map_rgba(0, 0, 0, 0));
765 al_draw_filled_circle(8, 8, 7, al_map_rgba(200, 200, 220, 240));
766
767 /* slider handle hover */
768 skin_sld_handle_h = al_create_bitmap(16, 16);
769 al_set_target_bitmap(skin_sld_handle_h);
770 al_clear_to_color(al_map_rgba(0, 0, 0, 0));
771 al_draw_filled_circle(8, 8, 7, al_map_rgba(150, 220, 255, 255));
772
773 /* checkbox bitmaps */
774 skin_chk_unchecked = al_create_bitmap(16, 16);
775 al_set_target_bitmap(skin_chk_unchecked);
776 al_clear_to_color(al_map_rgba(60, 60, 80, 220));
777 al_draw_rectangle(0.5f, 0.5f, 15.5f, 15.5f, al_map_rgba(150, 150, 200, 255), 1.0f);
778
779 skin_chk_checked = al_create_bitmap(16, 16);
780 al_set_target_bitmap(skin_chk_checked);
781 al_clear_to_color(al_map_rgba(80, 140, 255, 240));
782 al_draw_rectangle(0.5f, 0.5f, 15.5f, 15.5f, al_map_rgba(150, 150, 200, 255), 1.0f);
783 al_draw_line(3, 8, 7, 13, al_map_rgb(255, 255, 255), 2.0f);
784 al_draw_line(7, 13, 13, 3, al_map_rgb(255, 255, 255), 2.0f);
785
786 al_set_target_bitmap(prev_target);
787
788 /* create the skinned window */
789 win_ids[win_idx] = n_gui_add_window(gui, "Bitmap Skinning", 690, 60, 300, 240);
790 win_names[win_idx] = "Bitmap Skinning";
791 int win_skin = win_ids[win_idx];
792 win_idx++;
793
794 /* apply window bitmaps */
795 n_gui_window_set_bitmaps(gui, win_skin, skin_win_bg, skin_win_tb, N_GUI_IMAGE_STRETCH);
796
797 /* skinned slider */
798 int skin_slider = n_gui_add_slider(gui, win_skin, 20, 20, 200, 24, 0.0, 100.0, 60.0,
800 n_gui_slider_set_bitmaps(gui, skin_slider, skin_sld_track, skin_sld_fill, skin_sld_handle, skin_sld_handle_h, NULL);
801
802 /* skinned checkbox */
803 int skin_chk = n_gui_add_checkbox(gui, win_skin, "Skinned checkbox", 20, 60, 200, 24, 0,
804 on_checkbox_toggle, NULL);
805 n_gui_checkbox_set_bitmaps(gui, skin_chk, skin_chk_unchecked, skin_chk_checked, NULL);
806
807 /* label with background (reuses sld_track bitmap) */
808 int skin_label = n_gui_add_label(gui, win_skin, "Label with bg bitmap", 20, 100, 200, 24, N_GUI_ALIGN_CENTER);
809 n_gui_label_set_bitmap(gui, skin_label, skin_sld_track);
810
811 /* regular button for comparison */
812 n_gui_add_button(gui, win_skin, "Normal Button", 20, 140, 200, 30, N_GUI_SHAPE_ROUNDED, on_button_click, NULL);
813
814 n_gui_add_label(gui, win_skin, "Window bg, titlebar, slider, checkbox,", 20, 180, 260, 16, N_GUI_ALIGN_LEFT);
815 n_gui_add_label(gui, win_skin, "and label are all bitmap-skinned above.", 20, 198, 260, 16, N_GUI_ALIGN_LEFT);
816 }
817
818 /* Window 16: Bitmap Skinning II, Containers + Titlebar Buttons
819 * Demonstrates the bitmap-skinning APIs that "Bitmap Skinning"
820 * (window 14) does not exercise: button_bitmap, listbox_set_bitmaps,
821 * radiolist_set_bitmaps, combobox_set_bitmaps, dropmenu_set_bitmaps,
822 * textarea_set_bitmap, and window_set_tb_button_bitmaps for the
823 * titlebar Close button. */
824 {
825 ALLEGRO_BITMAP* prev_target = al_get_target_bitmap();
826
827 /* button: three states drawn as filled rounded-ish rects */
828 skin_btn_normal = al_create_bitmap(64, 32);
829 al_set_target_bitmap(skin_btn_normal);
830 al_clear_to_color(al_map_rgba(60, 100, 180, 230));
831 skin_btn_hover = al_create_bitmap(64, 32);
832 al_set_target_bitmap(skin_btn_hover);
833 al_clear_to_color(al_map_rgba(90, 140, 220, 240));
834 skin_btn_active = al_create_bitmap(64, 32);
835 al_set_target_bitmap(skin_btn_active);
836 al_clear_to_color(al_map_rgba(40, 80, 140, 255));
837
838 /* listbox/combobox/radiolist share these three bitmaps */
839 skin_list_bg = al_create_bitmap(32, 32);
840 al_set_target_bitmap(skin_list_bg);
841 al_clear_to_color(al_map_rgba(25, 35, 55, 240));
842 skin_list_item = al_create_bitmap(32, 16);
843 al_set_target_bitmap(skin_list_item);
844 al_clear_to_color(al_map_rgba(40, 50, 70, 220));
845 skin_list_sel = al_create_bitmap(32, 16);
846 al_set_target_bitmap(skin_list_sel);
847 al_clear_to_color(al_map_rgba(80, 140, 220, 255));
848
849 /* dropmenu panel + per-item hover overlay */
850 skin_drop_panel = al_create_bitmap(64, 64);
851 al_set_target_bitmap(skin_drop_panel);
852 al_clear_to_color(al_map_rgba(35, 25, 55, 245));
853 skin_drop_hover = al_create_bitmap(32, 16);
854 al_set_target_bitmap(skin_drop_hover);
855 al_clear_to_color(al_map_rgba(120, 80, 200, 230));
856
857 /* textarea background */
858 skin_text_bg = al_create_bitmap(64, 24);
859 al_set_target_bitmap(skin_text_bg);
860 al_clear_to_color(al_map_rgba(245, 245, 220, 255));
861
862 /* titlebar Close button: red dot variants */
863 skin_tb_close_n = al_create_bitmap(16, 16);
864 al_set_target_bitmap(skin_tb_close_n);
865 al_clear_to_color(al_map_rgba(0, 0, 0, 0));
866 al_draw_filled_circle(8, 8, 6, al_map_rgba(200, 60, 60, 255));
867 skin_tb_close_h = al_create_bitmap(16, 16);
868 al_set_target_bitmap(skin_tb_close_h);
869 al_clear_to_color(al_map_rgba(0, 0, 0, 0));
870 al_draw_filled_circle(8, 8, 7, al_map_rgba(255, 100, 100, 255));
871 skin_tb_close_a = al_create_bitmap(16, 16);
872 al_set_target_bitmap(skin_tb_close_a);
873 al_clear_to_color(al_map_rgba(0, 0, 0, 0));
874 al_draw_filled_circle(8, 8, 6, al_map_rgba(140, 30, 30, 255));
875
876 al_set_target_bitmap(prev_target);
877
878 win_ids[win_idx] = n_gui_add_window(gui, "Bitmap Skinning II", 1000, 60, 280, 380);
879 win_names[win_idx] = "Bitmap Skinning II";
880 int win_skin2 = win_ids[win_idx];
881 win_idx++;
882
883 /* titlebar Close button overlay (n_gui_window_set_tb_button_bitmaps) */
885 skin_tb_close_n, skin_tb_close_h, skin_tb_close_a);
886
887 /* button_bitmap: normal/hover/active states drawn from bitmaps
888 * instead of the color theme */
889 n_gui_add_button_bitmap(gui, win_skin2, "Bitmap Button", 20, 20, 240, 32,
890 skin_btn_normal, skin_btn_hover, skin_btn_active,
891 on_button_click, NULL);
892
893 /* skinned single-line textarea */
894 int skin_text = n_gui_add_textarea(gui, win_skin2, 20, 60, 240, 24, 0, 64,
895 on_text_change, NULL);
896 n_gui_textarea_set_bitmap(gui, skin_text, skin_text_bg);
897
898 /* skinned listbox */
899 int skin_list = n_gui_add_listbox(gui, win_skin2, 20, 95, 110, 80,
900 0, on_listbox_select, NULL);
901 n_gui_listbox_add_item(gui, skin_list, "Alpha");
902 n_gui_listbox_add_item(gui, skin_list, "Beta");
903 n_gui_listbox_add_item(gui, skin_list, "Gamma");
904 n_gui_listbox_add_item(gui, skin_list, "Delta");
905 n_gui_listbox_set_bitmaps(gui, skin_list, skin_list_bg, skin_list_item, skin_list_sel);
906
907 /* skinned radiolist (reuses the same three bitmaps) */
908 int skin_radio = n_gui_add_radiolist(gui, win_skin2, 150, 95, 110, 80,
909 on_radiolist_select, NULL);
910 n_gui_radiolist_add_item(gui, skin_radio, "Red");
911 n_gui_radiolist_add_item(gui, skin_radio, "Green");
912 n_gui_radiolist_add_item(gui, skin_radio, "Blue");
913 n_gui_radiolist_set_bitmaps(gui, skin_radio, skin_list_bg, skin_list_item, skin_list_sel);
914
915 /* skinned combobox */
916 int skin_combo = n_gui_add_combobox(gui, win_skin2, 20, 190, 240, 24,
917 on_combobox_select, NULL);
918 n_gui_combobox_add_item(gui, skin_combo, "First");
919 n_gui_combobox_add_item(gui, skin_combo, "Second");
920 n_gui_combobox_add_item(gui, skin_combo, "Third");
921 n_gui_combobox_set_bitmaps(gui, skin_combo, skin_list_bg, skin_list_item, skin_list_sel);
922
923 /* skinned dropmenu (with three static entries) */
924 int skin_drop = n_gui_add_dropmenu(gui, win_skin2, "Drop Menu", 20, 220, 240, 24, NULL, NULL);
925 n_gui_dropmenu_add_entry(gui, skin_drop, "Entry one", 1, NULL, NULL);
926 n_gui_dropmenu_add_entry(gui, skin_drop, "Entry two", 2, NULL, NULL);
927 n_gui_dropmenu_add_entry(gui, skin_drop, "Entry three", 3, NULL, NULL);
928 n_gui_dropmenu_set_bitmaps(gui, skin_drop, skin_drop_panel, skin_drop_hover);
929
930 n_gui_add_label(gui, win_skin2, "Button, textarea, listbox, radiolist,", 20, 255, 250, 16, N_GUI_ALIGN_LEFT);
931 n_gui_add_label(gui, win_skin2, "combobox, dropmenu, all bitmap-skinned.", 20, 273, 250, 16, N_GUI_ALIGN_LEFT);
932 n_gui_add_label(gui, win_skin2, "Close (X) in titlebar uses bitmap states.", 20, 291, 250, 16, N_GUI_ALIGN_LEFT);
933 }
934
935 /* Window 17: Layout I/O, n_gui_save_layout_json / load_layout_json */
936 win_ids[win_idx] = n_gui_add_window(gui, "Layout I/O", 1000, 460, 240, 130);
937 win_names[win_idx] = "Layout I/O";
938 {
939 int win_layout = win_ids[win_idx];
940 win_idx++;
941 n_gui_add_label(gui, win_layout, "Persist window geometry to:", 10, 8, 220, 16, N_GUI_ALIGN_LEFT);
942 n_gui_add_label(gui, win_layout, EX_GUI_LAYOUT_FILE, 10, 26, 220, 16, N_GUI_ALIGN_LEFT);
943 n_gui_add_button(gui, win_layout, "Save Layout", 10, 50, 100, 30, N_GUI_SHAPE_ROUNDED, on_save_layout_click, gui);
944 n_gui_add_button(gui, win_layout, "Load Layout", 120, 50, 100, 30, N_GUI_SHAPE_ROUNDED, on_load_layout_click, gui);
945 n_gui_add_label(gui, win_layout, "Drag windows, click Save, then Load", 10, 90, 220, 16, N_GUI_ALIGN_LEFT);
946 }
947
948 /* Window 15: Login Dialog (autofit + centered + set_focus demo) */
949 win_ids[win_idx] = n_gui_add_window(gui, "Login", 640, 450, 1, 1);
950 win_names[win_idx] = "Login Dialog";
951 {
952 int win_login = win_ids[win_idx];
953 win_idx++;
954
955 /* configure auto-fit: adjust both W and H, centered on insertion point, 10px border */
957
958 /* add widgets */
959 n_gui_add_label(gui, win_login, "Username:", 10, 10, 80, 25, N_GUI_ALIGN_LEFT);
960 int txt_user = n_gui_add_textarea(gui, win_login, 100, 10, 200, 25, 0, 64, on_text_change, NULL);
961 n_gui_add_label(gui, win_login, "Password:", 10, 45, 80, 25, N_GUI_ALIGN_LEFT);
962 int txt_pass = n_gui_add_textarea(gui, win_login, 100, 45, 200, 25, 0, 64, on_text_change, NULL);
963 int btn_login = n_gui_add_button(gui, win_login, "Login", 100, 85, 100, 30, N_GUI_SHAPE_ROUNDED, on_login_click, NULL);
964
965 /* Bind ENTER on the Login button, but only when one of the two
966 * textareas (or the button itself) has focus. The focused
967 * variant avoids triggering Login when ENTER is pressed in an
968 * unrelated textarea elsewhere in the application. */
969 int login_sources[2] = {txt_user, txt_pass};
970 n_gui_button_set_keycode_focused(gui, btn_login, ALLEGRO_KEY_ENTER, 0,
971 login_sources, 2);
972
973 /* trigger autofit calculation */
975
976 /* set initial focus to username field */
977 n_gui_set_focus(gui, txt_user);
978 }
979
980 /* enable adaptive resize mode */
981 /* Switch from virtual canvas scaling to adaptive per-window resize.
982 * Each window gets its own policy: SCALE (repositions + resizes),
983 * MOVE (repositions only), or NONE (stays fixed). */
985
1000
1001 /* main loop */
1002 al_start_timer(fps_timer);
1003 /* Redraw only when the GUI reports it needs it (n_gui_needs_redraw) or when
1004 * this example's own mouse-following overlay moved. An idle scene with no
1005 * input is then skipped entirely, which is the point of the redraw signal.
1006 * A host that paints no overlay of its own could gate purely on
1007 * n_gui_needs_redraw(gui). */
1008 int app_needs_redraw = 1; /* always paint the first frame */
1009 int mx = 0, my = 0;
1010 /* last text pushed into the status/projection/coord labels: the timer
1011 * refreshes a label (and marks the GUI dirty) only when it actually
1012 * changes, so a still, unchanged scene can idle instead of redrawing. */
1013 char last_status[256] = "", last_proj[128] = "", last_coord[160] = "";
1014
1015 al_clear_keyboard_state(NULL);
1016 al_flush_event_queue(event_queue);
1017
1018 do {
1019 ALLEGRO_EVENT ev;
1020 al_wait_for_event(event_queue, &ev);
1021
1022 if (ev.type == ALLEGRO_EVENT_DISPLAY_CLOSE) {
1023 DONE = 1;
1024 }
1025 if (ev.type == ALLEGRO_EVENT_KEY_DOWN && ev.keyboard.keycode == ALLEGRO_KEY_ESCAPE) {
1026 DONE = 1;
1027 }
1028
1029 /* handle display resize: in adaptive mode, windows reposition/resize
1030 * according to their individual policies (NONE/MOVE/SCALE) */
1031 if (ev.type == ALLEGRO_EVENT_DISPLAY_RESIZE) {
1032 al_acknowledge_resize(display);
1033 int new_w = al_get_display_width(display);
1034 int new_h = al_get_display_height(display);
1035 n_gui_set_display_size(gui, (float)new_w, (float)new_h);
1036 }
1037
1038 /* pass events to the GUI, check if the event was consumed.
1039 * Use gui_handled to prevent mouse events from reaching game logic
1040 * when the cursor is over a GUI window or widget.
1041 * Example: if (!gui_handled && ev.type == ALLEGRO_EVENT_MOUSE_BUTTON_DOWN) { ... } */
1042 int gui_handled = n_gui_process_event(gui, ev);
1043 (void)gui_handled;
1044
1045 if (ev.type == ALLEGRO_EVENT_MOUSE_AXES) {
1046 mx = ev.mouse.x;
1047 my = ev.mouse.y;
1048 app_needs_redraw = 1; /* the crosshair overlay follows the pointer */
1049 }
1050
1051 if (ev.type == ALLEGRO_EVENT_TIMER) {
1052 /* update toggle status labels */
1053 char status_buf[256];
1054 snprintf(status_buf, sizeof(status_buf),
1055 "Player:%s Height:%s Grid:%s Smooth:%s Ghost:%s",
1056 player_mode ? "ON" : "off",
1057 height_mode ? "ON" : "off",
1058 show_grid ? "ON" : "off",
1059 smooth_height ? "ON" : "off",
1060 ghost_enabled ? "ON" : "off");
1061 /* Push each label only when its text changed, and tell the GUI so:
1062 * n_gui_label_set_text is a mutation made outside n_gui_process_event
1063 * (from this timer), which the dirty bit would otherwise miss, so it
1064 * is paired with n_gui_mark_dirty. See the n_gui_mark_dirty docs. */
1065 if (strcmp(last_status, status_buf) != 0) {
1066 n_gui_label_set_text(gui, lbl_status, status_buf);
1067 snprintf(last_status, sizeof(last_status), "%s", status_buf);
1069 }
1070
1071 char proj_buf[128];
1072 snprintf(proj_buf, sizeof(proj_buf), "Projection: %s", proj_names[current_proj]);
1073 if (strcmp(last_proj, proj_buf) != 0) {
1074 n_gui_label_set_text(gui, lbl_proj, proj_buf);
1075 snprintf(last_proj, sizeof(last_proj), "%s", proj_buf);
1077 }
1078
1079 /* Display the screen->virtual coordinate conversion in real
1080 * time so the helper's effect (identity when virtual canvas
1081 * is disabled, scaled when enabled) is visible without
1082 * inspecting the cursor overlay. */
1083 float vmx_lbl = 0, vmy_lbl = 0;
1084 n_gui_screen_to_virtual(gui, (float)mx, (float)my, &vmx_lbl, &vmy_lbl);
1085 char coord_buf[160];
1086 snprintf(coord_buf, sizeof(coord_buf),
1087 "Coords: screen=(%d,%d) virtual=(%.1f,%.1f) "
1088 "(via n_gui_screen_to_virtual)",
1089 mx, my, (double)vmx_lbl, (double)vmy_lbl);
1090 if (strcmp(last_coord, coord_buf) != 0) {
1091 n_gui_label_set_text(gui, lbl_coords, coord_buf);
1092 snprintf(last_coord, sizeof(last_coord), "%s", coord_buf);
1094 }
1095 }
1096
1097 /* Redraw when the GUI changed or is animating (n_gui_needs_redraw), or
1098 * when our own overlay moved. Otherwise skip the frame: input drives the
1099 * redraws, so an untouched GUI costs nothing. */
1100 if ((n_gui_needs_redraw(gui) || app_needs_redraw) && al_is_event_queue_empty(event_queue)) {
1101 al_set_target_bitmap(al_get_backbuffer(display));
1102 al_clear_to_color(al_map_rgba(30, 30, 35, 255));
1103
1104 /* draw all GUI windows and widgets */
1105 n_gui_draw(gui);
1106
1107 /* mouse cursor crosshair (transform screen coords to virtual) */
1108 {
1109 float vmx, vmy;
1110 n_gui_screen_to_virtual(gui, (float)mx, (float)my, &vmx, &vmy);
1111 /* apply the virtual canvas transform for drawing */
1112 ALLEGRO_TRANSFORM overlay_tf;
1113 al_identity_transform(&overlay_tf);
1114 if (gui->virtual_w > 0 && gui->gui_scale > 0) {
1115 al_scale_transform(&overlay_tf, gui->gui_scale, gui->gui_scale);
1116 al_translate_transform(&overlay_tf, gui->gui_offset_x, gui->gui_offset_y);
1117 }
1118 al_use_transform(&overlay_tf);
1119 /* ensure crosshair is at least 1 physical pixel thick */
1120 float cross_thick = 1.0f;
1121 if (gui->gui_scale > 0.01f && gui->gui_scale < 1.0f) {
1122 cross_thick = 1.0f / gui->gui_scale;
1123 }
1124 al_draw_line(vmx - 6, vmy, vmx + 6, vmy, al_map_rgb(255, 100, 100), cross_thick);
1125 al_draw_line(vmx, vmy - 6, vmx, vmy + 6, al_map_rgb(255, 100, 100), cross_thick);
1126 }
1127
1128 /* instructions (drawn in virtual space) */
1129 {
1130 /* explicitly set virtual canvas transform so this block is
1131 * self-contained and does not depend on previous drawing state */
1132 ALLEGRO_TRANSFORM instr_tf;
1133 al_identity_transform(&instr_tf);
1134 if (gui->virtual_w > 0 && gui->virtual_h > 0 && gui->gui_scale > 0) {
1135 al_scale_transform(&instr_tf, gui->gui_scale, gui->gui_scale);
1136 al_translate_transform(&instr_tf, gui->gui_offset_x, gui->gui_offset_y);
1137 }
1138 al_use_transform(&instr_tf);
1139 float virt_h = (gui->virtual_h > 0) ? gui->virtual_h : (float)al_get_display_height(display);
1140 al_draw_text(font, al_map_rgb(180, 180, 180), 10, virt_h - 18, 0,
1141 "Drag windows | Click widgets | Scroll lists | Resize corners/display | 'Windows' dropdown | ESC to quit");
1142 /* restore identity transform */
1143 ALLEGRO_TRANSFORM identity;
1144 al_identity_transform(&identity);
1145 al_use_transform(&identity);
1146 }
1147
1148 al_flip_display();
1149 app_needs_redraw = 0;
1150 }
1151 } while (!DONE);
1152
1153 /* cleanup, destroy GUI context first, then bitmaps (N_GUI does not own them) */
1155 if (img_192) al_destroy_bitmap(img_192);
1156 if (img_32) al_destroy_bitmap(img_32);
1157 /* skin bitmaps: destroy after GUI context since N_GUI only stores pointers */
1158 if (skin_win_bg) al_destroy_bitmap(skin_win_bg);
1159 if (skin_win_tb) al_destroy_bitmap(skin_win_tb);
1160 if (skin_sld_track) al_destroy_bitmap(skin_sld_track);
1161 if (skin_sld_fill) al_destroy_bitmap(skin_sld_fill);
1162 if (skin_sld_handle) al_destroy_bitmap(skin_sld_handle);
1163 if (skin_sld_handle_h) al_destroy_bitmap(skin_sld_handle_h);
1164 if (skin_chk_unchecked) al_destroy_bitmap(skin_chk_unchecked);
1165 if (skin_chk_checked) al_destroy_bitmap(skin_chk_checked);
1166 /* Window 16 ("Bitmap Skinning II") + titlebar Close-button bitmaps */
1167 if (skin_btn_normal) al_destroy_bitmap(skin_btn_normal);
1168 if (skin_btn_hover) al_destroy_bitmap(skin_btn_hover);
1169 if (skin_btn_active) al_destroy_bitmap(skin_btn_active);
1170 if (skin_list_bg) al_destroy_bitmap(skin_list_bg);
1171 if (skin_list_item) al_destroy_bitmap(skin_list_item);
1172 if (skin_list_sel) al_destroy_bitmap(skin_list_sel);
1173 if (skin_drop_panel) al_destroy_bitmap(skin_drop_panel);
1174 if (skin_drop_hover) al_destroy_bitmap(skin_drop_hover);
1175 if (skin_text_bg) al_destroy_bitmap(skin_text_bg);
1176 if (skin_tb_close_n) al_destroy_bitmap(skin_tb_close_n);
1177 if (skin_tb_close_h) al_destroy_bitmap(skin_tb_close_h);
1178 if (skin_tb_close_a) al_destroy_bitmap(skin_tb_close_a);
1179 al_destroy_font(font);
1180 al_destroy_timer(fps_timer);
1181 al_destroy_event_queue(event_queue);
1182 al_destroy_display(display);
1183 al_uninstall_system();
1184
1185 return 0;
1186}
int main(void)
ALLEGRO_TIMER * fps_timer
Definition ex_fluid.c:65
int getoptret
Definition ex_fluid.c:59
int DONE
Definition ex_fluid.c:58
int log_level
Definition ex_fluid.c:60
ALLEGRO_DISPLAY * display
Definition ex_fluid.c:54
void on_listbox_select(int widget_id, int index, int selected, void *user_data)
Definition ex_gui.c:159
static int proj_btn_ids[4]
Definition ex_gui.c:74
#define NUM_WINDOWS
Definition ex_gui.c:77
void on_link_click(int widget_id, const char *link, void *user_data)
Definition ex_gui.c:177
void on_grid_toggle(int widget_id, void *user_data)
Definition ex_gui.c:196
void on_player_toggle(int widget_id, void *user_data)
Definition ex_gui.c:184
void on_login_click(int widget_id, void *user_data)
Definition ex_gui.c:131
#define WIDTH
Definition ex_gui.c:42
void on_window_toggle_click(int widget_id, int entry_index, int tag, void *user_data)
Definition ex_gui.c:231
static int smooth_height
Definition ex_gui.c:63
void on_checkbox_toggle(int widget_id, int checked, void *user_data)
Definition ex_gui.c:106
void on_slider_change(int widget_id, double value, void *user_data)
Definition ex_gui.c:100
void on_button_click(int widget_id, void *user_data)
Definition ex_gui.c:94
static char theme_file[512]
Definition ex_gui.c:57
void on_windows_menu_open(int widget_id, void *user_data)
Definition ex_gui.c:240
void on_smooth_toggle(int widget_id, void *user_data)
Definition ex_gui.c:202
static int show_grid
Definition ex_gui.c:62
static int lbl_status
Definition ex_gui.c:70
void on_save_layout_click(int widget_id, void *user_data)
Definition ex_gui.c:137
void on_load_layout_click(int widget_id, void *user_data)
Definition ex_gui.c:148
void on_radiolist_select(int widget_id, int index, void *user_data)
Definition ex_gui.c:165
static int dropmenu_windows_id
Definition ex_gui.c:82
void on_combobox_select(int widget_id, int index, void *user_data)
Definition ex_gui.c:171
void on_ghost_toggle(int widget_id, void *user_data)
Definition ex_gui.c:208
static const char * proj_names[]
Definition ex_gui.c:67
void on_proj_select(int widget_id, void *user_data)
Definition ex_gui.c:215
static int player_mode
Definition ex_gui.c:60
void on_height_toggle(int widget_id, void *user_data)
Definition ex_gui.c:190
static int ghost_enabled
Definition ex_gui.c:64
static int lbl_proj
Definition ex_gui.c:71
void on_text_change(int widget_id, const char *text, void *user_data)
Definition ex_gui.c:112
void on_quit_click(int widget_id, void *user_data)
Definition ex_gui.c:124
static int height_mode
Definition ex_gui.c:61
static int lbl_coords
Definition ex_gui.c:86
void on_scroll(int widget_id, double pos, void *user_data)
Definition ex_gui.c:118
static int win_ids[18]
Definition ex_gui.c:78
static int current_proj
Definition ex_gui.c:65
#define HEIGHT
Definition ex_gui.c:43
#define EX_GUI_LAYOUT_FILE
Definition ex_gui.c:91
static const char * win_names[18]
Definition ex_gui.c:79
static N_GUI_CTX * gui
bool done
void n_abort(char const *format,...)
abort program with a text
Definition n_common.c:53
float gui_offset_x
horizontal letterbox offset for virtual canvas
Definition n_gui.h:1416
float virtual_h
virtual canvas height (0 = disabled / identity transform)
Definition n_gui.h:1412
float gui_offset_y
vertical letterbox offset for virtual canvas
Definition n_gui.h:1418
float virtual_w
virtual canvas width (0 = disabled / identity transform)
Definition n_gui.h:1410
float gui_scale
computed uniform scale factor for virtual canvas
Definition n_gui.h:1414
void n_gui_set_display_size(N_GUI_CTX *ctx, float w, float h)
Set the display (viewport) size for global scrollbar computation.
Definition n_gui.c:9034
void n_gui_combobox_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *bg, ALLEGRO_BITMAP *item_bg, ALLEGRO_BITMAP *item_selected)
Set optional bitmap overlays on a combobox widget.
Definition n_gui.c:4938
int n_gui_load_theme_json(N_GUI_CTX *ctx, const char *filepath)
load a theme and style from a JSON file
Definition n_gui.c:12558
int n_gui_button_is_toggled(N_GUI_CTX *ctx, int widget_id)
Check if a toggle button is currently in the "on" state.
Definition n_gui.c:2209
float n_gui_detect_dpi_scale(N_GUI_CTX *ctx, ALLEGRO_DISPLAY *display)
Detect and apply DPI scale from an Allegro display.
Definition n_gui.c:9113
void n_gui_toggle_window(N_GUI_CTX *ctx, int window_id)
Toggle window visibility (show if hidden, hide if shown)
Definition n_gui.c:1950
#define N_GUI_ALIGN_LEFT
left aligned text
Definition n_gui.h:189
#define N_GUI_IMAGE_FIT
scale to fit within bounds, keep aspect ratio
Definition n_gui.h:181
int n_gui_add_slider(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, double min_val, double max_val, double initial, int mode, void(*on_change)(int, double, void *), void *user_data)
Add a slider widget.
Definition n_gui.c:2442
void n_gui_window_apply_autofit(N_GUI_CTX *ctx, int window_id)
Trigger auto-fit recalculation for a window.
Definition n_gui.c:2035
int n_gui_needs_redraw(N_GUI_CTX *ctx)
Return non-zero if the GUI must be redrawn this frame, i.e.
Definition n_gui.c:978
void n_gui_textarea_set_text(N_GUI_CTX *ctx, int widget_id, const char *text)
set the text content of a textarea widget
Definition n_gui.c:3263
int n_gui_save_layout_json(N_GUI_CTX *ctx, const char *filepath)
save the geometry + persistent state of every window to a JSON file
Definition n_gui.c:12712
#define N_GUI_SLIDER_PERCENT
slider uses 0-100 percentage
Definition n_gui.h:157
int n_gui_add_vslider(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, double min_val, double max_val, double initial, int mode, void(*on_change)(int, double, void *), void *user_data)
Add a vertical slider widget.
Definition n_gui.c:2484
void n_gui_set_display(N_GUI_CTX *ctx, ALLEGRO_DISPLAY *display)
Set the display pointer for clipboard operations (copy/paste).
Definition n_gui.c:9071
void n_gui_window_set_bitmaps(N_GUI_CTX *ctx, int window_id, ALLEGRO_BITMAP *bg, ALLEGRO_BITMAP *titlebar, int bg_scale_mode)
Set optional bitmap overlays on a window's body and titlebar.
Definition n_gui.c:4797
void n_gui_set_widget_theme(N_GUI_CTX *ctx, int widget_id, N_GUI_THEME theme)
Override the theme of a specific widget.
Definition n_gui.c:3042
int n_gui_radiolist_add_item(N_GUI_CTX *ctx, int widget_id, const char *text)
add an item to a radiolist widget
Definition n_gui.c:4349
void n_gui_label_set_text(N_GUI_CTX *ctx, int widget_id, const char *text)
set the text of a label widget
Definition n_gui.c:4511
int n_gui_add_listbox(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, int selection_mode, void(*on_select)(int, int, int, void *), void *user_data)
Add a listbox widget.
Definition n_gui.c:2620
#define N_GUI_WIN_RESIZE_SCALE
reposition AND resize proportionally, child widgets scale too
Definition n_gui.h:290
#define N_GUI_SLIDER_VALUE
slider uses raw start/end values
Definition n_gui.h:155
void n_gui_window_set_tb_button_bitmaps(N_GUI_CTX *ctx, int window_id, int btn_type, ALLEGRO_BITMAP *normal, ALLEGRO_BITMAP *hover, ALLEGRO_BITMAP *active)
Set optional bitmap overlays on a titlebar button.
Definition n_gui.c:1723
int n_gui_process_event(N_GUI_CTX *ctx, ALLEGRO_EVENT event)
Process an allegro event through the GUI system.
Definition n_gui.c:9836
int n_gui_add_label(N_GUI_CTX *ctx, int window_id, const char *text, float x, float y, float w, float h, int align)
Add a static text label.
Definition n_gui.c:2966
void n_gui_set_widget_enabled(N_GUI_CTX *ctx, int widget_id, int enabled)
Enable or disable a widget.
Definition n_gui.c:3084
int n_gui_add_radiolist(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 radio list widget (single selection with radio bullets)
Definition n_gui.c:2839
#define N_GUI_WIN_FIXED_POSITION
disable window dragging (default:enable)
Definition n_gui.h:231
void n_gui_listbox_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *bg, ALLEGRO_BITMAP *item_bg, ALLEGRO_BITMAP *item_selected)
Set optional bitmap overlays on a listbox widget.
Definition n_gui.c:4906
void n_gui_window_set_resize_policy(N_GUI_CTX *ctx, int window_id, int policy)
Set per-window resize policy (N_GUI_WIN_RESIZE_NONE / _MOVE / _SCALE).
Definition n_gui.c:8936
void n_gui_button_set_keycode_focused(N_GUI_CTX *ctx, int widget_id, int keycode, int modifiers, const int *sources, int source_count)
Set a focused key binding on a button.
Definition n_gui.c:2421
void n_gui_listbox_set_selected(N_GUI_CTX *ctx, int widget_id, int index, int selected)
set the selection state of a listbox item
Definition n_gui.c:3501
int n_gui_add_window_auto(N_GUI_CTX *ctx, const char *title, float x, float y)
Add a window with automatic sizing (use n_gui_window_autosize after adding widgets)
Definition n_gui.c:1942
int n_gui_listbox_add_item(N_GUI_CTX *ctx, int widget_id, const char *text)
add an item to a listbox widget
Definition n_gui.c:3371
void n_gui_set_virtual_size(N_GUI_CTX *ctx, float w, float h)
Set the virtual canvas size for resolution-independent scaling.
Definition n_gui.c:8831
#define N_GUI_WIN_RESIZE_NONE
no adaptation: absolute position and size unchanged
Definition n_gui.h:286
#define N_GUI_AUTOFIT_WH
auto-adjust both width and height (convenience: W|H)
Definition n_gui.h:298
#define N_GUI_SELECT_SINGLE
single item selection
Definition n_gui.h:175
#define N_GUI_TB_BTN_CLOSE
close titlebar button
Definition n_gui.h:276
int n_gui_combobox_add_item(N_GUI_CTX *ctx, int widget_id, const char *text)
add an item to a combo box
Definition n_gui.c:4431
void n_gui_window_autosize(N_GUI_CTX *ctx, int window_id)
Recompute and apply minimum-fit size for a window based on its current widgets.
Definition n_gui.c:1987
void n_gui_set_focus(N_GUI_CTX *ctx, int widget_id)
Set keyboard focus to a specific widget.
Definition n_gui.c:3105
#define N_GUI_SELECT_MULTIPLE
multiple item selection
Definition n_gui.h:177
#define N_GUI_WIN_FRAMELESS
frameless window: no title bar drawn, drag via window body unless N_GUI_WIN_FIXED_POSITION is also se...
Definition n_gui.h:233
int n_gui_add_combobox(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 combo box widget (dropdown selector)
Definition n_gui.c:2874
void n_gui_button_set_toggled(N_GUI_CTX *ctx, int widget_id, int toggled)
Set the toggle state of a button.
Definition n_gui.c:2379
int n_gui_add_toggle_button(N_GUI_CTX *ctx, int window_id, const char *label, float x, float y, float w, float h, int shape, int initial_state, void(*on_click)(int, void *), void *user_data)
Add a toggle button widget (stays clicked/unclicked on single click)
Definition n_gui.c:2193
int n_gui_add_label_link(N_GUI_CTX *ctx, int window_id, const char *text, const char *link, float x, float y, float w, float h, int align, void(*on_link_click)(int, const char *, void *), void *user_data)
Add a static text label with hyperlink.
Definition n_gui.c:3007
int n_gui_add_image(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, ALLEGRO_BITMAP *bitmap, int scale_mode)
Add an image display widget.
Definition n_gui.c:2937
void n_gui_label_set_bitmap(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *bg)
Set optional background bitmap on a label widget.
Definition n_gui.c:4969
void n_gui_draw(N_GUI_CTX *ctx)
Draw all visible windows and their widgets.
Definition n_gui.c:8542
#define N_GUI_AUTOFIT_CENTER
center the window on its insertion point after auto-fit (overrides EXPAND_LEFT/EXPAND_UP for centerin...
Definition n_gui.h:304
void n_gui_slider_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *track, ALLEGRO_BITMAP *fill, ALLEGRO_BITMAP *handle, ALLEGRO_BITMAP *handle_hover, ALLEGRO_BITMAP *handle_active)
Set optional bitmap overlays on a slider widget.
Definition n_gui.c:4812
#define N_GUI_SCROLLBAR_H
horizontal scrollbar
Definition n_gui.h:167
int n_gui_dropmenu_add_dynamic_entry(N_GUI_CTX *ctx, int widget_id, const char *text, int tag, void(*on_click)(int, int, int, void *), void *user_data)
Add a dynamic entry (rebuilt each time menu opens)
Definition n_gui.c:4669
void n_gui_button_set_keycode(N_GUI_CTX *ctx, int widget_id, int keycode, int modifiers)
Bind a keyboard key with optional modifier requirements to a button.
Definition n_gui.c:2411
int n_gui_window_is_open(N_GUI_CTX *ctx, int window_id)
Check if a window is currently visible.
Definition n_gui.c:1959
int n_gui_dropmenu_add_entry(N_GUI_CTX *ctx, int widget_id, const char *text, int tag, void(*on_click)(int, int, int, void *), void *user_data)
Add a static entry to a dropdown menu.
Definition n_gui.c:4646
#define N_GUI_IMAGE_STRETCH
stretch to fill bounds
Definition n_gui.h:183
void n_gui_dropmenu_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *panel, ALLEGRO_BITMAP *item_hover)
Set optional bitmap overlays on a dropmenu widget.
Definition n_gui.c:4954
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.
Definition n_gui.c:1063
N_GUI_CTX * n_gui_new_ctx(ALLEGRO_FONT *default_font)
Create a new GUI context.
Definition n_gui.c:903
void n_gui_radiolist_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *bg, ALLEGRO_BITMAP *item_bg, ALLEGRO_BITMAP *item_selected)
Set optional bitmap overlays on a radiolist widget.
Definition n_gui.c:4922
int n_gui_add_button_bitmap(N_GUI_CTX *ctx, int window_id, const char *label, float x, float y, float w, float h, ALLEGRO_BITMAP *normal, ALLEGRO_BITMAP *hover, ALLEGRO_BITMAP *active, void(*on_click)(int, void *), void *user_data)
Add a bitmap-based button.
Definition n_gui.c:2165
#define N_GUI_IMAGE_CENTER
draw at original size, centered
Definition n_gui.h:185
void n_gui_set_resize_mode(N_GUI_CTX *ctx, int mode)
Set context-level resize mode: N_GUI_RESIZE_VIRTUAL (default) or N_GUI_RESIZE_ADAPTIVE.
Definition n_gui.c:8897
#define N_GUI_ALIGN_CENTER
center aligned text
Definition n_gui.h:191
void n_gui_textarea_set_bitmap(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *bg)
Set optional background bitmap on a textarea widget.
Definition n_gui.c:4863
int n_gui_add_scrollbar(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, int orientation, int shape, double content_size, double viewport_size, void(*on_scroll)(int, double, void *), void *user_data)
Add a scrollbar widget.
Definition n_gui.c:2577
void n_gui_destroy_ctx(N_GUI_CTX **ctx)
Destroy a GUI context and all its windows/widgets.
Definition n_gui.c:995
void n_gui_checkbox_set_bitmaps(N_GUI_CTX *ctx, int widget_id, ALLEGRO_BITMAP *box, ALLEGRO_BITMAP *box_checked, ALLEGRO_BITMAP *box_hover)
Set optional bitmap overlays on a checkbox widget.
Definition n_gui.c:4847
#define N_GUI_WIN_NO_HSCROLL
with N_GUI_WIN_AUTO_SCROLLBAR, never show the horizontal scrollbar (vertical-only scrolling): content...
Definition n_gui.h:244
#define N_GUI_WIN_RESIZE_MOVE
reposition proportionally, keep pixel size
Definition n_gui.h:288
int n_gui_load_layout_json(N_GUI_CTX *ctx, const char *filepath)
load a JSON window layout file and apply it to matching windows
Definition n_gui.c:12870
#define N_GUI_SHAPE_ROUNDED
rounded rectangle shape
Definition n_gui.h:149
#define N_GUI_ALIGN_RIGHT
right aligned text
Definition n_gui.h:193
void n_gui_radiolist_set_selected(N_GUI_CTX *ctx, int widget_id, int index)
set the selected item in a radiolist widget
Definition n_gui.c:4400
void n_gui_window_set_flags(N_GUI_CTX *ctx, int window_id, int flags)
Set feature flags on a window.
Definition n_gui.c:1968
#define N_GUI_ALIGN_JUSTIFIED
justified text (spread words to fill width)
Definition n_gui.h:195
void n_gui_set_widget_visible(N_GUI_CTX *ctx, int widget_id, int visible)
Show or hide a widget.
Definition n_gui.c:3075
void n_gui_mark_dirty(N_GUI_CTX *ctx)
Mark the GUI as needing a redraw.
Definition n_gui.c:974
#define N_GUI_ID_MAX
maximum length for widget id/name strings
Definition n_gui.h:85
#define N_GUI_WIN_AUTO_SCROLLBAR
enable automatic scrollbars when content exceeds window size
Definition n_gui.h:227
#define N_GUI_RESIZE_ADAPTIVE
virtual size tracks display; windows adapt per their resize_policy
Definition n_gui.h:282
int n_gui_add_textarea(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, int multiline, size_t char_limit, void(*on_change)(int, const char *, void *), void *user_data)
Add a text area widget.
Definition n_gui.c:2498
int n_gui_add_checkbox(N_GUI_CTX *ctx, int window_id, const char *label, float x, float y, float w, float h, int initial_checked, void(*on_toggle)(int, int, void *), void *user_data)
Add a checkbox widget.
Definition n_gui.c:2543
#define N_GUI_SHAPE_RECT
rectangle shape (default)
Definition n_gui.h:147
void n_gui_combobox_set_selected(N_GUI_CTX *ctx, int widget_id, int index)
set the selected item in a combobox widget
Definition n_gui.c:4478
#define N_GUI_SCROLLBAR_V
vertical scrollbar
Definition n_gui.h:169
N_GUI_THEME n_gui_make_theme(ALLEGRO_COLOR bg, ALLEGRO_COLOR bg_hover, ALLEGRO_COLOR bg_active, ALLEGRO_COLOR border, ALLEGRO_COLOR border_hover, ALLEGRO_COLOR border_active, ALLEGRO_COLOR text, ALLEGRO_COLOR text_hover, ALLEGRO_COLOR text_active, float border_thickness, float corner_rx, float corner_ry)
Create a custom theme with explicit colours.
Definition n_gui.c:685
int n_gui_add_dropmenu(N_GUI_CTX *ctx, int window_id, const char *label, float x, float y, float w, float h, void(*on_open)(int, void *), void *on_open_user_data)
Add a dropdown menu widget.
Definition n_gui.c:4568
void n_gui_screen_to_virtual(const N_GUI_CTX *ctx, float sx, float sy, float *vx, float *vy)
Convert physical screen coordinates to virtual canvas coordinates.
Definition n_gui.c:8876
int n_gui_add_button(N_GUI_CTX *ctx, int window_id, const char *label, float x, float y, float w, float h, int shape, void(*on_click)(int, void *), void *user_data)
Add a button widget to a window.
Definition n_gui.c:2124
#define N_GUI_WIN_RESIZABLE
enable user-resizable window with a drag handle at bottom-right
Definition n_gui.h:229
void n_gui_window_set_autofit(N_GUI_CTX *ctx, int window_id, int autofit_flags, float border)
Configure auto-fit behavior for a dialog window.
Definition n_gui.c:2016
void n_gui_dropmenu_clear_dynamic(N_GUI_CTX *ctx, int widget_id)
Remove all dynamic entries (keep static ones)
Definition n_gui.c:4694
The top-level GUI context that holds all windows.
Definition n_gui.h:1354
Color theme for a widget.
Definition n_gui.h:341
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
Definition n_log.h:89
#define LOG_DEBUG
debug-level messages
Definition n_log.h:84
#define LOG_ERR
error conditions
Definition n_log.h:76
int set_log_file(char *file)
Set the logging to a file instead of stderr.
Definition n_log.c:168
void set_log_level(const int log_level)
Set the global log level value ( static int LOG_LEVEL )
Definition n_log.c:121
#define LOG_NOTICE
normal but significant condition
Definition n_log.h:80
#define LOG_INFO
informational
Definition n_log.h:82
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.