Sun, 07 Dec 2025 19:20:48 +0100
implement radiobutton (Client)
| 0 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
4 | * Copyright 2017 Olaf Wintermann. All rights reserved. |
| 0 | 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | ||
|
14
e2fd132ab781
added menu item lists (Cocoa implementation)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
29 | #ifndef UIC_CONTEXT_H |
|
e2fd132ab781
added menu item lists (Cocoa implementation)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
30 | #define UIC_CONTEXT_H |
| 0 | 31 | |
| 32 | #include "../ui/toolkit.h" | |
| 174 | 33 | #include <cx/map.h> |
| 34 | #include <cx/hash_map.h> | |
| 35 | #include <cx/mempool.h> | |
| 36 | #include <cx/list.h> | |
| 37 | #include <cx/linked_list.h> | |
| 0 | 38 | |
| 39 | #ifdef __cplusplus | |
| 40 | extern "C" { | |
| 41 | #endif | |
| 42 | ||
|
557
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
43 | typedef struct UiVar UiVar; |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
44 | typedef struct UiListPtr UiListPtr; |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
45 | typedef struct UiListVar UiListVar; |
|
966
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
46 | typedef struct UiStateWidget UiStateWidget; |
|
557
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
47 | typedef struct UiDestroyHandler UiDestroyHandler; |
| 0 | 48 | |
|
515
9e18cb8c4412
remove enum forward declarations
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
392
diff
changeset
|
49 | typedef enum UiVarType { |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
50 | UI_VAR_SPECIAL = 0, |
|
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
51 | UI_VAR_INTEGER, |
|
145
853685152c1d
adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
141
diff
changeset
|
52 | UI_VAR_DOUBLE, |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
53 | UI_VAR_STRING, |
|
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
54 | UI_VAR_TEXT, |
|
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
55 | UI_VAR_LIST, |
|
337
2904fba2708b
add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
311
diff
changeset
|
56 | UI_VAR_RANGE, |
|
2904fba2708b
add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
311
diff
changeset
|
57 | UI_VAR_GENERIC |
|
515
9e18cb8c4412
remove enum forward declarations
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
392
diff
changeset
|
58 | } UiVarType; |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
59 | |
| 0 | 60 | struct UiContext { |
|
52
25e5390cce41
added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
61 | UiContext *parent; |
|
37
56016468753d
refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
62 | UiObject *obj; |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
63 | CxMempool *mp; |
| 174 | 64 | const CxAllocator *allocator; |
|
557
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
65 | CxList *destroy_handler; |
| 162 | 66 | |
|
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
67 | void *document; |
| 174 | 68 | CxList *documents; |
| 162 | 69 | |
|
796
4d04cb879daa
remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
625
diff
changeset
|
70 | CxMap *vars; |
| 162 | 71 | |
|
966
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
72 | CxList *states; // int list |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
73 | CxList *state_widgets; // UiGroupWidget list |
|
18
06be29a56f8b
added menu accelerators
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
74 | |
|
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
75 | void (*attach_document)(UiContext *ctx, void *document); |
|
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
76 | void (*detach_document2)(UiContext *ctx, void *document); |
|
52
25e5390cce41
added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
77 | |
|
111
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
94
diff
changeset
|
78 | char *title; |
|
94
d51e334c1439
added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
52
diff
changeset
|
79 | |
|
311
450a813dc2a5
implement GTK4 gmenu item and item list
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
293
diff
changeset
|
80 | #ifdef UI_GTK |
|
450a813dc2a5
implement GTK4 gmenu item and item list
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
293
diff
changeset
|
81 | #if GTK_CHECK_VERSION(4, 0, 0) |
|
450a813dc2a5
implement GTK4 gmenu item and item list
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
293
diff
changeset
|
82 | GActionMap *action_map; |
|
450a813dc2a5
implement GTK4 gmenu item and item list
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
293
diff
changeset
|
83 | #elif UI_GTK2 || UI_GTK3 |
|
18
06be29a56f8b
added menu accelerators
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
84 | GtkAccelGroup *accel_group; |
|
311
450a813dc2a5
implement GTK4 gmenu item and item list
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
293
diff
changeset
|
85 | #endif |
|
18
06be29a56f8b
added menu accelerators
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
86 | #endif |
|
960
e88ca7dfa943
add single-document-mode to UiContext
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
902
diff
changeset
|
87 | |
|
e88ca7dfa943
add single-document-mode to UiContext
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
902
diff
changeset
|
88 | // allow only one document to be attached |
|
e88ca7dfa943
add single-document-mode to UiContext
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
902
diff
changeset
|
89 | // attaching a document will automatically detach the current document |
|
e88ca7dfa943
add single-document-mode to UiContext
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
902
diff
changeset
|
90 | UiBool single_document_mode; |
|
111
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
94
diff
changeset
|
91 | |
|
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
94
diff
changeset
|
92 | ui_callback close_callback; |
|
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
94
diff
changeset
|
93 | void *close_data; |
| 0 | 94 | }; |
| 95 | ||
| 96 | struct UiVar { | |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
97 | void *value; |
|
553
90e38db0c755
rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
515
diff
changeset
|
98 | void *original_value; |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
99 | UiVarType type; |
|
553
90e38db0c755
rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
515
diff
changeset
|
100 | UiVar *from; |
|
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
101 | UiContext *from_ctx; |
|
902
6872b59217a7
fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
796
diff
changeset
|
102 | UiBool bound; |
| 162 | 103 | }; |
| 104 | ||
|
966
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
105 | struct UiStateWidget { |
|
168
1b99acacc5bb
refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
167
diff
changeset
|
106 | void *widget; |
|
1b99acacc5bb
refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
167
diff
changeset
|
107 | ui_enablefunc enable; |
|
966
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
108 | int *states; |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
109 | int numstates; |
|
21
012418e7dc90
added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
20
diff
changeset
|
110 | }; |
|
012418e7dc90
added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
20
diff
changeset
|
111 | |
|
557
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
112 | struct UiDestroyHandler { |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
113 | cx_destructor_func destructor; |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
114 | void *data; |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
115 | }; |
|
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
116 | |
| 0 | 117 | |
|
167
161511838ea6
add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
163
diff
changeset
|
118 | void uic_init_global_context(void); |
|
161511838ea6
add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
163
diff
changeset
|
119 | |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
120 | UiContext* uic_context(UiObject *toplevel, CxMempool *mp); |
|
128
c284c15509a8
fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
111
diff
changeset
|
121 | UiContext* uic_root_context(UiContext *ctx); |
|
557
e6415fd4af4b
implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
553
diff
changeset
|
122 | void uic_context_add_destructor(UiContext *ctx, cx_destructor_func func, void *data); |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
123 | |
|
365
004b5dd01f6a
clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
343
diff
changeset
|
124 | void uic_context_prepare_close(UiContext *ctx); |
|
004b5dd01f6a
clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
343
diff
changeset
|
125 | |
|
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
126 | void uic_context_attach_document(UiContext *ctx, void *document); |
|
623
1ebc781c7d17
rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
622
diff
changeset
|
127 | void uic_context_detach_document(UiContext *ctx, void *document); |
|
1ebc781c7d17
rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
622
diff
changeset
|
128 | void uic_context_attach_context(UiContext *ctx, UiContext *doc_ctx); // TODO |
|
1ebc781c7d17
rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
622
diff
changeset
|
129 | void uic_context_detach_context(UiContext *ctx, UiContext *doc_ctx); // TODO |
|
163
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
130 | void uic_context_detach_all(UiContext *ctx); |
|
b70e2a77dea0
refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
162
diff
changeset
|
131 | |
|
167
161511838ea6
add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
163
diff
changeset
|
132 | UiVar* uic_get_var(UiContext *ctx, const char *name); |
|
976
e2763e880938
implement radiobutton (Client)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
966
diff
changeset
|
133 | UiVar* uic_get_var_t(UiContext *ctx, const char *name, UiVarType type); |
|
167
161511838ea6
add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
163
diff
changeset
|
134 | UiVar* uic_create_var(UiContext *ctx, const char *name, UiVarType type); |
|
187
24ce2c326d85
implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
135 | UiVar* uic_create_value_var(UiContext *ctx, void *value); |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
136 | void* uic_create_value(UiContext *ctx, UiVarType type); |
|
902
6872b59217a7
fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
796
diff
changeset
|
137 | void uic_destroy_value(UiContext *ctx, UiVarType type, void *value); |
|
52
25e5390cce41
added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
138 | |
|
796
4d04cb879daa
remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
625
diff
changeset
|
139 | UiVar* uic_widget_var(UiContext *toplevel, UiContext *current, void *value, const char *varname, UiVarType type); |
|
192
bcacd00ea955
implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
187
diff
changeset
|
140 | |
|
902
6872b59217a7
fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
796
diff
changeset
|
141 | void uic_copy_var_binding(UiVar *from, UiVar *to, UiBool copytodoc); |
|
6872b59217a7
fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
796
diff
changeset
|
142 | void uic_copy_value_binding(UiVarType type, void *from, void *to); |
|
796
4d04cb879daa
remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
625
diff
changeset
|
143 | void uic_save_var(UiVar *var); |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
144 | void uic_unbind_var(UiVar *var); |
|
902
6872b59217a7
fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
796
diff
changeset
|
145 | const char *uic_type2str(UiVarType type); |
|
37
56016468753d
refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
33
diff
changeset
|
146 | |
|
622
9090faa4094b
make var name parameters const
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
557
diff
changeset
|
147 | void uic_reg_var(UiContext *ctx, const char *name, UiVarType type, void *value); |
|
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
148 | |
|
966
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
149 | size_t uic_state_array_size(const int *states); |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
150 | void uic_check_state_widgets(UiContext *ctx); |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
151 | void uic_add_state_widget(UiContext *ctx, void *widget, ui_enablefunc enable, CxList *states); |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
152 | void uic_add_state_widget_i(UiContext *ctx, void *widget, ui_enablefunc enable, const int *states, size_t numstates); |
|
e411ed7c5f10
rename groups to states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
960
diff
changeset
|
153 | void uic_remove_state_widget(UiContext *ctx, void *widget); |
|
52
25e5390cce41
added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
37
diff
changeset
|
154 | |
| 0 | 155 | #ifdef __cplusplus |
| 156 | } | |
| 157 | #endif | |
| 158 | ||
|
14
e2fd132ab781
added menu item lists (Cocoa implementation)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
2
diff
changeset
|
159 | #endif /* UIC_CONTEXT_H */ |
| 0 | 160 |