Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_gui_custom.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
28#define ALLEGRO_UNSTABLE 1
29
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <unistd.h>
34
35#include "nilorea/n_common.h"
36#include "nilorea/n_gui.h"
37#include "nilorea/n_log.h"
38
39static int log_level = LOG_ERR;
40static int failures = 0;
41
42static int process_args(int argc, char** argv) {
43 int opt;
44 while ((opt = getopt(argc, argv, "V:")) != -1) {
45 switch (opt) {
46 case 'V':
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))
57 else
58 return -1;
59 break;
60 default:
61 return -1;
62 }
63 }
64 return 0;
65}
66
67static void expect_true(const char* label, int cond) {
68 if (!cond) {
69 n_log(LOG_ERR, "%s: condition false", label);
70 failures++;
71 }
72}
73
74/* the owner-draw callback: record that it fired, where, and with what size, then
75 paint a filled rectangle plus a label inside the widget's rectangle. */
76typedef struct {
77 int calls; /* how many times the callback ran */
78 float last_x; /* absolute x it was handed */
79 float last_y; /* absolute y it was handed */
80 float seen_w; /* the widget width it observed */
81 int had_font; /* was a usable font supplied */
83
84static void custom_draw(N_GUI_WIDGET* widget, float x, float y, ALLEGRO_FONT* font, void* user_data) {
85 DRAW_STATE* st = (DRAW_STATE*)user_data;
86 if (st) {
87 st->calls++;
88 st->last_x = x;
89 st->last_y = y;
90 st->seen_w = widget ? widget->w : 0.0f;
91 st->had_font = (font != NULL);
92 }
93 if (widget) {
94 al_draw_filled_rectangle(x, y, x + widget->w, y + widget->h, al_map_rgb(30, 120, 200));
95 if (font)
96 al_draw_text(font, al_map_rgb(255, 255, 255), x + 6.0f, y + 6.0f, 0, "custom");
97 }
98}
99
100int main(int argc, char** argv) {
102 if (process_args(argc, argv) != 0) {
103 fprintf(stderr, "Usage: %s [-V LOG_LEVEL]\n", argv[0]);
104 return 2;
105 }
107
108 if (!al_init() || !al_init_font_addon() || !al_init_primitives_addon()) {
109 n_log(LOG_ERR, "allegro init failed");
110 return 1;
111 }
112 ALLEGRO_FONT* font = al_create_builtin_font();
113 if (!font) {
114 n_log(LOG_ERR, "al_create_builtin_font failed");
115 return 1;
116 }
117 N_GUI_CTX* gui = n_gui_new_ctx(font);
118 if (!gui) {
119 n_log(LOG_ERR, "n_gui_new_ctx failed");
120 al_destroy_font(font);
121 return 1;
122 }
123 n_gui_set_display_size(gui, 800.0f, 600.0f);
124
125 int win = n_gui_add_window(gui, "Panel", 0.0f, 0.0f, 800.0f, 600.0f);
126 expect_true("window created", win >= 0);
127
128 DRAW_STATE st = {0, 0.0f, 0.0f, 0.0f, 0};
129 int cw = n_gui_add_custom(gui, win, 40.0f, 50.0f, 260.0f, 120.0f, custom_draw, &st);
130 expect_true("custom widget created", cw >= 0);
131
133 expect_true("widget retrievable", w != NULL);
134 expect_true("widget is CUSTOM type", w && w->type == N_GUI_TYPE_CUSTOM);
135 expect_true("widget keeps its size", w && w->w == 260.0f && w->h == 120.0f);
136
137 /* a NULL draw callback is allowed (reserves space, paints nothing) */
138 int cw2 = n_gui_add_custom(gui, win, 0.0f, 0.0f, 10.0f, 10.0f, NULL, NULL);
139 expect_true("NULL-draw custom widget created", cw2 >= 0);
140
141 /* render one frame into a memory bitmap (no display needed) and confirm the
142 paint callback fired with the widget's absolute position and size */
143 al_set_new_bitmap_flags(ALLEGRO_MEMORY_BITMAP);
144 ALLEGRO_BITMAP* target = al_create_bitmap(800, 600);
145 expect_true("memory target created", target != NULL);
146 if (target) {
147 al_set_target_bitmap(target);
148 al_clear_to_color(al_map_rgb(0, 0, 0));
150 al_set_target_bitmap(NULL);
151 al_destroy_bitmap(target);
152 }
153 expect_true("draw callback fired", st.calls > 0);
154 expect_true("callback saw the widget width", st.seen_w == 260.0f);
155 expect_true("callback got a usable font", st.had_font == 1);
156 /* the widget sits at window (0,0) + (40,50), so its absolute x/y are >= that */
157 expect_true("callback got an absolute position", st.last_x >= 40.0f && st.last_y >= 50.0f);
158
160 al_destroy_font(font);
161
162 if (failures) {
163 n_log(LOG_ERR, "ex_gui_custom: %d failure(s)", failures);
164 return 1;
165 }
166 n_log(LOG_NOTICE, "ex_gui_custom: all checks passed");
167 return 0;
168}
static int failures
int main(void)
void process_args(int argc, char **argv)
Definition ex_common.c:48
int log_level
Definition ex_fluid.c:60
static void expect_true(const char *label, int cond)
static void custom_draw(N_GUI_WIDGET *widget, float x, float y, ALLEGRO_FONT *font, void *user_data)
static N_GUI_CTX * gui
float h
height
Definition n_gui.h:894
float w
width
Definition n_gui.h:892
int type
widget type (N_GUI_TYPE_*)
Definition n_gui.h:886
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_draw(N_GUI_CTX *ctx)
Draw all visible windows and their widgets.
Definition n_gui.c:8542
N_GUI_WIDGET * n_gui_get_widget(N_GUI_CTX *ctx, int widget_id)
Get a widget pointer by id.
Definition n_gui.c:3028
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
#define N_GUI_TYPE_CUSTOM
widget type: owner-draw custom widget (rendering delegated to a callback)
Definition n_gui.h:125
void n_gui_destroy_ctx(N_GUI_CTX **ctx)
Destroy a GUI context and all its windows/widgets.
Definition n_gui.c:995
int n_gui_add_custom(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, N_GUI_CUSTOM_DRAW draw, void *user_data)
add an owner-draw custom widget; returns the widget id or -1
Definition n_gui.c:4315
The top-level GUI context that holds all windows.
Definition n_gui.h:1354
A single GUI widget.
Definition n_gui.h:882
#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
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_NULL
no log output
Definition n_log.h:46
#define LOG_INFO
informational
Definition n_log.h:82
Common headers and low-level functions & define.
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.
Generic log system.