Thu, 15 Feb 2024 21:33:08 +0100
port progressbar to new API (GTK)
35 | 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:
129
diff
changeset
|
4 | * Copyright 2017 Olaf Wintermann. All rights reserved. |
35 | 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> | |
31 | ||
32 | #include "model.h" | |
146
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
33 | #include "image.h" |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
34 | #include "toolkit.h" |
35 | 35 | |
36 | #define IS_UI_LIST_MODEL(obj) \ | |
37 | (G_TYPE_CHECK_INSTANCE_TYPE((obj), list_model_type)) | |
38 | #define UI_LIST_MODEL(obj) \ | |
39 | (G_TYPE_CHECK_INSTANCE_CAST((obj), list_model_type, UiListModel)) | |
40 | ||
41 | static void list_model_class_init(GObjectClass *cl, gpointer data); | |
42 | static void list_model_interface_init(GtkTreeModelIface *i, gpointer data); | |
43 | static void list_model_init(UiListModel *instance, GObjectClass *cl); | |
44 | ||
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
45 | static void list_model_dnd_dest_interface_init(GtkTreeDragDestIface *i, gpointer data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
46 | static void list_model_dnd_src_interface_init(GtkTreeDragSourceIface *i, gpointer data); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
47 | |
35 | 48 | static GObjectClass list_model_class; |
49 | static const GTypeInfo list_model_info = { | |
50 | sizeof(GObjectClass), | |
51 | NULL, | |
52 | NULL, | |
53 | (GClassInitFunc)list_model_class_init, | |
54 | NULL, | |
55 | NULL, | |
56 | sizeof(UiListModel), | |
57 | 0, | |
58 | (GInstanceInitFunc)list_model_init | |
59 | }; | |
60 | static const GInterfaceInfo list_model_interface_info = { | |
61 | (GInterfaceInitFunc)list_model_interface_init, | |
62 | NULL, | |
63 | NULL | |
64 | }; | |
65 | static GType list_model_type; | |
66 | ||
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
67 | static const GInterfaceInfo list_model_dnd_dest_interface_info = { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
68 | (GInterfaceInitFunc)list_model_dnd_dest_interface_init, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
69 | NULL, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
70 | NULL |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
71 | }; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
72 | static const GInterfaceInfo list_model_dnd_src_interface_info = { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
73 | (GInterfaceInitFunc)list_model_dnd_src_interface_init, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
74 | NULL, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
75 | NULL |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
76 | }; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
77 | |
35 | 78 | void ui_list_init() { |
79 | list_model_type = g_type_register_static( | |
80 | G_TYPE_OBJECT, | |
81 | "UiListModel", | |
82 | &list_model_info, | |
83 | (GTypeFlags)0); | |
84 | g_type_add_interface_static( | |
85 | list_model_type, | |
86 | GTK_TYPE_TREE_MODEL, | |
87 | &list_model_interface_info); | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
88 | g_type_add_interface_static( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
89 | list_model_type, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
90 | GTK_TYPE_TREE_DRAG_DEST, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
91 | &list_model_dnd_dest_interface_info); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
92 | g_type_add_interface_static( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
93 | list_model_type, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
94 | GTK_TYPE_TREE_DRAG_SOURCE, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
95 | &list_model_dnd_src_interface_info); |
35 | 96 | } |
97 | ||
98 | static void list_model_class_init(GObjectClass *cl, gpointer data) { | |
152
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
99 | cl->dispose = ui_list_model_dispose; |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
100 | cl->finalize = ui_list_model_finalize; |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
101 | |
35 | 102 | } |
103 | ||
104 | static void list_model_interface_init(GtkTreeModelIface *i, gpointer data) { | |
105 | i->get_flags = ui_list_model_get_flags; | |
106 | i->get_n_columns = ui_list_model_get_n_columns; | |
107 | i->get_column_type = ui_list_model_get_column_type; | |
108 | i->get_iter = ui_list_model_get_iter; | |
109 | i->get_path = ui_list_model_get_path; | |
110 | i->get_value = ui_list_model_get_value; | |
111 | i->iter_next = ui_list_model_iter_next; | |
112 | i->iter_children = ui_list_model_iter_children; | |
113 | i->iter_has_child = ui_list_model_iter_has_child; | |
114 | i->iter_n_children = ui_list_model_iter_n_children; | |
115 | i->iter_nth_child = ui_list_model_iter_nth_child; | |
116 | i->iter_parent = ui_list_model_iter_parent; | |
117 | } | |
118 | ||
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
119 | static void list_model_dnd_dest_interface_init(GtkTreeDragDestIface *i, gpointer data) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
120 | i->drag_data_received = ui_list_model_drag_data_received; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
121 | i->row_drop_possible = ui_list_model_row_drop_possible; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
122 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
123 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
124 | static void list_model_dnd_src_interface_init(GtkTreeDragSourceIface *i, gpointer data) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
125 | i->drag_data_delete = ui_list_model_drag_data_delete; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
126 | i->drag_data_get = ui_list_model_drag_data_get; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
127 | i->row_draggable = ui_list_model_row_draggable; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
128 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
129 | |
35 | 130 | static void list_model_init(UiListModel *instance, GObjectClass *cl) { |
131 | instance->columntypes = NULL; | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
132 | instance->var = NULL; |
35 | 133 | instance->numcolumns = 0; |
134 | instance->stamp = g_random_int(); | |
135 | } | |
136 | ||
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
137 | static GType ui_gtk_type(UiModelType type) { |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
138 | switch(type) { |
164
1d912f78fd1d
fix some warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
152
diff
changeset
|
139 | default: break; |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
140 | case UI_STRING: return G_TYPE_STRING; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
141 | case UI_INTEGER: return G_TYPE_INT; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
142 | } |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
143 | return G_TYPE_INVALID; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
144 | } |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
145 | |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
146 | static void ui_model_set_value(GType type, void *data, GValue *value) { |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
147 | switch(type) { |
164
1d912f78fd1d
fix some warnings
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
152
diff
changeset
|
148 | default: break; |
146
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
149 | case G_TYPE_OBJECT: { |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
150 | value->g_type = G_TYPE_OBJECT; |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
151 | g_value_set_object(value, data); |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
152 | return; |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
153 | } |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
154 | case G_TYPE_STRING: { |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
155 | value->g_type = G_TYPE_STRING; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
156 | g_value_set_string(value, data); |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
157 | return; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
158 | } |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
159 | case G_TYPE_INT: { |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
160 | value->g_type = G_TYPE_INT; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
161 | int *i = data; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
162 | g_value_set_int(value, *i); |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
163 | return; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
164 | } |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
165 | } |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
166 | value->g_type = G_TYPE_INVALID; |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
167 | } |
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
168 | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
169 | UiListModel* ui_list_model_new(UiObject *obj, UiVar *var, UiModel *info) { |
35 | 170 | UiListModel *model = g_object_new(list_model_type, NULL); |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
171 | model->obj = obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
172 | model->model = info; |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
173 | model->var = var; |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
174 | model->columntypes = calloc(sizeof(GType), 2 * info->columns); |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
175 | int ncol = 0; |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
176 | for(int i=0;i<info->columns;i++) { |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
177 | UiModelType type = info->types[i]; |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
178 | if(type == UI_ICON_TEXT) { |
146
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
179 | model->columntypes[ncol] = G_TYPE_OBJECT; |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
180 | ncol++; |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
181 | model->columntypes[ncol] = G_TYPE_STRING; |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
182 | } else { |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
183 | model->columntypes[ncol] = ui_gtk_type(info->types[i]); |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
184 | } |
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
185 | ncol++; |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
186 | } |
129
5babf09f5f19
fixes stultus commit
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
187 | model->numcolumns = ncol; |
35 | 188 | return model; |
189 | } | |
190 | ||
152
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
191 | void ui_list_model_dispose(GObject *obj) { |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
192 | |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
193 | } |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
194 | |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
195 | void ui_list_model_finalize(GObject *obj) { |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
196 | |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
197 | } |
62921b370c60
fixes use after free when a GtkTreeView was destroyed
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
147
diff
changeset
|
198 | |
35 | 199 | |
200 | GtkTreeModelFlags ui_list_model_get_flags(GtkTreeModel *tree_model) { | |
201 | return (GTK_TREE_MODEL_LIST_ONLY | GTK_TREE_MODEL_ITERS_PERSIST); | |
202 | } | |
203 | ||
204 | gint ui_list_model_get_n_columns(GtkTreeModel *tree_model) { | |
205 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), 0); | |
206 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
207 | return model->numcolumns; | |
208 | } | |
209 | ||
210 | GType ui_list_model_get_column_type(GtkTreeModel *tree_model, gint index) { | |
211 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), G_TYPE_INVALID); | |
212 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
213 | g_return_val_if_fail(index < model->numcolumns, G_TYPE_INVALID); | |
214 | return model->columntypes[index]; | |
215 | } | |
216 | ||
217 | gboolean ui_list_model_get_iter( | |
218 | GtkTreeModel *tree_model, | |
219 | GtkTreeIter *iter, | |
220 | GtkTreePath *path) | |
221 | { | |
222 | g_assert(IS_UI_LIST_MODEL(tree_model)); | |
223 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
224 | UiList *list = model->var->value; |
35 | 225 | |
226 | // check the depth of the path | |
227 | // a list must have a depth of 1 | |
228 | gint depth = gtk_tree_path_get_depth(path); | |
229 | g_assert(depth == 1); | |
230 | ||
231 | // get row | |
232 | gint *indices = gtk_tree_path_get_indices(path); | |
233 | gint row = indices[0]; | |
234 | ||
235 | // check row | |
236 | if(row == 0) { | |
237 | // we don't need to count if the first element is requested | |
238 | if(list->first(list) == NULL) { | |
239 | return FALSE; | |
240 | } | |
241 | } else if(row >= list->count(list)) { | |
242 | return FALSE; | |
243 | } | |
244 | ||
245 | // the UiList has an integrated iterator | |
246 | // we only get a value to adjust it | |
247 | void *val = NULL; | |
248 | if(row == 0) { | |
249 | val = list->first(list); | |
250 | } else { | |
251 | val = list->get(list, row); | |
252 | } | |
253 | ||
254 | iter->stamp = model->stamp; | |
255 | iter->user_data = list->iter; | |
256 | iter->user_data2 = (gpointer)(intptr_t)row; // list->index | |
257 | iter->user_data3 = val; | |
258 | ||
259 | return val ? TRUE : FALSE; | |
260 | } | |
261 | ||
262 | GtkTreePath* ui_list_model_get_path( | |
263 | GtkTreeModel *tree_model, | |
264 | GtkTreeIter *iter) | |
265 | { | |
266 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), NULL); | |
267 | g_return_val_if_fail(iter != NULL, NULL); | |
268 | g_return_val_if_fail(iter->user_data != NULL, NULL); | |
269 | ||
270 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
271 | ||
272 | GtkTreePath *path = gtk_tree_path_new(); | |
273 | gtk_tree_path_append_index(path, (int)(intptr_t)iter->user_data2); // list->index | |
274 | ||
275 | return path; | |
276 | } | |
277 | ||
278 | void ui_list_model_get_value( | |
279 | GtkTreeModel *tree_model, | |
280 | GtkTreeIter *iter, | |
281 | gint column, | |
282 | GValue *value) | |
283 | { | |
284 | g_return_if_fail(IS_UI_LIST_MODEL(tree_model)); | |
285 | g_return_if_fail(iter != NULL); | |
286 | g_return_if_fail(iter->user_data != NULL); | |
287 | ||
288 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
289 | UiList *list = model->var->value; |
35 | 290 | |
291 | g_return_if_fail(column < model->numcolumns); | |
292 | ||
293 | // TODO: return correct value from column | |
294 | ||
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
295 | //value->g_type = G_TYPE_STRING; |
35 | 296 | list->iter = iter->user_data; |
297 | //list->index = (int)(intptr_t)iter->user_data2; | |
298 | //list->current = iter->user_data3; | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
299 | if(model->model->getvalue) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
300 | void *data = model->model->getvalue(iter->user_data3, column); |
146
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
301 | if(model->columntypes[column] == G_TYPE_OBJECT) { |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
302 | UiImage *img = data; |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
303 | ui_model_set_value(model->columntypes[column], img->pixbuf, value); |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
304 | } else { |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
305 | ui_model_set_value(model->columntypes[column], data, value); |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
306 | } |
35 | 307 | } else { |
40
caa0df8ed095
added table view (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
35
diff
changeset
|
308 | value->g_type = G_TYPE_INVALID; |
35 | 309 | } |
310 | } | |
311 | ||
312 | gboolean ui_list_model_iter_next( | |
313 | GtkTreeModel *tree_model, | |
314 | GtkTreeIter *iter) | |
315 | { | |
316 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), FALSE); | |
317 | g_return_val_if_fail(iter != NULL, FALSE); | |
146
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
318 | //g_return_val_if_fail(iter->user_data != NULL, FALSE); |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
319 | |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
320 | if(!iter->user_data) { |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
321 | return FALSE; |
dd0ae1c62a72
new icon/image api and pixbuf support in treeview (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
142
diff
changeset
|
322 | } |
35 | 323 | |
324 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
325 | UiList *list = model->var->value; |
35 | 326 | list->iter = iter->user_data; |
327 | //list->index = (int)(intptr_t)iter->user_data2; | |
328 | void *val = list->next(list); | |
329 | iter->user_data = list->iter; | |
330 | intptr_t index = (intptr_t)iter->user_data2; | |
331 | index++; | |
332 | //iter->user_data2 = (gpointer)(intptr_t)list->index; | |
333 | iter->user_data2 = (gpointer)index; | |
334 | iter->user_data3 = val; | |
335 | return val ? TRUE : FALSE; | |
336 | } | |
337 | ||
338 | gboolean ui_list_model_iter_children( | |
339 | GtkTreeModel *tree_model, | |
340 | GtkTreeIter *iter, | |
341 | GtkTreeIter *parent) | |
342 | { | |
343 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), FALSE); | |
344 | ||
345 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
346 | UiList *list = model->var->value; |
35 | 347 | |
348 | if(parent) { | |
349 | return FALSE; | |
350 | } | |
351 | ||
352 | /* | |
353 | * a list element has no children | |
354 | * we set the iter to the first element | |
355 | */ | |
356 | void *val = list->first(list); | |
357 | iter->stamp = model->stamp; | |
358 | iter->user_data = list->iter; | |
359 | iter->user_data2 = (gpointer)0; | |
360 | iter->user_data3 = val; | |
361 | ||
362 | return val ? TRUE : FALSE; | |
363 | } | |
364 | ||
365 | gboolean ui_list_model_iter_has_child( | |
366 | GtkTreeModel *tree_model, | |
367 | GtkTreeIter *iter) | |
368 | { | |
369 | return FALSE; | |
370 | } | |
371 | ||
372 | gint ui_list_model_iter_n_children( | |
373 | GtkTreeModel *tree_model, | |
374 | GtkTreeIter *iter) | |
375 | { | |
376 | g_assert(IS_UI_LIST_MODEL(tree_model)); | |
377 | ||
378 | if(!iter) { | |
379 | // return number of rows | |
380 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
381 | UiList *list = model->var->value; |
35 | 382 | return list->count(list); |
383 | } | |
384 | ||
385 | return 0; | |
386 | } | |
387 | ||
388 | gboolean ui_list_model_iter_nth_child( | |
389 | GtkTreeModel *tree_model, | |
390 | GtkTreeIter *iter, | |
391 | GtkTreeIter *parent, | |
392 | gint n) | |
393 | { | |
394 | g_return_val_if_fail(IS_UI_LIST_MODEL(tree_model), FALSE); | |
395 | ||
396 | if(parent) { | |
397 | return FALSE; | |
398 | } | |
399 | ||
400 | UiListModel *model = UI_LIST_MODEL(tree_model); | |
140
c03c338a7dcf
refactors value binding system
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
129
diff
changeset
|
401 | UiList *list = model->var->value; |
35 | 402 | |
403 | // check n | |
404 | if(n == 0) { | |
405 | // we don't need to count if the first element is requested | |
406 | if(list->first(list) == NULL) { | |
407 | return FALSE; | |
408 | } | |
409 | } else if(n >= list->count(list)) { | |
410 | return FALSE; | |
411 | } | |
412 | ||
413 | void *val = list->get(list, n); | |
414 | iter->stamp = model->stamp; | |
415 | iter->user_data = list->iter; | |
416 | iter->user_data2 = (gpointer)(intptr_t)n; // list->index | |
417 | iter->user_data3 = val; | |
418 | ||
419 | return val ? TRUE : FALSE; | |
420 | } | |
421 | ||
422 | gboolean ui_list_model_iter_parent( | |
423 | GtkTreeModel *tree_model, | |
424 | GtkTreeIter *iter, | |
425 | GtkTreeIter *child) | |
426 | { | |
427 | return FALSE; | |
428 | } | |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
429 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
430 | // ****** dnd ****** |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
431 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
432 | gboolean ui_list_model_drag_data_received( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
433 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
434 | GtkTreePath *dest_path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
435 | GtkSelectionData *selection_data) |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
436 | { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
437 | //printf("drag received\n"); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
438 | UiListModel *model = UI_LIST_MODEL(drag_dest); |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
439 | /* |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
440 | if(model->model->drop) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
441 | gint *indices = gtk_tree_path_get_indices(dest_path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
442 | gint row = indices[0]; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
443 | UiEvent e; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
444 | e.obj = model->obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
445 | e.window = e.obj->window; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
446 | e.document = e.obj->ctx->document; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
447 | e.eventdata = NULL; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
448 | e.intval = 0; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
449 | UiSelection s; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
450 | s.data = selection_data; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
451 | model->model->drop(&e, &s, model->var->value, row); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
452 | } |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
453 | */ |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
454 | return TRUE; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
455 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
456 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
457 | gboolean ui_list_model_row_drop_possible( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
458 | GtkTreeDragDest *drag_dest, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
459 | GtkTreePath *dest_path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
460 | GtkSelectionData *selection_data) |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
461 | { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
462 | //printf("row_drop_possible\n"); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
463 | UiListModel *model = UI_LIST_MODEL(drag_dest); |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
464 | /* |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
465 | if(model->model->candrop) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
466 | gint *indices = gtk_tree_path_get_indices(dest_path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
467 | gint row = indices[0]; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
468 | UiEvent e; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
469 | e.obj = model->obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
470 | e.window = e.obj->window; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
471 | e.document = e.obj->ctx->document; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
472 | e.eventdata = NULL; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
473 | e.intval = 0; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
474 | UiSelection s; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
475 | s.data = selection_data; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
476 | return model->model->candrop(&e, &s, model->var->value, row); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
477 | } |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
478 | */ |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
479 | return TRUE; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
480 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
481 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
482 | gboolean ui_list_model_row_draggable( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
483 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
484 | GtkTreePath *path) |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
485 | { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
486 | //printf("row_draggable\n"); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
487 | UiListModel *model = UI_LIST_MODEL(drag_source); |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
488 | /* |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
489 | if(model->model->candrag) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
490 | gint *indices = gtk_tree_path_get_indices(path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
491 | gint row = indices[0]; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
492 | UiEvent e; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
493 | e.obj = model->obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
494 | e.window = e.obj->window; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
495 | e.document = e.obj->ctx->document; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
496 | e.eventdata = NULL; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
497 | e.intval = 0; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
498 | return model->model->candrag(&e, model->var->value, row); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
499 | } |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
500 | */ |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
501 | return TRUE; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
502 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
503 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
504 | gboolean ui_list_model_drag_data_get( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
505 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
506 | GtkTreePath *path, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
507 | GtkSelectionData *selection_data) |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
508 | { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
509 | //printf("drag_data_get\n"); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
510 | UiListModel *model = UI_LIST_MODEL(drag_source); |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
511 | /* |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
512 | if(model->model->data_get) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
513 | gint *indices = gtk_tree_path_get_indices(path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
514 | gint row = indices[0]; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
515 | UiEvent e; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
516 | e.obj = model->obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
517 | e.window = e.obj->window; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
518 | e.document = e.obj->ctx->document; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
519 | e.eventdata = NULL; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
520 | e.intval = 0; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
521 | UiSelection s; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
522 | s.data = selection_data; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
523 | model->model->data_get(&e, &s, model->var->value, row); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
524 | } |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
525 | */ |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
526 | return TRUE; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
527 | } |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
528 | |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
529 | gboolean ui_list_model_drag_data_delete( |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
530 | GtkTreeDragSource *drag_source, |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
531 | GtkTreePath *path) |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
532 | { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
533 | //printf("drag_data_delete\n"); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
534 | UiListModel *model = UI_LIST_MODEL(drag_source); |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
535 | /* |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
536 | if(model->model->data_get) { |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
537 | gint *indices = gtk_tree_path_get_indices(path); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
538 | gint row = indices[0]; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
539 | UiEvent e; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
540 | e.obj = model->obj; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
541 | e.window = e.obj->window; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
542 | e.document = e.obj->ctx->document; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
543 | e.eventdata = NULL; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
544 | e.intval = 0; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
545 | model->model->data_delete(&e, model->var->value, row); |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
546 | } |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
164
diff
changeset
|
547 | */ |
147
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
548 | return TRUE; |
2e384acc89a6
adds simple drag and drop support (GTK)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
146
diff
changeset
|
549 | } |