Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_gui_placeholder.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;
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_true(const char* label, int cond) {
67 if (!cond) {
68 n_log(LOG_ERR, "%s: condition false", label);
69 failures++;
70 }
71}
72
73/* read back the placeholder pointer stored on a textarea widget */
74static const char* placeholder_of(N_GUI_CTX* gui, int id) {
76 if (!w || w->type != N_GUI_TYPE_TEXTAREA || !w->data)
77 return NULL;
78 return ((N_GUI_TEXTAREA_DATA*)w->data)->placeholder;
79}
80
81int main(int argc, char** argv) {
83 if (process_args(argc, argv) != 0) {
84 fprintf(stderr, "Usage: %s [-V LOG_LEVEL]\n", argv[0]);
85 return 2;
86 }
88
89 if (!al_init() || !al_init_font_addon()) {
90 n_log(LOG_ERR, "allegro init failed");
91 return 1;
92 }
93 ALLEGRO_FONT* font = al_create_builtin_font();
94 if (!font) {
95 n_log(LOG_ERR, "al_create_builtin_font failed");
96 return 1;
97 }
99 if (!gui) {
100 n_log(LOG_ERR, "n_gui_new_ctx failed");
101 al_destroy_font(font);
102 return 1;
103 }
104 n_gui_set_display_size(gui, 800.0f, 600.0f);
105
106 int win = n_gui_add_window(gui, "Panel", 0.0f, 0.0f, 800.0f, 600.0f);
107 expect_true("window created", win >= 0);
108
109 int ta = n_gui_add_textarea(gui, win, 10.0f, 10.0f, 300.0f, 24.0f, 0, 0, NULL, NULL);
110 expect_true("textarea created", ta >= 0);
111
112 /* a fresh textarea has no placeholder */
113 expect_true("no placeholder initially", placeholder_of(gui, ta) == NULL);
114
115 /* setting a placeholder stores a copy */
116 n_gui_textarea_set_placeholder(gui, ta, "https://host/path?id=FUZZ");
117 {
118 const char* p = placeholder_of(gui, ta);
119 expect_true("placeholder stored", p && strcmp(p, "https://host/path?id=FUZZ") == 0);
120 }
121
122 /* setting a second placeholder replaces the first (no leak, value updated) */
123 n_gui_textarea_set_placeholder(gui, ta, "Enter a target URL");
124 {
125 const char* p = placeholder_of(gui, ta);
126 expect_true("placeholder replaced", p && strcmp(p, "Enter a target URL") == 0);
127 }
128
129 /* the placeholder is independent of the field's text content */
130 n_gui_textarea_set_text(gui, ta, "typed text");
131 expect_true("placeholder survives set_text", placeholder_of(gui, ta) != NULL);
132
133 /* an empty string clears the placeholder */
135 expect_true("empty string clears", placeholder_of(gui, ta) == NULL);
136
137 /* NULL clears the placeholder too */
139 expect_true("placeholder set again", placeholder_of(gui, ta) != NULL);
141 expect_true("NULL clears", placeholder_of(gui, ta) == NULL);
142
143 /* setting on a wrong-type widget warns and does not crash */
144 {
145 int lbl = n_gui_add_label(gui, win, "x", 0.0f, 0.0f, 50.0f, 20.0f, N_GUI_ALIGN_LEFT);
146 n_gui_textarea_set_placeholder(gui, lbl, "ignored");
147 expect_true("label is unaffected", n_gui_get_widget(gui, lbl) != NULL);
148 }
149
151 al_destroy_font(font);
152
153 if (failures) {
154 n_log(LOG_ERR, "ex_gui_placeholder: %d failure(s)", failures);
155 return 1;
156 }
157 n_log(LOG_NOTICE, "ex_gui_placeholder: all checks passed");
158 return 0;
159}
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 const char * placeholder_of(N_GUI_CTX *gui, int id)
int type
widget type (N_GUI_TYPE_*)
Definition n_gui.h:886
void * data
widget-specific data (union via void pointer)
Definition n_gui.h:906
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
#define N_GUI_ALIGN_LEFT
left aligned text
Definition n_gui.h:189
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_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
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
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_textarea_set_placeholder(N_GUI_CTX *ctx, int widget_id, const char *text)
Set placeholder/hint text shown dimmed while a textarea is empty.
Definition n_gui.c:4889
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
#define N_GUI_TYPE_TEXTAREA
widget type: text area
Definition n_gui.h:95
The top-level GUI context that holds all windows.
Definition n_gui.h:1354
text area specific data
Definition n_gui.h:461
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.