Sun, 22 Sep 2024 17:54:33 +0200
fix gtk3/4 grid hexpand/vexpand setting
0 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
134
diff
changeset
|
4 | * Copyright 2017 Olaf Wintermann. All rights reserved. |
0 | 5 | * |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
29 | #include <stdio.h> | |
30 | #include <stdlib.h> | |
30
34513f76d5a8
added locale support (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
28
diff
changeset
|
31 | #include <string.h> |
0 | 32 | |
33 | #include "../ui/window.h" | |
24
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
34 | #include "../ui/properties.h" |
0 | 35 | #include "../common/context.h" |
254
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
36 | #include "../common/menu.h" |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
37 | #include "../common/toolbar.h" |
0 | 38 | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
39 | #include <cx/mempool.h> |
174 | 40 | |
0 | 41 | #include "menu.h" |
3 | 42 | #include "toolbar.h" |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
43 | #include "container.h" |
0 | 44 | |
45 | static int nwindows = 0; | |
46 | ||
47 | static int window_default_width = 650; | |
48 | static int window_default_height = 550; | |
49 | ||
50 | void ui_exit_event(GtkWidget *widget, gpointer data) { | |
111
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
51 | UiObject *obj = data; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
52 | UiEvent ev; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
53 | ev.window = obj->window; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
54 | ev.document = obj->ctx->document; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
55 | ev.obj = obj; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
56 | ev.eventdata = NULL; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
57 | ev.intval = 0; |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
58 | |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
59 | if(obj->ctx->close_callback) { |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
60 | obj->ctx->close_callback(&ev, obj->ctx->close_data); |
0 | 61 | } |
111
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
62 | // TODO: free UiObject |
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
63 | |
0 | 64 | nwindows--; |
134
69e8e0936858
adds new app callbacks (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
133
diff
changeset
|
65 | #ifdef UI_GTK2 |
0 | 66 | if(nwindows == 0) { |
67 | gtk_main_quit(); | |
68 | } | |
133
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
69 | #endif |
0 | 70 | } |
71 | ||
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
72 | static UiObject* create_window(const char *title, void *window_data, UiBool simple) { |
174 | 73 | CxMempool *mp = cxBasicMempoolCreate(256); |
74 | UiObject *obj = cxCalloc(mp->allocator, 1, sizeof(UiObject)); | |
302
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
75 | |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
76 | #ifdef UI_LIBADWAITA |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
77 | obj->widget = adw_application_window_new(ui_get_application()); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
78 | #elif !defined(UI_GTK2) |
133
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
79 | obj->widget = gtk_application_window_new(ui_get_application()); |
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
80 | #else |
24
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
81 | obj->widget = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
133
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
82 | #endif |
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
83 | |
6dd780cbc8c6
using GtkApplication now
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
84 | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
85 | obj->ctx = uic_context(obj, mp); |
128
c284c15509a8
fixes var binding and motif tableview
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
111
diff
changeset
|
86 | obj->window = window_data; |
0 | 87 | |
88 | if(title != NULL) { | |
89 | gtk_window_set_title(GTK_WINDOW(obj->widget), title); | |
90 | } | |
24
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
91 | |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
92 | char *width = ui_get_property("ui.window.width"); |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
93 | char *height = ui_get_property("ui.window.height"); |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
94 | if(width && height) { |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
95 | gtk_window_set_default_size( |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
96 | GTK_WINDOW(obj->widget), |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
97 | atoi(width), |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
98 | atoi(height)); |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
99 | } else { |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
100 | gtk_window_set_default_size( |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
101 | GTK_WINDOW(obj->widget), |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
102 | window_default_width, |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
103 | window_default_height); |
06bceda81a03
added application properties
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
104 | } |
0 | 105 | |
106 | g_signal_connect( | |
107 | obj->widget, | |
108 | "destroy", | |
109 | G_CALLBACK(ui_exit_event), | |
111
40dbf1a7526a
added close handler to UiContext (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
107
diff
changeset
|
110 | obj); |
0 | 111 | |
107
9aff1dc3990d
improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
106
diff
changeset
|
112 | GtkWidget *vbox = ui_gtk_vbox_new(0); |
302
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
113 | #ifdef UI_LIBADWAITA |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
114 | GtkWidget *toolbar_view = adw_toolbar_view_new(); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
115 | adw_application_window_set_content(ADW_APPLICATION_WINDOW(obj->widget), toolbar_view); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
116 | adw_toolbar_view_set_content(ADW_TOOLBAR_VIEW(toolbar_view), vbox); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
117 | |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
118 | GtkWidget *headerbar = adw_header_bar_new(); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
119 | adw_toolbar_view_add_top_bar(ADW_TOOLBAR_VIEW(toolbar_view), headerbar); |
b00cbbfeec7a
add libadwaita toolkit option
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
297
diff
changeset
|
120 | #elif GTK_MAJOR_VERSION >= 4 |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
121 | WINDOW_SET_CONTENT(obj->widget, vbox); |
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
122 | #else |
0 | 123 | gtk_container_add(GTK_CONTAINER(obj->widget), vbox); |
124 | ||
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
125 | if(!simple) { |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
126 | // menu |
254
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
127 | if(uic_get_menu_list()) { |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
128 | GtkWidget *mb = ui_create_menubar(obj); |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
129 | if(mb) { |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
130 | gtk_box_pack_start(GTK_BOX(vbox), mb, FALSE, FALSE, 0); |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
131 | } |
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
132 | } |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
133 | |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
134 | // toolbar |
254
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
135 | if(uic_toolbar_isenabled()) { |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
136 | GtkWidget *tb = ui_create_toolbar(obj); |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
137 | if(tb) { |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
138 | gtk_box_pack_start(GTK_BOX(vbox), tb, FALSE, FALSE, 0); |
13997c76859b
fix some const related warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
253
diff
changeset
|
139 | } |
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
140 | } |
276
376921880a7f
add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
254
diff
changeset
|
141 | |
376921880a7f
add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
254
diff
changeset
|
142 | //GtkWidget *hb = ui_create_headerbar(obj); |
376921880a7f
add initial support for headerbars (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
254
diff
changeset
|
143 | //gtk_window_set_titlebar(GTK_WINDOW(obj->widget), hb); |
3 | 144 | } |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
145 | #endif |
3 | 146 | |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
147 | // window content |
59
eb6611be50c7
added box container (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
148 | // the content has a (TODO: not yet) configurable frame |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
149 | // TODO: really? why |
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
150 | /* |
148
4e0b38bbd6c4
replaces usage of some deprecated functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
151 | GtkWidget *frame = gtk_frame_new(NULL); |
4e0b38bbd6c4
replaces usage of some deprecated functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
140
diff
changeset
|
152 | gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE); |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
153 | gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
59
eb6611be50c7
added box container (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
154 | |
eb6611be50c7
added box container (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
155 | // content vbox |
107
9aff1dc3990d
improved box container and added radio button (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
106
diff
changeset
|
156 | GtkWidget *content_box = ui_gtk_vbox_new(0); |
59
eb6611be50c7
added box container (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
157 | gtk_container_add(GTK_CONTAINER(frame), content_box); |
eb6611be50c7
added box container (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
30
diff
changeset
|
158 | obj->container = ui_box_container(obj, content_box); |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
159 | */ |
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
160 | GtkWidget *content_box = ui_gtk_vbox_new(0); |
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
161 | BOX_ADD(GTK_BOX(vbox), content_box); |
297
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
162 | obj->container = ui_box_container(obj, content_box, UI_CONTAINER_VBOX); |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
163 | |
0 | 164 | nwindows++; |
165 | return obj; | |
166 | } | |
167 | ||
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
168 | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
169 | UiObject* ui_window(const char *title, void *window_data) { |
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
170 | return create_window(title, window_data, FALSE); |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
171 | } |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
172 | |
281
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
173 | UiObject* ui_simple_window(const char *title, void *window_data) { |
106
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
174 | return create_window(title, window_data, TRUE); |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
175 | } |
a4f4123ca12a
added simple window and open/save file dialogs for Qt
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
59
diff
changeset
|
176 | |
281
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
177 | void ui_window_size(UiObject *obj, int width, int height) { |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
178 | gtk_window_set_default_size( |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
179 | GTK_WINDOW(obj->widget), |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
180 | width, |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
181 | height); |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
182 | } |
2533cdebf6ef
add ui_window_size and ui_simple_window functions (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
279
diff
changeset
|
183 | |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
184 | static void ui_dialog_response (GtkDialog* self, gint response_id, gpointer user_data) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
185 | UiEventData *data = user_data; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
186 | UiEvent evt; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
187 | evt.obj = data->obj; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
188 | evt.document = evt.obj->ctx->document; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
189 | evt.window = evt.obj->window; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
190 | evt.eventdata = NULL; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
191 | evt.intval = 0; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
192 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
193 | if(data->customdata) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
194 | GtkWidget *entry = data->customdata; |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
195 | evt.eventdata = (void*)ENTRY_GET_TEXT(GTK_ENTRY(entry)); |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
196 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
197 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
198 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
199 | if(response_id == 1 || response_id == 2) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
200 | evt.intval = response_id; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
201 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
202 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
203 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
204 | if(data->callback) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
205 | data->callback(&evt, data->userdata); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
206 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
207 | |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
208 | WINDOW_DESTROY(GTK_WIDGET(self)); |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
209 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
210 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
211 | void ui_dialog_create(UiObject *parent, UiDialogArgs args) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
212 | GtkDialog *dialog = GTK_DIALOG(gtk_dialog_new()); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
213 | GtkWidget *dialog_w = GTK_WIDGET(dialog); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
214 | if(args.title) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
215 | gtk_window_set_title(GTK_WINDOW(dialog), args.title); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
216 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
217 | if(args.button1_label) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
218 | gtk_dialog_add_button(dialog, args.button1_label, 1); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
219 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
220 | if(args.button2_label) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
221 | gtk_dialog_add_button(dialog, args.button2_label, 2); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
222 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
223 | if(args.closebutton_label) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
224 | gtk_dialog_add_button(dialog, args.closebutton_label, 0); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
225 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
226 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
227 | GtkWidget *content_area = gtk_dialog_get_content_area(dialog); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
228 | if(args.content) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
229 | GtkWidget *label = gtk_label_new(args.content); |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
230 | BOX_ADD(content_area, label); |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
231 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
232 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
233 | GtkWidget *textfield = NULL; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
234 | if(args.input) { |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
235 | textfield = gtk_entry_new(); |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
236 | BOX_ADD(content_area, textfield); |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
237 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
238 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
239 | UiEventData *event = malloc(sizeof(UiEventData)); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
240 | event->obj = parent; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
241 | event->callback = args.result; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
242 | event->userdata = args.resultdata; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
243 | event->value = 0; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
244 | event->customdata = textfield; |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
245 | |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
246 | g_signal_connect(dialog_w, |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
247 | "response", |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
248 | G_CALLBACK(ui_dialog_response), |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
249 | event); |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
250 | |
296
a362c76dbf99
add more gtk4 porting (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
281
diff
changeset
|
251 | WINDOW_SHOW(GTK_WIDGET(dialog_w)); |
278
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
252 | } |
a8faf8757450
implement ui_dialog_create (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
276
diff
changeset
|
253 | |
297
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
254 | |
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
255 | #if GTK_MAJOR_VERSION >= 4 |
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
256 | static void ui_gtkfilechooser(UiObject *obj, GtkFileChooserAction action, unsigned int mode, ui_callback file_selected_callback, void *cbdata) { |
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
257 | // TODO |
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
258 | } |
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
259 | #else |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
260 | static void ui_gtkfilechooser(UiObject *obj, GtkFileChooserAction action, unsigned int mode, ui_callback file_selected_callback, void *cbdata) { |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
261 | char *button; |
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
262 | char *title; |
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
263 | |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
264 | GtkWidget *dialog; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
265 | if((mode & UI_FILEDIALOG_SELECT_FOLDER) == UI_FILEDIALOG_SELECT_FOLDER) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
266 | dialog = gtk_file_chooser_dialog_new ( |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
267 | "Open Folder", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
268 | GTK_WINDOW(obj->widget), |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
269 | GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
270 | "Cancel", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
271 | GTK_RESPONSE_CANCEL, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
272 | "Select Folder", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
273 | GTK_RESPONSE_ACCEPT, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
274 | NULL); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
275 | } else if(action == GTK_FILE_CHOOSER_ACTION_OPEN) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
276 | dialog = gtk_file_chooser_dialog_new ( |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
277 | "Select Folder", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
278 | GTK_WINDOW(obj->widget), |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
279 | action, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
280 | "Cancel", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
281 | GTK_RESPONSE_CANCEL, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
282 | "Open File", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
283 | GTK_RESPONSE_ACCEPT, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
284 | NULL); |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
285 | } else { |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
286 | dialog = gtk_file_chooser_dialog_new ( |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
287 | "Save File", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
288 | GTK_WINDOW(obj->widget), |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
289 | action, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
290 | "Cancel", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
291 | GTK_RESPONSE_CANCEL, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
292 | "Save File", |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
293 | GTK_RESPONSE_ACCEPT, |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
294 | NULL); |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
295 | } |
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
296 | |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
297 | if((mode & UI_FILEDIALOG_SELECT_MULTI) == UI_FILEDIALOG_SELECT_MULTI) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
298 | gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE); |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
299 | } |
297
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
300 | |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
301 | UiEvent evt; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
302 | evt.obj = obj; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
303 | evt.document = evt.obj->ctx->document; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
304 | evt.window = evt.obj->window; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
305 | evt.intval = 0; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
306 | |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
307 | UiFileList flist; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
308 | flist.files = NULL; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
309 | flist.nfiles = 0; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
310 | evt.eventdata = &flist; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
311 | |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
312 | int result = gtk_dialog_run(GTK_DIALOG (dialog)); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
313 | GSList *selection = NULL; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
314 | if(result == GTK_RESPONSE_ACCEPT) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
315 | selection = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog)); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
316 | flist.nfiles = g_slist_length(selection); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
317 | flist.files = calloc(flist.nfiles, sizeof(char*)); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
318 | int i = 0; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
319 | while(selection) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
320 | flist.files[i] = selection->data; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
321 | selection = selection->next; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
322 | i++; |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
323 | } |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
324 | } |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
325 | |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
326 | if(file_selected_callback) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
327 | file_selected_callback(&evt, cbdata); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
328 | } |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
329 | |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
330 | for(int i=0;i<flist.nfiles;i++) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
331 | g_free(flist.files[i]); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
332 | } |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
333 | free(flist.files); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
334 | g_slist_free(selection); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
335 | |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
336 | gtk_widget_destroy(dialog); |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
337 | } |
297
a73c60adf188
port container to gtk4
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
296
diff
changeset
|
338 | #endif |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
339 | |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
340 | void ui_openfiledialog(UiObject *obj, unsigned int mode, ui_callback file_selected_callback, void *cbdata) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
341 | ui_gtkfilechooser(obj, GTK_FILE_CHOOSER_ACTION_OPEN, mode, file_selected_callback, cbdata); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
342 | } |
28
794a5c91c479
added open/save dialogs
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
24
diff
changeset
|
343 | |
279
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
344 | void ui_savefiledialog(UiObject *obj, const char *name, ui_callback file_selected_callback, void *cbdata) { |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
345 | ui_gtkfilechooser(obj, GTK_FILE_CHOOSER_ACTION_SAVE, 0, file_selected_callback, cbdata); |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
346 | } |
2ad83650d797
implement file dialog (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
278
diff
changeset
|
347 |