ui/common/context.c

Mon, 17 Nov 2025 14:27:48 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 17 Nov 2025 14:27:48 +0100
changeset 902
6872b59217a7
parent 885
28ecfe5399ae
child 905
41614c767451
permissions
-rw-r--r--

fix var creation when a widget is already bound to this var name

0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
4 * Copyright 2017 Olaf Wintermann. All rights reserved.
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
29 #include <stdio.h>
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
30 #include <stdlib.h>
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31 #include <string.h>
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
32 #include <inttypes.h>
169
fe49cff3c571 refactor widget groups/document tree (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 168
diff changeset
33 #include <stdarg.h>
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
34
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
35 #include <cx/array_list.h>
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
36 #include <cx/compare.h>
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
37 #include <cx/mempool.h>
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
38
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
39 #include "context.h"
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
40 #include "../ui/window.h"
793
f33f05cd0548 add missing widget.h include
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 775
diff changeset
41 #include "../ui/widget.h"
2
eeb50c534497 added support for replaceable documents
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1
diff changeset
42 #include "document.h"
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
43 #include "types.h"
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
44
379
958bae372271 implement ui_dialog_window (WINUI)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 372
diff changeset
45
167
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
46 static UiContext* global_context;
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
47
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
48 void uic_init_global_context(void) {
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
49 CxMempool *mp = cxMempoolCreateSimple(32);
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
50 global_context = uic_context(NULL, mp);
167
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
51 }
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
52
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
53 UiContext* ui_global_context(void) {
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
54 return global_context;
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
55 }
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
56
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
57 UiContext* uic_context(UiObject *toplevel, CxMempool *mp) {
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
58 UiContext *ctx = cxMalloc(mp->allocator, sizeof(UiContext));
111
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
59 memset(ctx, 0, sizeof(UiContext));
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
60 ctx->mp = mp;
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
61 ctx->allocator = mp->allocator;
557
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
62 ctx->destroy_handler = cxArrayListCreate(ctx->allocator, NULL, sizeof(UiDestroyHandler), 16);
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
63 ctx->obj = toplevel;
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
64 ctx->vars = cxHashMapCreate(mp->allocator, CX_STORE_POINTERS, 16);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
65
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
66 ctx->documents = cxLinkedListCreate(mp->allocator, cx_cmp_ptr, CX_STORE_POINTERS);
392
df62b7205bd3 fix UiList binding copy and missing GTK table setselection method
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 387
diff changeset
67 ctx->group_widgets = cxLinkedListCreate(mp->allocator, cx_cmp_ptr, sizeof(UiGroupWidget));
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
68 ctx->groups = cxArrayListCreate(mp->allocator, cx_cmp_int, sizeof(int), 32);
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
69
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
70 ctx->attach_document = uic_context_attach_document;
623
1ebc781c7d17 rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 622
diff changeset
71 ctx->detach_document2 = uic_context_detach_document;
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
72
293
736c962f1011 initial gtk4 porting, incomplete
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 249
diff changeset
73 #if UI_GTK2 || UI_GTK3
167
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
74 if(toplevel && toplevel->widget) {
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
75 ctx->accel_group = gtk_accel_group_new();
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
76 gtk_window_add_accel_group(GTK_WINDOW(toplevel->widget), ctx->accel_group);
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
77 }
18
06be29a56f8b added menu accelerators
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
78 #endif
06be29a56f8b added menu accelerators
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
79
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
80 return ctx;
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
81 }
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
82
128
c284c15509a8 fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 121
diff changeset
83 UiContext* uic_root_context(UiContext *ctx) {
c284c15509a8 fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 121
diff changeset
84 return ctx->parent ? uic_root_context(ctx->parent) : ctx;
c284c15509a8 fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 121
diff changeset
85 }
c284c15509a8 fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 121
diff changeset
86
557
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
87 void uic_context_add_destructor(UiContext *ctx, cx_destructor_func func, void *data) {
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
88 UiDestroyHandler handler;
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
89 handler.destructor = func;
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
90 handler.data = data;
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
91 cxListAdd(ctx->destroy_handler, &handler);
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
92 }
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
93
365
004b5dd01f6a clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 350
diff changeset
94 void uic_context_prepare_close(UiContext *ctx) {
004b5dd01f6a clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 350
diff changeset
95 cxListClear(ctx->groups);
004b5dd01f6a clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 350
diff changeset
96 cxListClear(ctx->group_widgets);
004b5dd01f6a clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 350
diff changeset
97 }
004b5dd01f6a clear context states before closing a window
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 350
diff changeset
98
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
99 void uic_context_attach_document(UiContext *ctx, void *document) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
100 cxListAdd(ctx->documents, document);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
101 ctx->document = document;
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
102
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
103 UiContext *doc_ctx = ui_document_context(document);
474
971dd0f3a117 fix UiContext detaching
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 471
diff changeset
104 doc_ctx->parent = ctx;
131
774b741984a2 detaching variables correctly
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 128
diff changeset
105
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
106 // if a document variable has the same name as a parent variable,
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
107 // move the bindings to the document
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
108 UiContext *var_ctx = ctx;
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
109 while(var_ctx) {
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
110 CxMapIterator i = cxMapIterator(var_ctx->vars);
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
111 cx_foreach(CxMapEntry*, entry, i) {
813
6d9066951cdb implement ui_show (win32)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 796
diff changeset
112 printf("attach %.*s\n", (int)entry->key->len, (char*)entry->key->data);
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
113 UiVar *var = entry->value;
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
114 UiVar *docvar = cxMapGet(doc_ctx->vars, *entry->key);
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
115 if(docvar) {
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
116 // bind var to document var
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
117 uic_copy_var_binding(var, docvar, TRUE);
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
118 cxIteratorFlagRemoval(i);
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
119 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
120 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
121
474
971dd0f3a117 fix UiContext detaching
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 471
diff changeset
122 var_ctx = var_ctx->parent;
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
123 }
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
124 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
125
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
126 static void uic_context_unbind_vars(UiContext *ctx) {
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
127 CxMapIterator mi = cxMapIterator(ctx->vars);
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
128 cx_foreach(CxMapEntry*, entry, mi) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
129 UiVar *var = entry->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: 507
diff changeset
130 // var->from && var->from_ctx && var->from_ctx != ctx
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
131 uic_save_var(var);
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: 507
diff changeset
132 if(var->from) {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
133 uic_copy_var_binding(var, var->from, FALSE);
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
134 cxMapPut(var->from->from_ctx->vars, *entry->key, var->from);
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: 507
diff changeset
135 var->from = NULL;
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
136 }
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
137 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
138
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
139 if(ctx->documents) {
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
140 CxIterator i = cxListIterator(ctx->documents);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
141 cx_foreach(void *, doc, i) {
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
142 UiContext *subctx = ui_document_context(doc);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
143 uic_context_unbind_vars(subctx);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
144 }
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
145 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
146 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
147
623
1ebc781c7d17 rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 622
diff changeset
148 void uic_context_detach_document(UiContext *ctx, void *document) {
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
149 // find the document in the documents list
476
31213068c2ba fix build (WINUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 474
diff changeset
150 size_t docIndex = cxListFind(ctx->documents, document);
31213068c2ba fix build (WINUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 474
diff changeset
151 if(!cxListIndexValid(ctx->documents, docIndex)) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
152 return;
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
153 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
154
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
155 cxListRemove(ctx->documents, docIndex);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
156 ctx->document = cxListAt(ctx->documents, 0);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
157
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
158 UiContext *docctx = ui_document_context(document);
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
159 uic_context_unbind_vars(docctx); // unbind all doc/subdoc vars from the parent
474
971dd0f3a117 fix UiContext detaching
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 471
diff changeset
160 docctx->parent = NULL;
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
161 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
162
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
163 void uic_context_detach_all(UiContext *ctx) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
164 // copy list
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
165 CxList *ls = cxLinkedListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
166 CxIterator i = cxListIterator(ctx->documents);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
167 cx_foreach(void *, doc, i) {
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
168 cxListAdd(ls, doc);
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
169 }
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
170
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
171 // detach documents
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
172 i = cxListIterator(ls);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
173 cx_foreach(void *, doc, i) {
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
174 ctx->detach_document2(ctx, doc);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
175 }
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
176
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 420
diff changeset
177 cxListFree(ls);
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
178 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
179
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
180 static UiVar* ctx_getvar(UiContext *ctx, CxHashKey key) {
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
181 UiVar *var = cxMapGet(ctx->vars, key);
335
91d4f0391282 add new textarea (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 325
diff changeset
182 if(!var && ctx->documents) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
183 CxIterator i = cxListIterator(ctx->documents);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
184 cx_foreach(void *, doc, i) {
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
185 UiContext *subctx = ui_document_context(doc);
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
186 var = ctx_getvar(subctx, key);
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
187 if(var) {
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
188 break;
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
189 }
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
190 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
191 }
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
192 return var;
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
193 }
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 39
diff changeset
194
167
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
195 UiVar* uic_get_var(UiContext *ctx, const char *name) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
196 CxHashKey key = cx_hash_key(name, strlen(name));
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
197 return ctx_getvar(ctx, key);
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
198 }
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
199
167
161511838ea6 add new toolbar toggle button
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 164
diff changeset
200 UiVar* uic_create_var(UiContext *ctx, const char *name, UiVarType type) {
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
201 UiVar *var = uic_get_var(ctx, name);
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
202 if(var) {
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
203 if(var->type == type) {
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
204 return var;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 141
diff changeset
205 } else {
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
206 fprintf(stderr, "UiError: var '%s' already bound with different type\n", name);
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 141
diff changeset
207 }
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
208 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
209
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 141
diff changeset
210 var = ui_malloc(ctx, sizeof(UiVar));
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
211 var->type = type;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
212 var->value = uic_create_value(ctx, 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: 507
diff changeset
213 var->original_value = NULL;
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
214 var->from = NULL;
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
215 var->from_ctx = ctx;
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
216 var->bound = FALSE;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
217
372
4657ec1229f2 fix incorrect UiVar destruction
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 365
diff changeset
218 cxMempoolSetDestructor(var, (cx_destructor_func)uic_unbind_var);
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
219
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
220 cxMapPut(ctx->vars, name, var);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
221
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
222 return var;
0
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
223 }
1f419bd32da1 added files
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
224
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
225 UiVar* uic_create_value_var(UiContext* ctx, void* value) {
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
226 UiVar *var = (UiVar*)ui_malloc(ctx, sizeof(UiVar));
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
227 var->from = NULL;
350
70305d427f25 fix ui_scrolledwindow (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 343
diff changeset
228 var->from_ctx = ctx;
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
229 var->value = 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: 507
diff changeset
230 var->original_value = NULL;
187
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
231 var->type = UI_VAR_SPECIAL;
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
232 return var;
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
233 }
24ce2c326d85 implement toggle button (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 174
diff changeset
234
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
235 void* uic_create_value(UiContext *ctx, UiVarType type) {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
236 void *val = NULL;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
237 switch(type) {
164
1d912f78fd1d fix some warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 163
diff changeset
238 case UI_VAR_SPECIAL: break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
239 case UI_VAR_INTEGER: {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
240 val = ui_int_new(ctx, NULL);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
241 break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
242 }
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
243 case UI_VAR_DOUBLE: {
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
244 val = ui_double_new(ctx, NULL);
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
245 break;
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
246 }
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
247 case UI_VAR_STRING: {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
248 val = ui_string_new(ctx, NULL);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
249 break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
250 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
251 case UI_VAR_TEXT: {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
252 val = ui_text_new(ctx, NULL);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
253 break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
254 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
255 case UI_VAR_LIST: {
146
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
256 val = ui_list_new(ctx, NULL);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
257 break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
258 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
259 case UI_VAR_RANGE: {
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
260 val = ui_range_new(ctx, NULL);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
261 break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
262 }
337
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
263 case UI_VAR_GENERIC: {
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
264 val = ui_generic_new(ctx, NULL);
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
265 }
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
266 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
267 return val;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
268 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
269
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
270 // destroys a value, that was created by uic_create_value
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
271 void uic_destroy_value(UiContext *ctx, UiVarType type, void *value) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
272 switch(type) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
273 default: {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
274 ui_free(ctx, value);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
275 break;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
276 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
277 case UI_VAR_SPECIAL: break;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
278 case UI_VAR_STRING: {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
279 UiString *s = value;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
280 if(s->value.free) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
281 s->value.free(s->value.ptr);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
282 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
283 ui_free(ctx, value);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
284 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
285 case UI_VAR_TEXT: {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
286 UiText *t = value;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
287 if(t->value.free) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
288 t->value.free(t->value.ptr);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
289 t->value.free = NULL;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
290 t->value.ptr = NULL;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
291 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
292 if(t->destroy) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
293 t->destroy(t);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
294 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
295 ui_free(ctx, value);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
296 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
297 case UI_VAR_LIST: {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
298 ui_list_free(ctx, value);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
299 break;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
300 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
301 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
302 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
303
192
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
304
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
305 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
306 if (value) {
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
307 return uic_create_value_var(current, value);
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
308 }
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
309 if (varname) {
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
310 return uic_create_var(toplevel, varname, type);
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
311 }
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
312 return NULL;
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
313 }
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
314
bcacd00ea955 implement textfield (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 187
diff changeset
315
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
316 void uic_copy_var_binding(UiVar *from, UiVar *to, UiBool copytodoc) {
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
317 // check type
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
318 if(from->type != to->type) {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
319 fprintf(stderr, "UI Error: var has incompatible type.\n");
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
320 return;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
321 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
322
146
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
323 void *fromvalue = from->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: 507
diff changeset
324 void *tovalue = to->value;
146
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
325 // update var
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
326 if(copytodoc) {
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: 507
diff changeset
327 to->from = from; // from which UiVar are the bindings copied
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
328 from->original_value = fromvalue; // save original value otherwise it would be lost
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
329 // widgets store a reference to the UiVar with their value
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
330 // the UiVar object must be updated to contain the current value object
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
331 from->value = tovalue;
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
332 } else {
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
333 if(to->original_value) {
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
334 to->value = to->original_value;
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
335 tovalue = to->value;
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
336 }
146
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
337 }
dd0ae1c62a72 new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 145
diff changeset
338
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
339 uic_copy_value_binding(from->type, from, to);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
340 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
341
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
342 void uic_copy_value_binding(UiVarType type, void *from, void *to) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
343 ui_setop_enable(TRUE);
507
7f380a3ac9a1 enable setop in uic_copy_binding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 492
diff changeset
344
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
345 // copy binding
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
346 // we don't copy the observer, because the from value never has oberservers
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
347 switch(type) {
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
348 default: fprintf(stderr, "uic_copy_binding: wtf!\n"); break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
349 case UI_VAR_SPECIAL: break;
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
350 case UI_VAR_INTEGER: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
351 UiInteger *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
352 UiInteger *t = to;
143
d499b29d7cb6 adds observer support for textarea and textfield (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 142
diff changeset
353 if(!f->obj) break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
354 uic_int_copy(f, t);
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 141
diff changeset
355 t->set(t, t->value);
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
356 break;
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
357 }
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
358 case UI_VAR_DOUBLE: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
359 UiDouble *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
360 UiDouble *t = to;
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
361 if(!f->obj) break;
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
362 uic_double_copy(f, t);
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
363 t->set(t, t->value);
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
364 break;
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
365 }
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
366 case UI_VAR_STRING: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
367 UiString *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
368 UiString *t = to;
143
d499b29d7cb6 adds observer support for textarea and textfield (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 142
diff changeset
369 if(!f->obj) break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
370 uic_string_copy(f, t);
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
371 char *tvalue = t->value.ptr ? t->value.ptr : "";
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: 507
diff changeset
372 char *fvalue = f->value.ptr ? f->value.ptr : "";
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
373 t->set(t, tvalue);
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
374 break;
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
375 }
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
376 case UI_VAR_TEXT: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
377 UiText *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
378 UiText *t = to;
143
d499b29d7cb6 adds observer support for textarea and textfield (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 142
diff changeset
379 if(!f->obj) break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
380 uic_text_copy(f, t);
486
a5f3abf8b9d1 refactor textarea to store a text buffer object in UiText values (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 476
diff changeset
381 t->restore(t);
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
382 break;
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
383 }
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: 507
diff changeset
384 case UI_VAR_LIST: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
385 UiList *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
386 UiList *t = to;
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: 507
diff changeset
387 uic_list_copy(f, t);
90e38db0c755 rework uic_copy_binding and refactore menu itemlists to bind directly to lists without using observers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 507
diff changeset
388 ui_list_update(t);
150
5cee4cb5ad79 fixes uic_copy_binding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 146
diff changeset
389 break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
390 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
391 case UI_VAR_RANGE: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
392 UiRange *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
393 UiRange *t = to;
143
d499b29d7cb6 adds observer support for textarea and textfield (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 142
diff changeset
394 if(!f->obj) break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
395 uic_range_copy(f, t);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
396 t->setextent(t, t->extent);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
397 t->setrange(t, t->min, t->max);
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
398 t->set(t, t->value);
150
5cee4cb5ad79 fixes uic_copy_binding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 146
diff changeset
399 break;
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
400 }
337
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
401 case UI_VAR_GENERIC: {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
402 UiGeneric *f = from;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
403 UiGeneric *t = to;
337
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
404 if(!f->obj) break;
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
405 uic_generic_copy(f, t);
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
406 t->set(t, t->value, t->type);
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
407 break;
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
408 }
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
409 }
507
7f380a3ac9a1 enable setop in uic_copy_binding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 492
diff changeset
410
7f380a3ac9a1 enable setop in uic_copy_binding
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 492
diff changeset
411 ui_setop_enable(FALSE);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
412 }
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
413
796
4d04cb879daa remove separate ctx vars_unbound map
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 793
diff changeset
414 void uic_save_var(UiVar *var) {
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
415 switch(var->type) {
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
416 case UI_VAR_SPECIAL: break;
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
417 case UI_VAR_INTEGER: uic_int_save(var->value); break;
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
418 case UI_VAR_DOUBLE: uic_double_save(var->value); break;
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
419 case UI_VAR_STRING: uic_string_save(var->value); break;
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
420 case UI_VAR_TEXT: uic_text_save(var->value); break;
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
421 case UI_VAR_LIST: break;
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
422 case UI_VAR_RANGE: uic_range_save(var->value); break;
337
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
423 case UI_VAR_GENERIC: uic_generic_save(var->value); break;
141
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
424 }
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
425 }
cc2170ea05ad improves doc detach and string value handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
426
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
427 void uic_unbind_var(UiVar *var) {
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
428 switch(var->type) {
164
1d912f78fd1d fix some warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 163
diff changeset
429 case UI_VAR_SPECIAL: break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
430 case UI_VAR_INTEGER: uic_int_unbind(var->value); break;
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
431 case UI_VAR_DOUBLE: uic_double_unbind(var->value); break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
432 case UI_VAR_STRING: uic_string_unbind(var->value); break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
433 case UI_VAR_TEXT: uic_text_unbind(var->value); break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
434 case UI_VAR_LIST: uic_list_unbind(var->value); break;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
435 case UI_VAR_RANGE: uic_range_unbind(var->value); break;
337
2904fba2708b add UiGeneric var type
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 335
diff changeset
436 case UI_VAR_GENERIC: uic_generic_unbind(var->value); break;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
437 }
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
438 }
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
439
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
440 const char *uic_type2str(UiVarType type) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
441 switch(type) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
442 default: return "";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
443 case UI_VAR_INTEGER: return "int";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
444 case UI_VAR_DOUBLE: return "double";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
445 case UI_VAR_STRING: return "string";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
446 case UI_VAR_TEXT: return "text";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
447 case UI_VAR_LIST: return "list";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
448 case UI_VAR_RANGE: return "range";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
449 case UI_VAR_GENERIC: return "generic";
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
450 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
451 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
452
622
9090faa4094b make var name parameters const
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 557
diff changeset
453 void uic_reg_var(UiContext *ctx, const char *name, UiVarType type, void *value) {
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
454 UiVar *var = cxMapGet(ctx->vars, name);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
455 if(!var) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
456 // create new var and add it to the context var map
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
457 var = ui_malloc(ctx, sizeof(UiVar));
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
458 cxMapPut(ctx->vars, name, var);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
459 } else {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
460 // override var with new value
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
461 if(var->type != type) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
462 fprintf(stderr, "Error: var %s type mismatch: %s - %s\n", name, uic_type2str(var->type), type);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
463 return;
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
464 }
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
465 if(var->bound) {
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
466 fprintf(stderr, "Error: var %s already bound\n", name);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
467 return;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
468 }
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
469 UiInteger *prev_value = var->value;
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
470 uic_copy_value_binding(type, prev_value, value);
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
471 uic_destroy_value(var->from_ctx, var->type, var->value);
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
472 }
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
473
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
474 var->type = type;
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 131
diff changeset
475 var->value = value;
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
476 var->from = NULL;
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
477 var->from_ctx = ctx;
902
6872b59217a7 fix var creation when a widget is already bound to this var name
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 885
diff changeset
478 var->bound = TRUE;
37
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
479 }
56016468753d refactored value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
480
2
eeb50c534497 added support for replaceable documents
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1
diff changeset
481 // public API
eeb50c534497 added support for replaceable documents
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 1
diff changeset
482
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
483 void ui_attach_document(UiContext *ctx, void *document) {
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
484 uic_context_attach_document(ctx, document);
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
485 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
486
623
1ebc781c7d17 rename ui_detach_document2 to ui_detach_document
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 622
diff changeset
487 void ui_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
488 uic_context_detach_document(ctx, document);
163
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
489 }
b70e2a77dea0 refactore document system to support document trees
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 154
diff changeset
490
111
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
491 void ui_context_closefunc(UiContext *ctx, ui_callback fnc, void *udata) {
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
492 ctx->close_callback = fnc;
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
493 ctx->close_data = udata;
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
494 }
40dbf1a7526a added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
495
624
8086681cabfb add function for getting the UiContext parent context
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 623
diff changeset
496 void ui_context_destroy(UiContext *ctx) {
557
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
497 CxIterator i = cxListIterator(ctx->destroy_handler);
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
498 cx_foreach(UiDestroyHandler *, h, i) {
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
499 h->destructor(h->data);
e6415fd4af4b implement new menu itemlist binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 553
diff changeset
500 }
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 420
diff changeset
501 cxMempoolFree(ctx->mp);
247
4b21af9d8c5a call context close handler on window close (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 239
diff changeset
502 }
4b21af9d8c5a call context close handler on window close (WinUI3)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 239
diff changeset
503
624
8086681cabfb add function for getting the UiContext parent context
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 623
diff changeset
504 UiContext* ui_context_parent(UiContext *ctx) {
8086681cabfb add function for getting the UiContext parent context
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 623
diff changeset
505 return ctx->parent;
8086681cabfb add function for getting the UiContext parent context
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 623
diff changeset
506 }
8086681cabfb add function for getting the UiContext parent context
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 623
diff changeset
507
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
508
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
509 void ui_set_group(UiContext *ctx, int group) {
471
063a9f29098c ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 440
diff changeset
510 if(!cxListIndexValid(ctx->groups, cxListFind(ctx->groups, &group))) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
511 cxListAdd(ctx->groups, &group);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
512 }
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
513
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
514 // enable/disable group widgets
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
515 uic_check_group_widgets(ctx);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
516 }
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
517
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
518 void ui_unset_group(UiContext *ctx, int group) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
519 int i = cxListFind(ctx->groups, &group);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
520 if(i != -1) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
521 cxListRemove(ctx->groups, i);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
522 }
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
523
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
524 // enable/disable group widgets
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
525 uic_check_group_widgets(ctx);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
526 }
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
527
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
528 int* ui_active_groups(UiContext *ctx, int *ngroups) {
325
99a93a9250c4 fix build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 293
diff changeset
529 *ngroups = cxListSize(ctx->groups);
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
530 return cxListAt(ctx->groups, 0);
20
2dda1ad6dc7a added groups for menu items (Cocoa)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 18
diff changeset
531 }
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
532
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
533 void uic_check_group_widgets(UiContext *ctx) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
534 int ngroups = 0;
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
535 int *groups = ui_active_groups(ctx, &ngroups);
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
536
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
537 CxIterator i = cxListIterator(ctx->group_widgets);
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
538 cx_foreach(UiGroupWidget *, gw, i) {
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
539 char *check = calloc(1, gw->numgroups);
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
540
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
541 for(int i=0;i<ngroups;i++) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
542 for(int k=0;k<gw->numgroups;k++) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
543 if(groups[i] == gw->groups[k]) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
544 check[k] = 1;
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
545 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
546 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
547 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
548
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
549 int enable = 1;
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
550 for(int i=0;i<gw->numgroups;i++) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
551 if(check[i] == 0) {
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
552 enable = 0;
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
553 break;
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
554 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
555 }
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
556 free(check);
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
557 gw->enable(gw->widget, enable);
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
558 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
559 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
560
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
561 void ui_widget_set_groups(UiContext *ctx, UIWIDGET widget, ui_enablefunc enable, ...) {
775
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
562 if(enable == NULL) {
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
563 enable = (ui_enablefunc)ui_set_enabled;
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
564 }
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
565 // get groups
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
566 CxList *groups = cxArrayListCreate(cxDefaultAllocator, NULL, sizeof(int), 16);
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
567 va_list ap;
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
568 va_start(ap, enable);
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
569 int group;
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
570 while((group = va_arg(ap, int)) != -1) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
571 cxListAdd(groups, &group);
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
572 }
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
573 va_end(ap);
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
574
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
575 uic_add_group_widget(ctx, widget, enable, groups);
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
576
440
7c4b9cba09ca update ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 420
diff changeset
577 cxListFree(groups);
168
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
578 }
1b99acacc5bb refactor widget groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
579
885
28ecfe5399ae make states array parameter const for ui_widget_set_visibility_states/ui_widget_set_groups2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 875
diff changeset
580 void ui_widget_set_groups2(UiContext *ctx, UIWIDGET widget, ui_enablefunc enable, const int *groups, int ngroups) {
775
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
581 if(enable == NULL) {
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
582 enable = (ui_enablefunc)ui_set_enabled;
c39e71be2e18 allow NULL as enablefunc in ui_widget_set_groups
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 774
diff changeset
583 }
774
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
584 CxList *ls = cxArrayListCreate(cxDefaultAllocator, NULL, sizeof(int), ngroups);
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
585 for(int i=0;i<ngroups;i++) {
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
586 cxListAdd(ls, groups+i);
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
587 }
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
588 uic_add_group_widget(ctx, widget, enable, ls);
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
589 cxListFree(ls);
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
590 }
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
591
885
28ecfe5399ae make states array parameter const for ui_widget_set_visibility_states/ui_widget_set_groups2
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 875
diff changeset
592 void ui_widget_set_visibility_states(UiContext *ctx, UIWIDGET widget, const int *states, int nstates) {
774
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
593 ui_widget_set_groups2(ctx, widget, (ui_enablefunc)ui_set_visible, states, nstates);
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
594 }
4531a342c5b3 add ui_widget_set_visibility_states
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 624
diff changeset
595
343
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
596 size_t uic_group_array_size(const int *groups) {
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
597 int i;
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
598 for(i=0;groups[i] >= 0;i++) { }
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
599 return i;
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
600 }
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
601
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
602 void uic_add_group_widget(UiContext *ctx, void *widget, ui_enablefunc enable, CxList *groups) {
343
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
603 uic_add_group_widget_i(ctx, widget, enable, cxListAt(groups, 0), cxListSize(groups));
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
604 }
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
605
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
606 void uic_add_group_widget_i(UiContext *ctx, void *widget, ui_enablefunc enable, const int *groups, size_t numgroups) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
607 const CxAllocator *a = ctx->allocator;
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
608 UiGroupWidget gw;
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
609
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
610 gw.widget = widget;
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
611 gw.enable = enable;
343
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
612 gw.numgroups = numgroups;
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
613 gw.groups = cxCalloc(a, numgroups, sizeof(int));
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
614
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
615 // copy groups
343
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
616 if(groups) {
54f5d7eb1335 implement widget groups for buttons (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 342
diff changeset
617 memcpy(gw.groups, groups, gw.numgroups * sizeof(int));
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
618 }
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
619
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
620 cxListAdd(ctx->group_widgets, &gw);
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 20
diff changeset
621 }
38
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
622
392
df62b7205bd3 fix UiList binding copy and missing GTK table setselection method
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 387
diff changeset
623 void uic_remove_group_widget(UiContext *ctx, void *widget) {
df62b7205bd3 fix UiList binding copy and missing GTK table setselection method
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 387
diff changeset
624 (void)cxListFindRemove(ctx->group_widgets, widget);
df62b7205bd3 fix UiList binding copy and missing GTK table setselection method
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 387
diff changeset
625 }
df62b7205bd3 fix UiList binding copy and missing GTK table setselection method
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 387
diff changeset
626
342
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
627 UIEXPORT void *ui_allocator(UiContext *ctx) {
387
80edb1a93f7a add public function for getting the UiContext UCX mempool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 379
diff changeset
628 return (void*)ctx->allocator;
80edb1a93f7a add public function for getting the UiContext UCX mempool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 379
diff changeset
629 }
80edb1a93f7a add public function for getting the UiContext UCX mempool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 379
diff changeset
630
80edb1a93f7a add public function for getting the UiContext UCX mempool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 379
diff changeset
631 void* ui_cx_mempool(UiContext *ctx) {
80edb1a93f7a add public function for getting the UiContext UCX mempool
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 379
diff changeset
632 return ctx->mp;
341
c7427cadabd3 make ui_getappdir() and ui_configfile() public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 337
diff changeset
633 }
c7427cadabd3 make ui_getappdir() and ui_configfile() public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 337
diff changeset
634
38
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
635 void* ui_malloc(UiContext *ctx, size_t size) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
636 return ctx ? cxMalloc(ctx->allocator, size) : NULL;
38
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
637 }
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
638
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
639 void* ui_calloc(UiContext *ctx, size_t nelem, size_t elsize) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
640 return ctx ? cxCalloc(ctx->allocator, nelem, elsize) : NULL;
38
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
641 }
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
642
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
643 void ui_free(UiContext *ctx, void *ptr) {
350
70305d427f25 fix ui_scrolledwindow (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 343
diff changeset
644 if(ctx && ptr) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
645 cxFree(ctx->allocator, ptr);
38
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
646 }
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
647 }
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
648
8ccdde37275b added some allocation functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 37
diff changeset
649 void* ui_realloc(UiContext *ctx, void *ptr, size_t size) {
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 169
diff changeset
650 return ctx ? cxRealloc(ctx->allocator, ptr, size) : NULL;
39
4e66271541e8 added table view (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 38
diff changeset
651 }
4e66271541e8 added table view (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 38
diff changeset
652
875
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
653 char* ui_strdup(UiContext *ctx, const char *str) {
342
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
654 if(!ctx) {
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
655 return NULL;
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
656 }
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
657 cxstring s = cx_str(str);
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
658 cxmutstr d = cx_strdup_a(ctx->allocator, s);
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
659 return d.ptr;
99f83fbf48e9 implement context destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 341
diff changeset
660 }
875
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
661
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
662 void ui_reg_destructor(UiContext *ctx, void *data, ui_destructor_func destr) {
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
663 cxMempoolRegister(ctx->mp, data, (cx_destructor_func)destr);
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
664 }
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
665
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
666 void ui_set_destructor(void *mem, ui_destructor_func destr) {
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
667 cxMempoolSetDestructor(mem, (cx_destructor_func)destr);
0575ca45f1bb add cleanup/destroy handler for UiString, UiText and UiGeneric
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 813
diff changeset
668 }

mercurial