ui/gtk/button.c

Sun, 31 Mar 2024 18:29:06 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 31 Mar 2024 18:29:06 +0200
branch
newapi
changeset 276
376921880a7f
parent 274
9e2aee097b69
child 278
a8faf8757450
permissions
-rw-r--r--

add initial support for headerbars (GTK)

3
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
140
c03c338a7dcf refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 108
diff changeset
4 * Copyright 2017 Olaf Wintermann. All rights reserved.
3
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
c1a75454b444 added toolbar
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
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
29 #include <stdio.h>
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
30 #include <stdlib.h>
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
32 #include "button.h"
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
33 #include "container.h"
174
0358f1d9c506 upgrade ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 167
diff changeset
34 #include <cx/allocator.h>
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
35 #include "../common/context.h"
33
458831c574f4 added listview, sidebar and toolbar image button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 21
diff changeset
36 #include "../common/object.h"
3
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
37
276
376921880a7f add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 274
diff changeset
38 void ui_button_set_icon_name(GtkWidget *button, const char *icon) {
259
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
39 if(!icon) {
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
40 return;
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
41 }
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
42
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
43 #ifdef UI_GTK4
276
376921880a7f add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 274
diff changeset
44 gtk_button_set_icon_name(GTK_BUTTON(button), icon);
259
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
45 #else
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
46 #if GTK_CHECK_VERSION(2, 6, 0)
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
47 GtkWidget *image = gtk_image_new_from_icon_name(icon, GTK_ICON_SIZE_BUTTON);
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
48 if(image) {
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
49 gtk_button_set_image(GTK_BUTTON(button), image);
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
50 }
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
51 #else
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
52 // TODO
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
53 #endif
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
54 #endif
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
55 }
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
56
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
57 UIWIDGET ui_button_create(UiObject *obj, UiButtonArgs args) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
58 UiObject* current = uic_current_obj(obj);
259
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
59 GtkWidget *button = gtk_button_new();
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
60 if(args.label) {
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
61 gtk_button_set_label(GTK_BUTTON(button), args.label);
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
62 }
276
376921880a7f add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 274
diff changeset
63 ui_button_set_icon_name(button, args.icon);
259
8cce275d2847 implement button icon parameter (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 258
diff changeset
64
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
65
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
66 if(args.onclick) {
65
4697592e24ba added label, grid container, simple tabview and textfield (Gtk)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 59
diff changeset
67 UiEventData *event = malloc(sizeof(UiEventData));
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
68 event->obj = obj;
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
69 event->userdata = args.onclickdata;
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
70 event->callback = args.onclick;
16
a499c8a72c15 added menu item lists (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 5
diff changeset
71 event->value = 0;
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
72
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
73 g_signal_connect(
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
74 button,
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
75 "clicked",
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
76 G_CALLBACK(ui_button_clicked),
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
77 event);
21
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 16
diff changeset
78 g_signal_connect(
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 16
diff changeset
79 button,
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 16
diff changeset
80 "destroy",
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 16
diff changeset
81 G_CALLBACK(ui_destroy_userdata),
012418e7dc90 added groups for menu items (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 16
diff changeset
82 event);
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
83 }
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
84
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
85 UI_APPLY_LAYOUT1(current, args);
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
86 current->container->add(current->container, button, FALSE);
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
87
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
88 return button;
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 3
diff changeset
89 }
3
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
90
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
91
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
92 void ui_button_clicked(GtkWidget *widget, UiEventData *event) {
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
93 UiEvent e;
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
94 e.obj = event->obj;
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
95 e.window = event->obj->window;
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 42
diff changeset
96 e.document = event->obj->ctx->document;
16
a499c8a72c15 added menu item lists (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 5
diff changeset
97 e.eventdata = NULL;
a499c8a72c15 added menu item lists (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 5
diff changeset
98 e.intval = event->value;
42
29b2821d1262 added table view events (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 33
diff changeset
99 event->callback(&e, event->userdata);
3
c1a75454b444 added toolbar
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
100 }
33
458831c574f4 added listview, sidebar and toolbar image button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 21
diff changeset
101
144
29d98cff4f56 UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
102 int64_t ui_toggle_button_get(UiInteger *integer) {
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
103 GtkToggleButton *button = integer->obj;
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
104 integer->value = (int)gtk_toggle_button_get_active(button);
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
105 return integer->value;
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
106 }
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
107
144
29d98cff4f56 UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
108 void ui_toggle_button_set(UiInteger *integer, int64_t value) {
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
109 GtkToggleButton *button = integer->obj;
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
110 integer->value = value;
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
111 gtk_toggle_button_set_active(button, value != 0 ? TRUE : FALSE);
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
112 }
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
113
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
114 void ui_toggled_obs(GtkToggleToolButton *widget, UiVarEventData *event) {
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
115 UiEvent e;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
116 e.obj = event->obj;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
117 e.window = event->obj->window;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
118 e.document = event->obj->ctx->document;
143
d499b29d7cb6 adds observer support for textarea and textfield (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 142
diff changeset
119 e.eventdata = event->var->value;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
120 e.intval = gtk_toggle_tool_button_get_active(widget);
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
121
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
122 UiInteger *i = event->var->value;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
123 ui_notify_evt(i->observers, &e);
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
124 }
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
125
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
126 static UIWIDGET togglebutton_create(UiObject *obj, GtkWidget *widget, UiToggleArgs args) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
127 UiObject* current = uic_current_obj(obj);
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
128
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
129 if(args.label) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
130 gtk_button_set_label(GTK_BUTTON(widget), args.label);
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
131 }
276
376921880a7f add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 274
diff changeset
132 ui_button_set_icon_name(widget, args.icon);
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
133
261
b39f0e61fd99 add new label (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 259
diff changeset
134 UiVar* var = uic_widget_var(obj->ctx, current->ctx, args.value, args.varname, UI_VAR_INTEGER);
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
135 if (var) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
136 UiInteger* value = (UiInteger*)var->value;
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
137 value->obj = widget;
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
138 value->get = ui_toggle_button_get;
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
139 value->set = ui_toggle_button_set;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
140
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
141 UiVarEventData *event = malloc(sizeof(UiVarEventData));
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
142 event->obj = obj;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
143 event->var = var;
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 144
diff changeset
144 event->observers = NULL;
264
24d9a92fd048 update spinner entry widget api (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 261
diff changeset
145 event->callback = NULL;
24d9a92fd048 update spinner entry widget api (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 261
diff changeset
146 event->userdata = NULL;
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
147
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
148 g_signal_connect(
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
149 widget,
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
150 "clicked",
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
151 G_CALLBACK(ui_toggled_obs),
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
152 event);
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
153 g_signal_connect(
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
154 widget,
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
155 "destroy",
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
156 G_CALLBACK(ui_destroy_vardata),
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
157 event);
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
158 }
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
159
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
160 UI_APPLY_LAYOUT1(current, args);
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
161 current->container->add(current->container, widget, FALSE);
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
162
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
163 return widget;
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
164 }
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
165
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
166 UIWIDGET ui_togglebutton_create(UiObject* obj, UiToggleArgs args) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
167 return togglebutton_create(obj, gtk_toggle_button_new(), args);
94
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
168 }
d51e334c1439 added checkbox and labels with alignment (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 65
diff changeset
169
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
170 UIWIDGET ui_checkbox_create(UiObject* obj, UiToggleArgs args) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
171 return togglebutton_create(obj, gtk_check_button_new(), args);
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
172 }
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
173
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
174 UIWIDGET ui_switch_create(UiObject* obj, UiToggleArgs args) {
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
175 #ifdef UI_GTK3
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
176 return NULL; // TODO
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
177 #else
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
178 return ui_checkbox_create(obj, args);
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
179 #endif
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
180 }
107
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
181
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
182
257
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
183
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
184
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
185
a334f9ebc5d0 update button, togglebutton and checkbox to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 253
diff changeset
186
258
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
187 UIWIDGET ui_radiobutton_create(UiObject *obj, UiToggleArgs args) {
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
188 UiObject* current = uic_current_obj(obj);
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
189
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
190 GSList *rg = NULL;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
191 UiInteger *rgroup;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
192
258
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
193 UiVar* var = NULL;
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
194 if (args.value) {
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
195 var = uic_create_value_var(current->ctx, args.value);
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
196 } else if (args.varname) {
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
197 var = uic_create_var(obj->ctx, args.varname, UI_VAR_INTEGER);
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
198 }
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
199
274
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
200 UiBool first = FALSE;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
201 if(var) {
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
202 rgroup = var->value;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
203 rg = rgroup->obj;
274
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
204 if(!rg) {
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
205 first = TRUE;
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
206 }
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
207 }
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
208
258
a252f68c665a port radiobutton to the new API (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 257
diff changeset
209 GtkWidget *rbutton = gtk_radio_button_new_with_label(rg, args.label ? args.label : "");
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
210 rg = gtk_radio_button_get_group(GTK_RADIO_BUTTON(rbutton));
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
211
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
212 if(rgroup) {
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
213 rgroup->obj = rg;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
214 rgroup->get = ui_radiobutton_get;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
215 rgroup->set = ui_radiobutton_set;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
216
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
217 ui_radiobutton_set(rgroup, rgroup->value);
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
218
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
219 UiVarEventData *event = malloc(sizeof(UiVarEventData));
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
220 event->obj = obj;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
221 event->var = var;
145
853685152c1d adds spinner widget (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 144
diff changeset
222 event->observers = NULL;
264
24d9a92fd048 update spinner entry widget api (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 261
diff changeset
223 event->callback = NULL;
24d9a92fd048 update spinner entry widget api (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 261
diff changeset
224 event->userdata = NULL;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
225
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
226 g_signal_connect(
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
227 rbutton,
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
228 "clicked",
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
229 G_CALLBACK(ui_radio_obs),
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
230 event);
274
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
231 if(first) {
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
232 g_signal_connect(
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
233 rbutton,
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
234 "destroy",
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
235 G_CALLBACK(ui_destroy_vardata),
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
236 event);
274
9e2aee097b69 fix double free on radiobutton group destroy
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 264
diff changeset
237 }
107
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
238 }
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
239
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
240 UiContainer *ct = uic_get_current_container(obj);
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
241 ct->add(ct, rbutton, FALSE);
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
242
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
243 return rbutton;
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
244 }
9aff1dc3990d improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 94
diff changeset
245
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
246 void ui_radio_obs(GtkToggleToolButton *widget, UiVarEventData *event) {
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
247 UiInteger *i = event->var->value;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
248
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
249 UiEvent e;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
250 e.obj = event->obj;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
251 e.window = event->obj->window;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
252 e.document = event->obj->ctx->document;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
253 e.eventdata = NULL;
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
254 e.intval = i->get(i);
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
255
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
256 ui_notify_evt(i->observers, &e);
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
257 }
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
258
144
29d98cff4f56 UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
259 int64_t ui_radiobutton_get(UiInteger *value) {
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
260 int selection = 0;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
261 GSList *ls = value->obj;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
262 int i = 0;
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
263 guint len = g_slist_length(ls);
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
264 while(ls) {
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
265 if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ls->data))) {
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
266 selection = len - i - 1;
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
267 break;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
268 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
269 ls = ls->next;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
270 i++;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
271 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
272
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
273 value->value = selection;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
274 return selection;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
275 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
276
144
29d98cff4f56 UiInteger uses int64 now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 143
diff changeset
277 void ui_radiobutton_set(UiInteger *value, int64_t i) {
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
278 GSList *ls = value->obj;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
279 int s = g_slist_length(ls) - 1 - i;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
280 int j = 0;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
281 while(ls) {
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
282 if(j == s) {
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
283 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ls->data), TRUE);
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
284 break;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
285 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
286 ls = ls->next;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
287 j++;
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
288 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
289
142
46448d38885c new checkbox and radionbutton features and more refactoring
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 140
diff changeset
290 value->value = i;
108
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
291 }
fcf6d5fac8f5 radio buttons bind to UiInteger now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 107
diff changeset
292

mercurial