Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_gui_splitpane.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_log.h"
36#include "nilorea/n_gui.h"
37
38static int log_level = LOG_ERR;
39static int failures = 0;
40
41static int process_args(int argc, char** argv) {
42 int opt;
43 while ((opt = getopt(argc, argv, "V:")) != -1) {
44 switch (opt) {
45 case 'V':
46 if (!strcmp("LOG_NULL", optarg))
48 else if (!strcmp("LOG_NOTICE", optarg))
50 else if (!strcmp("LOG_INFO", optarg))
52 else if (!strcmp("LOG_ERR", optarg))
54 else if (!strcmp("LOG_DEBUG", optarg))
56 else
57 return -1;
58 break;
59 default:
60 return -1;
61 }
62 }
63 return 0;
64}
65
66static void expect_close(const char* label, float got, float want, float tol) {
67 float d = got - want;
68 if (d < 0) d = -d;
69 if (d > tol) {
70 n_log(LOG_ERR, "%s: got %.3f, expected %.3f", label, got, want);
71 failures++;
72 }
73}
74
75static void expect_true(const char* label, int cond) {
76 if (!cond) {
77 n_log(LOG_ERR, "%s: condition false", label);
78 failures++;
79 }
80}
81
82int main(int argc, char** argv) {
84 if (process_args(argc, argv) != 0) {
85 fprintf(stderr, "Usage: %s [-V LOG_LEVEL]\n", argv[0]);
86 return 2;
87 }
89
90 if (!al_init() || !al_init_font_addon()) {
91 n_log(LOG_ERR, "allegro init failed");
92 return 1;
93 }
94 ALLEGRO_FONT* font = al_create_builtin_font();
95 if (!font) {
96 n_log(LOG_ERR, "al_create_builtin_font failed");
97 return 1;
98 }
100 if (!gui) {
101 n_log(LOG_ERR, "n_gui_new_ctx failed");
102 al_destroy_font(font);
103 return 1;
104 }
105 n_gui_set_display_size(gui, 800.0f, 600.0f);
106
107 int win = n_gui_add_window(gui, "Panel", 0.0f, 0.0f, 800.0f, 600.0f);
108 expect_true("window created", win >= 0);
109
110 int sp = n_gui_add_splitpane(gui, win, 0.0f, 0.0f, 800.0f, 600.0f, N_GUI_SPLIT_VERTICAL, 0.5f, NULL, NULL);
111 expect_true("splitpane created", sp >= 0);
112 expect_close("initial ratio", n_gui_splitpane_get_ratio(gui, sp), 0.5f, 0.001f);
113
115 expect_close("set ratio 0.8", n_gui_splitpane_get_ratio(gui, sp), 0.8f, 0.001f);
116
117 /* default clamp is [0.05, 0.95] */
119 expect_close("clamp high to 0.95", n_gui_splitpane_get_ratio(gui, sp), 0.95f, 0.001f);
120 n_gui_splitpane_set_ratio(gui, sp, -1.0f);
121 expect_close("clamp low to 0.05", n_gui_splitpane_get_ratio(gui, sp), 0.05f, 0.001f);
122
123 /* tighten the limits and confirm the stored ratio is pulled into range */
124 n_gui_splitpane_set_limits(gui, sp, 0.2f, 0.7f);
125 expect_close("ratio pulled to new min", n_gui_splitpane_get_ratio(gui, sp), 0.2f, 0.001f);
127 expect_close("clamp to new max 0.7", n_gui_splitpane_get_ratio(gui, sp), 0.7f, 0.001f);
128
130 al_destroy_font(font);
131
132 if (failures) {
133 n_log(LOG_ERR, "ex_gui_splitpane: %d failure(s)", failures);
134 return 1;
135 }
136 n_log(LOG_NOTICE, "ex_gui_splitpane: all checks passed");
137 return 0;
138}
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 void expect_close(const char *label, float got, float want, float tol)
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
float n_gui_splitpane_get_ratio(N_GUI_CTX *ctx, int widget_id)
get the current divider ratio of a split pane
Definition n_gui.c:3538
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_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
void n_gui_splitpane_set_ratio(N_GUI_CTX *ctx, int widget_id, float ratio)
set the divider ratio of a split pane (clamped to its min/max)
Definition n_gui.c:3550
void n_gui_splitpane_set_limits(N_GUI_CTX *ctx, int widget_id, float min_ratio, float max_ratio)
set the minimum and maximum allowed divider ratio of a split pane
Definition n_gui.c:3566
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
Common headers and low-level functions & define.
GUI system: buttons, sliders, text areas, checkboxes, scrollbars, dropdown menus, windows.
Generic log system.