Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_gui_zorder.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
27#define ALLEGRO_UNSTABLE 1
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <unistd.h>
33
34#include "nilorea/n_common.h"
35#include "nilorea/n_gui.h"
36#include "nilorea/n_log.h"
37
38static int log_level = LOG_ERR;
39static int failures = 0;
40static int g_selected_row = -1; /* set by the datagrid's on_select callback */
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/* datagrid row-select callback: record which row was selected */
75static void on_grid_select(int widget_id, int row, void* user_data) {
76 (void)widget_id;
77 (void)user_data;
78 g_selected_row = row;
79}
80
81/* synthesize a left-button press at (x,y) and feed it to the GUI */
82static void click_at(N_GUI_CTX* gui, int x, int y) {
83 ALLEGRO_EVENT ev;
84 memset(&ev, 0, sizeof(ev));
85 ev.mouse.x = x;
86 ev.mouse.y = y;
87 ev.mouse.button = 1;
88 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_DOWN;
90 ev.type = ALLEGRO_EVENT_MOUSE_BUTTON_UP;
92}
93
94int main(int argc, char** argv) {
95 int i;
97 if (process_args(argc, argv) != 0) {
98 fprintf(stderr, "Usage: %s [-V LOG_LEVEL]\n", argv[0]);
99 return 2;
100 }
102
103 if (!al_init() || !al_init_font_addon()) {
104 n_log(LOG_ERR, "allegro init failed");
105 return 1;
106 }
107 ALLEGRO_FONT* font = al_create_builtin_font();
108 if (!font) {
109 n_log(LOG_ERR, "al_create_builtin_font failed");
110 return 1;
111 }
112 N_GUI_CTX* gui = n_gui_new_ctx(font);
113 if (!gui) {
114 n_log(LOG_ERR, "n_gui_new_ctx failed");
115 al_destroy_font(font);
116 return 1;
117 }
118 n_gui_set_display_size(gui, 800.0f, 600.0f);
119
120 {
121 int win = n_gui_add_window(gui, "Panel", 0.0f, 0.0f, 800.0f, 600.0f);
122 int split, grid;
123 expect_true("window created", win >= 0);
125
126 /* a split pane added first (drawn underneath), then a datagrid placed
127 over its left region (drawn on top) -- the exact Proxy-view shape */
128 split = n_gui_add_splitpane(gui, win, 0.0f, 0.0f, 790.0f, 560.0f, N_GUI_SPLIT_VERTICAL, 0.5f, NULL, NULL);
129 expect_true("splitpane created", split >= 0);
130 grid = n_gui_add_datagrid(gui, win, 0.0f, 0.0f, 380.0f, 560.0f, on_grid_select, NULL);
131 expect_true("datagrid created", grid >= 0);
132 n_gui_datagrid_add_column(gui, grid, "#", 60.0f);
133 n_gui_datagrid_add_column(gui, grid, "Name", 280.0f);
134 for (i = 0; i < 20; i++) {
135 char a[8], b[16];
136 const char* vals[2];
137 snprintf(a, sizeof(a), "%d", i + 1);
138 snprintf(b, sizeof(b), "row %d", i + 1);
139 vals[0] = a;
140 vals[1] = b;
141 n_gui_datagrid_add_row(gui, grid, vals);
142 }
143
144 /* click well inside the grid's data area (below the header), over the
145 region the split pane also covers; the topmost widget (the datagrid)
146 must receive it and select a row */
147 g_selected_row = -1;
148 click_at(gui, 30, 60);
149 expect_true("datagrid received the click (topmost wins)", g_selected_row >= 0);
150 }
151
153 al_destroy_font(font);
154
155 if (failures) {
156 n_log(LOG_ERR, "ex_gui_zorder: %d failure(s)", failures);
157 return 1;
158 }
159 n_log(LOG_NOTICE, "ex_gui_zorder: all checks passed");
160 return 0;
161}
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 N_GUI_CTX * gui
static int g_selected_row
static void click_at(N_GUI_CTX *gui, int x, int y)
static void on_grid_select(int widget_id, int row, void *user_data)
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
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_splitpane(N_GUI_CTX *ctx, int window_id, float x, float y, float w, float h, int orientation, float ratio, void(*on_change)(int, float, void *), void *user_data)
Add a split pane widget: a draggable divider between two regions.
Definition n_gui.c:2666
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
Definition n_gui.c:3805
#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_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_SPLIT_VERTICAL
split pane: vertical divider, regions are left and right
Definition n_gui.h:128
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_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
Definition n_gui.c:3862
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
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.
Definition n_gui.c:2787
The top-level GUI context that holds all windows.
Definition n_gui.h:1354
#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
char ** split(const char *str, const char *delim, int empty)
split the strings into a an array of char *pointer , ended by a NULL one.
Definition n_str.c:920
Common headers and low-level functions & define.
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.
Generic log system.