]>
Commit | Line | Data |
---|---|---|
790b137e | 1 | ///////////////////////////////////////////////////////////////////////////// |
93763ad5 | 2 | // Name: src/gtk/dataview.cpp |
790b137e RR |
3 | // Purpose: wxDataViewCtrl GTK+2 implementation |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | // For compilers that support precompilation, includes "wx.h". | |
11 | #include "wx/wxprec.h" | |
12 | ||
790b137e RR |
13 | #if wxUSE_DATAVIEWCTRL |
14 | ||
15 | #include "wx/dataview.h" | |
4ed7af08 RR |
16 | |
17 | #ifndef wxUSE_GENERICDATAVIEWCTRL | |
18 | ||
e4db172a WS |
19 | #ifndef WX_PRECOMP |
20 | #include "wx/log.h" | |
ed4b0fdc | 21 | #include "wx/dcclient.h" |
ed2fbeb8 | 22 | #include "wx/sizer.h" |
e4db172a WS |
23 | #endif |
24 | ||
790b137e | 25 | #include "wx/stockitem.h" |
7ea3a0de RR |
26 | #include "wx/calctrl.h" |
27 | #include "wx/popupwin.h" | |
2586d4a1 RR |
28 | #include "wx/icon.h" |
29 | ||
790b137e RR |
30 | |
31 | #include "wx/gtk/private.h" | |
32 | #include "wx/gtk/win_gtk.h" | |
33 | ||
34 | #include <gobject/gvaluecollector.h> | |
1557c77b RR |
35 | #include <gtk/gtktreemodel.h> |
36 | #include <gtk/gtktreednd.h> | |
790b137e | 37 | |
4d496ecb RR |
38 | #include <gdk/gdkkeysyms.h> |
39 | ||
790b137e RR |
40 | //----------------------------------------------------------------------------- |
41 | // classes | |
42 | //----------------------------------------------------------------------------- | |
43 | ||
44 | class wxDataViewCtrl; | |
45 | ||
790b137e RR |
46 | //----------------------------------------------------------------------------- |
47 | // data | |
48 | //----------------------------------------------------------------------------- | |
49 | ||
50 | extern bool g_blockEventsOnDrag; | |
51 | ||
52 | //----------------------------------------------------------------------------- | |
53 | // define new GTK+ class wxGtkListStore | |
54 | //----------------------------------------------------------------------------- | |
55 | ||
56 | extern "C" { | |
57 | ||
58 | #define GTK_TYPE_WX_LIST_STORE (gtk_wx_list_store_get_type ()) | |
59 | #define GTK_WX_LIST_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_WX_LIST_STORE, GtkWxListStore)) | |
60 | #define GTK_WX_LIST_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_WX_LIST_STORE, GtkWxListStoreClass)) | |
61 | #define GTK_IS_WX_LIST_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_WX_LIST_STORE)) | |
62 | #define GTK_IS_WX_LIST_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_WX_LIST_STORE)) | |
63 | #define GTK_WX_LIST_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_WX_LIST_STORE, GtkWxListStoreClass)) | |
64 | ||
65 | GType gtk_wx_list_store_get_type (void); | |
66 | ||
67 | typedef struct _GtkWxListStore GtkWxListStore; | |
68 | typedef struct _GtkWxListStoreClass GtkWxListStoreClass; | |
69 | ||
70 | struct _GtkWxListStore | |
71 | { | |
72 | GObject parent; | |
73 | ||
74 | /*< private >*/ | |
75 | gint stamp; | |
76 | wxDataViewListModel *model; | |
77 | }; | |
78 | ||
79 | struct _GtkWxListStoreClass | |
80 | { | |
e152afc3 | 81 | GObjectClass list_parent_class; |
790b137e RR |
82 | }; |
83 | ||
e152afc3 | 84 | static GtkWxListStore *wxgtk_list_store_new (void); |
790b137e | 85 | static void wxgtk_list_store_init (GtkWxListStore *list_store); |
1557c77b | 86 | static void wxgtk_list_store_class_init (GtkWxListStoreClass *klass); |
790b137e RR |
87 | static void wxgtk_list_store_tree_model_init (GtkTreeModelIface *iface); |
88 | static void wxgtk_list_store_finalize (GObject *object); | |
89 | static GtkTreeModelFlags wxgtk_list_store_get_flags (GtkTreeModel *tree_model); | |
90 | static gint wxgtk_list_store_get_n_columns (GtkTreeModel *tree_model); | |
91 | static GType wxgtk_list_store_get_column_type (GtkTreeModel *tree_model, | |
93763ad5 | 92 | gint index); |
790b137e | 93 | static gboolean wxgtk_list_store_get_iter (GtkTreeModel *tree_model, |
93763ad5 WS |
94 | GtkTreeIter *iter, |
95 | GtkTreePath *path); | |
790b137e | 96 | static GtkTreePath *wxgtk_list_store_get_path (GtkTreeModel *tree_model, |
93763ad5 | 97 | GtkTreeIter *iter); |
790b137e | 98 | static void wxgtk_list_store_get_value (GtkTreeModel *tree_model, |
93763ad5 WS |
99 | GtkTreeIter *iter, |
100 | gint column, | |
101 | GValue *value); | |
790b137e | 102 | static gboolean wxgtk_list_store_iter_next (GtkTreeModel *tree_model, |
93763ad5 | 103 | GtkTreeIter *iter); |
790b137e | 104 | static gboolean wxgtk_list_store_iter_children (GtkTreeModel *tree_model, |
93763ad5 WS |
105 | GtkTreeIter *iter, |
106 | GtkTreeIter *parent); | |
790b137e | 107 | static gboolean wxgtk_list_store_iter_has_child (GtkTreeModel *tree_model, |
93763ad5 | 108 | GtkTreeIter *iter); |
790b137e | 109 | static gint wxgtk_list_store_iter_n_children (GtkTreeModel *tree_model, |
93763ad5 | 110 | GtkTreeIter *iter); |
790b137e | 111 | static gboolean wxgtk_list_store_iter_nth_child (GtkTreeModel *tree_model, |
93763ad5 WS |
112 | GtkTreeIter *iter, |
113 | GtkTreeIter *parent, | |
114 | gint n); | |
790b137e | 115 | static gboolean wxgtk_list_store_iter_parent (GtkTreeModel *tree_model, |
93763ad5 WS |
116 | GtkTreeIter *iter, |
117 | GtkTreeIter *child); | |
790b137e | 118 | |
e152afc3 | 119 | static GObjectClass *list_parent_class = NULL; |
790b137e RR |
120 | |
121 | GType | |
111f83c4 | 122 | gtk_wx_list_store_get_type (void) |
790b137e | 123 | { |
93763ad5 | 124 | static GType list_store_type = 0; |
790b137e | 125 | |
93763ad5 | 126 | if (!list_store_type) |
790b137e | 127 | { |
de4a74e2 | 128 | const GTypeInfo list_store_info = |
93763ad5 WS |
129 | { |
130 | sizeof (GtkWxListStoreClass), | |
131 | NULL, /* base_init */ | |
132 | NULL, /* base_finalize */ | |
133 | (GClassInitFunc) wxgtk_list_store_class_init, | |
134 | NULL, /* class_finalize */ | |
135 | NULL, /* class_data */ | |
136 | sizeof (GtkWxListStore), | |
137 | 0, | |
138 | (GInstanceInitFunc) wxgtk_list_store_init, | |
139 | }; | |
790b137e RR |
140 | |
141 | static const GInterfaceInfo tree_model_info = | |
142 | { | |
93763ad5 WS |
143 | (GInterfaceInitFunc) wxgtk_list_store_tree_model_init, |
144 | NULL, | |
145 | NULL | |
790b137e RR |
146 | }; |
147 | ||
148 | list_store_type = g_type_register_static (G_TYPE_OBJECT, "GtkWxListStore", | |
93763ad5 | 149 | &list_store_info, (GTypeFlags)0 ); |
790b137e RR |
150 | |
151 | g_type_add_interface_static (list_store_type, | |
93763ad5 WS |
152 | GTK_TYPE_TREE_MODEL, |
153 | &tree_model_info); | |
790b137e RR |
154 | } |
155 | ||
156 | return list_store_type; | |
157 | } | |
158 | ||
1557c77b | 159 | static GtkWxListStore * |
e152afc3 | 160 | wxgtk_list_store_new(void) |
1557c77b | 161 | { |
e152afc3 RR |
162 | GtkWxListStore *retval = (GtkWxListStore *) g_object_new (GTK_TYPE_WX_LIST_STORE, NULL); |
163 | return retval; | |
1557c77b RR |
164 | } |
165 | ||
790b137e | 166 | static void |
1557c77b | 167 | wxgtk_list_store_class_init (GtkWxListStoreClass *klass) |
790b137e | 168 | { |
e152afc3 RR |
169 | list_parent_class = (GObjectClass*) g_type_class_peek_parent (klass); |
170 | GObjectClass *object_class = (GObjectClass*) klass; | |
790b137e RR |
171 | object_class->finalize = wxgtk_list_store_finalize; |
172 | } | |
173 | ||
174 | static void | |
175 | wxgtk_list_store_tree_model_init (GtkTreeModelIface *iface) | |
176 | { | |
177 | iface->get_flags = wxgtk_list_store_get_flags; | |
178 | iface->get_n_columns = wxgtk_list_store_get_n_columns; | |
179 | iface->get_column_type = wxgtk_list_store_get_column_type; | |
180 | iface->get_iter = wxgtk_list_store_get_iter; | |
181 | iface->get_path = wxgtk_list_store_get_path; | |
182 | iface->get_value = wxgtk_list_store_get_value; | |
183 | iface->iter_next = wxgtk_list_store_iter_next; | |
184 | iface->iter_children = wxgtk_list_store_iter_children; | |
185 | iface->iter_has_child = wxgtk_list_store_iter_has_child; | |
186 | iface->iter_n_children = wxgtk_list_store_iter_n_children; | |
187 | iface->iter_nth_child = wxgtk_list_store_iter_nth_child; | |
188 | iface->iter_parent = wxgtk_list_store_iter_parent; | |
189 | } | |
190 | ||
191 | static void | |
192 | wxgtk_list_store_init (GtkWxListStore *list_store) | |
193 | { | |
194 | list_store->model = NULL; | |
1557c77b | 195 | list_store->stamp = g_random_int(); |
790b137e RR |
196 | } |
197 | ||
198 | static void | |
199 | wxgtk_list_store_finalize (GObject *object) | |
200 | { | |
1557c77b | 201 | /* GtkWxListStore *list_store = GTK_WX_LIST_STORE (object); */ |
790b137e RR |
202 | |
203 | /* we need to sort out, which class deletes what */ | |
111f83c4 | 204 | /* delete list_store->model; */ |
790b137e RR |
205 | |
206 | /* must chain up */ | |
e152afc3 | 207 | (* list_parent_class->finalize) (object); |
790b137e | 208 | } |
93763ad5 | 209 | |
790b137e RR |
210 | } // extern "C" |
211 | ||
212 | //----------------------------------------------------------------------------- | |
213 | // implement callbacks from wxGtkListStore class by letting | |
214 | // them call the methods of wxWidgets' wxDataViewListModel | |
215 | //----------------------------------------------------------------------------- | |
216 | ||
217 | static GtkTreeModelFlags | |
218 | wxgtk_list_store_get_flags (GtkTreeModel *tree_model) | |
219 | { | |
1557c77b | 220 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), (GtkTreeModelFlags)0 ); |
790b137e | 221 | |
67cbdfc1 RR |
222 | // GTK+ list store uses a linked list for storing the |
223 | // items and a pointer to a child is used as the member | |
224 | // field of a GtkTreeIter. This means that the iter is | |
225 | // valid in the GtkListStore as long as the child exists. | |
226 | // We use the index of the row and since the index of a | |
227 | // specific row will change if a row above is deleted, | |
228 | // the iter does not persist | |
229 | return /* GTK_TREE_MODEL_ITERS_PERSIST | */ GTK_TREE_MODEL_LIST_ONLY; | |
790b137e RR |
230 | } |
231 | ||
232 | static gint | |
233 | wxgtk_list_store_get_n_columns (GtkTreeModel *tree_model) | |
234 | { | |
235 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; | |
236 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), 0); | |
237 | ||
9861f022 | 238 | return list_store->model->GetColumnCount(); |
790b137e RR |
239 | } |
240 | ||
241 | static GType | |
242 | wxgtk_list_store_get_column_type (GtkTreeModel *tree_model, | |
93763ad5 | 243 | gint index) |
790b137e RR |
244 | { |
245 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; | |
246 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), G_TYPE_INVALID); | |
247 | ||
1557c77b | 248 | GType gtype = G_TYPE_INVALID; |
93763ad5 | 249 | |
9861f022 | 250 | wxString wxtype = list_store->model->GetColumnType( (unsigned int) index ); |
93763ad5 | 251 | |
1557c77b RR |
252 | if (wxtype == wxT("string")) |
253 | gtype = G_TYPE_STRING; | |
72a3ac9b VZ |
254 | else |
255 | { | |
256 | wxFAIL_MSG( _T("non-string columns not supported yet") ); | |
257 | } | |
790b137e RR |
258 | |
259 | return gtype; | |
260 | } | |
261 | ||
262 | static gboolean | |
263 | wxgtk_list_store_get_iter (GtkTreeModel *tree_model, | |
93763ad5 WS |
264 | GtkTreeIter *iter, |
265 | GtkTreePath *path) | |
790b137e RR |
266 | { |
267 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; | |
268 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), FALSE); | |
269 | g_return_val_if_fail (gtk_tree_path_get_depth (path) > 0, FALSE); | |
270 | ||
0a71f9e9 | 271 | unsigned int i = (unsigned int)gtk_tree_path_get_indices (path)[0]; |
790b137e | 272 | |
9861f022 | 273 | if (i >= list_store->model->GetRowCount()) |
239eaa41 | 274 | return FALSE; |
790b137e | 275 | |
239eaa41 RR |
276 | iter->stamp = list_store->stamp; |
277 | // user_data is just the index | |
278 | iter->user_data = (gpointer) i; | |
790b137e RR |
279 | |
280 | return TRUE; | |
281 | } | |
282 | ||
283 | static GtkTreePath * | |
284 | wxgtk_list_store_get_path (GtkTreeModel *tree_model, | |
93763ad5 | 285 | GtkTreeIter *iter) |
790b137e | 286 | { |
790b137e | 287 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), NULL); |
239eaa41 | 288 | g_return_val_if_fail (iter->stamp == GTK_WX_LIST_STORE (tree_model)->stamp, NULL); |
93763ad5 | 289 | |
239eaa41 RR |
290 | GtkTreePath *retval = gtk_tree_path_new (); |
291 | // user_data is just the index | |
7a9f5d5a | 292 | int i = (wxUIntPtr) iter->user_data; |
239eaa41 RR |
293 | gtk_tree_path_append_index (retval, i); |
294 | return retval; | |
790b137e RR |
295 | } |
296 | ||
297 | static void | |
298 | wxgtk_list_store_get_value (GtkTreeModel *tree_model, | |
93763ad5 WS |
299 | GtkTreeIter *iter, |
300 | gint column, | |
301 | GValue *value) | |
790b137e | 302 | { |
1557c77b | 303 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; |
790b137e | 304 | g_return_if_fail (GTK_IS_WX_LIST_STORE (tree_model) ); |
239eaa41 | 305 | |
1557c77b | 306 | wxDataViewListModel *model = list_store->model; |
9861f022 | 307 | wxString mtype = model->GetColumnType( (unsigned int) column ); |
1557c77b RR |
308 | if (mtype == wxT("string")) |
309 | { | |
3f3af7e7 | 310 | wxVariant variant; |
1557c77b | 311 | g_value_init( value, G_TYPE_STRING ); |
72a3ac9b VZ |
312 | model->GetValue( variant, |
313 | (unsigned int) column, | |
314 | (unsigned int) iter->user_data ); | |
315 | ||
316 | // FIXME: we should support different encodings here | |
317 | g_value_set_string( value, wxGTK_CONV_SYS(variant.GetString()) ); | |
1557c77b RR |
318 | } |
319 | else | |
320 | { | |
72a3ac9b | 321 | wxFAIL_MSG( _T("non-string columns not supported yet") ); |
1557c77b | 322 | } |
790b137e RR |
323 | } |
324 | ||
325 | static gboolean | |
326 | wxgtk_list_store_iter_next (GtkTreeModel *tree_model, | |
93763ad5 | 327 | GtkTreeIter *iter) |
790b137e | 328 | { |
790b137e | 329 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), FALSE); |
1557c77b | 330 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; |
93763ad5 | 331 | |
67cbdfc1 | 332 | g_return_val_if_fail (list_store->stamp == iter->stamp, FALSE); |
790b137e | 333 | |
7a9f5d5a | 334 | int n = (wxUIntPtr) iter->user_data; |
93763ad5 | 335 | |
67cbdfc1 RR |
336 | if (n == -1) |
337 | return FALSE; | |
93763ad5 | 338 | |
9861f022 | 339 | if (n >= (int) list_store->model->GetRowCount()-1) |
67cbdfc1 | 340 | return FALSE; |
93763ad5 | 341 | |
111f83c4 | 342 | iter->user_data = (gpointer) ++n; |
790b137e | 343 | |
67cbdfc1 | 344 | return TRUE; |
790b137e RR |
345 | } |
346 | ||
347 | static gboolean | |
348 | wxgtk_list_store_iter_children (GtkTreeModel *tree_model, | |
93763ad5 WS |
349 | GtkTreeIter *iter, |
350 | GtkTreeIter *parent) | |
790b137e | 351 | { |
67cbdfc1 | 352 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), FALSE); |
1557c77b | 353 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; |
93763ad5 | 354 | |
67cbdfc1 | 355 | // this is a list, nodes have no children |
790b137e RR |
356 | if (parent) |
357 | return FALSE; | |
358 | ||
67cbdfc1 RR |
359 | iter->stamp = list_store->stamp; |
360 | iter->user_data = (gpointer) -1; | |
93763ad5 | 361 | |
67cbdfc1 | 362 | return TRUE; |
790b137e RR |
363 | } |
364 | ||
365 | static gboolean | |
366 | wxgtk_list_store_iter_has_child (GtkTreeModel *tree_model, | |
93763ad5 | 367 | GtkTreeIter *iter) |
790b137e RR |
368 | { |
369 | return FALSE; | |
370 | } | |
371 | ||
372 | static gint | |
373 | wxgtk_list_store_iter_n_children (GtkTreeModel *tree_model, | |
93763ad5 | 374 | GtkTreeIter *iter) |
790b137e RR |
375 | { |
376 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), -1); | |
1557c77b | 377 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; |
93763ad5 | 378 | |
790b137e | 379 | if (iter == NULL) |
9861f022 | 380 | return (gint) list_store->model->GetRowCount(); |
790b137e | 381 | |
67cbdfc1 | 382 | g_return_val_if_fail (list_store->stamp == iter->stamp, -1); |
93763ad5 | 383 | |
790b137e RR |
384 | return 0; |
385 | } | |
386 | ||
387 | static gboolean | |
388 | wxgtk_list_store_iter_nth_child (GtkTreeModel *tree_model, | |
93763ad5 WS |
389 | GtkTreeIter *iter, |
390 | GtkTreeIter *parent, | |
391 | gint n) | |
790b137e | 392 | { |
67cbdfc1 | 393 | g_return_val_if_fail (GTK_IS_WX_LIST_STORE (tree_model), FALSE); |
1557c77b | 394 | GtkWxListStore *list_store = (GtkWxListStore *) tree_model; |
93763ad5 | 395 | |
67cbdfc1 RR |
396 | if (parent) |
397 | return FALSE; | |
790b137e | 398 | |
67cbdfc1 RR |
399 | if (n < 0) |
400 | return FALSE; | |
93763ad5 | 401 | |
9861f022 | 402 | if (n >= (gint) list_store->model->GetRowCount()) |
67cbdfc1 | 403 | return FALSE; |
790b137e | 404 | |
67cbdfc1 RR |
405 | iter->stamp = list_store->stamp; |
406 | iter->user_data = (gpointer) n; | |
93763ad5 | 407 | |
67cbdfc1 | 408 | return TRUE; |
790b137e RR |
409 | } |
410 | ||
411 | static gboolean | |
412 | wxgtk_list_store_iter_parent (GtkTreeModel *tree_model, | |
93763ad5 WS |
413 | GtkTreeIter *iter, |
414 | GtkTreeIter *child) | |
790b137e RR |
415 | { |
416 | return FALSE; | |
417 | } | |
418 | ||
e152afc3 | 419 | //----------------------------------------------------------------------------- |
baa9ebc4 | 420 | // define new GTK+ class wxGtkRendererRenderer |
e152afc3 RR |
421 | //----------------------------------------------------------------------------- |
422 | ||
423 | extern "C" { | |
424 | ||
425 | #define GTK_TYPE_WX_CELL_RENDERER (gtk_wx_cell_renderer_get_type ()) | |
426 | #define GTK_WX_CELL_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_WX_CELL_RENDERER, GtkWxCellRenderer)) | |
427 | #define GTK_WX_CELL_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_WX_CELL_RENDERER, GtkWxCellRendererClass)) | |
428 | #define GTK_IS_WX_CELL_RENDERER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_WX_CELL_RENDERER)) | |
429 | #define GTK_IS_WX_CELL_RENDERER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_WX_CELL_RENDERER)) | |
430 | #define GTK_WX_CELL_RENDERER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_WX_CELL_RENDERER, GtkWxCellRendererClass)) | |
431 | ||
432 | GType gtk_wx_cell_renderer_get_type (void); | |
433 | ||
434 | typedef struct _GtkWxCellRenderer GtkWxCellRenderer; | |
435 | typedef struct _GtkWxCellRendererClass GtkWxCellRendererClass; | |
436 | ||
437 | struct _GtkWxCellRenderer | |
438 | { | |
439 | GtkCellRenderer parent; | |
440 | ||
441 | /*< private >*/ | |
baa9ebc4 | 442 | wxDataViewCustomRenderer *cell; |
4d496ecb | 443 | guint32 last_click; |
e152afc3 RR |
444 | }; |
445 | ||
446 | struct _GtkWxCellRendererClass | |
447 | { | |
448 | GtkCellRendererClass cell_parent_class; | |
e152afc3 RR |
449 | }; |
450 | ||
451 | ||
452 | static GtkCellRenderer *gtk_wx_cell_renderer_new (void); | |
553f7d8f RR |
453 | static void gtk_wx_cell_renderer_init ( |
454 | GtkWxCellRenderer *cell ); | |
455 | static void gtk_wx_cell_renderer_class_init( | |
456 | GtkWxCellRendererClass *klass ); | |
457 | static void gtk_wx_cell_renderer_finalize ( | |
458 | GObject *object ); | |
459 | static void gtk_wx_cell_renderer_get_size ( | |
460 | GtkCellRenderer *cell, | |
93763ad5 WS |
461 | GtkWidget *widget, |
462 | GdkRectangle *rectangle, | |
463 | gint *x_offset, | |
464 | gint *y_offset, | |
465 | gint *width, | |
466 | gint *height ); | |
553f7d8f RR |
467 | static void gtk_wx_cell_renderer_render ( |
468 | GtkCellRenderer *cell, | |
93763ad5 WS |
469 | GdkWindow *window, |
470 | GtkWidget *widget, | |
471 | GdkRectangle *background_area, | |
472 | GdkRectangle *cell_area, | |
473 | GdkRectangle *expose_area, | |
474 | GtkCellRendererState flags ); | |
553f7d8f RR |
475 | static gboolean gtk_wx_cell_renderer_activate( |
476 | GtkCellRenderer *cell, | |
477 | GdkEvent *event, | |
478 | GtkWidget *widget, | |
479 | const gchar *path, | |
480 | GdkRectangle *background_area, | |
481 | GdkRectangle *cell_area, | |
482 | GtkCellRendererState flags ); | |
1e510b1e RR |
483 | static GtkCellEditable *gtk_wx_cell_renderer_start_editing( |
484 | GtkCellRenderer *cell, | |
485 | GdkEvent *event, | |
486 | GtkWidget *widget, | |
487 | const gchar *path, | |
488 | GdkRectangle *background_area, | |
489 | GdkRectangle *cell_area, | |
490 | GtkCellRendererState flags ); | |
491 | ||
e152afc3 RR |
492 | |
493 | static GObjectClass *cell_parent_class = NULL; | |
494 | ||
495 | } // extern "C" | |
496 | ||
93763ad5 | 497 | GType |
e152afc3 RR |
498 | gtk_wx_cell_renderer_get_type (void) |
499 | { | |
553f7d8f | 500 | static GType cell_wx_type = 0; |
e152afc3 | 501 | |
553f7d8f | 502 | if (!cell_wx_type) |
e152afc3 | 503 | { |
de4a74e2 | 504 | const GTypeInfo cell_wx_info = |
553f7d8f RR |
505 | { |
506 | sizeof (GtkWxCellRendererClass), | |
93763ad5 WS |
507 | NULL, /* base_init */ |
508 | NULL, /* base_finalize */ | |
553f7d8f | 509 | (GClassInitFunc) gtk_wx_cell_renderer_class_init, |
93763ad5 WS |
510 | NULL, /* class_finalize */ |
511 | NULL, /* class_data */ | |
553f7d8f RR |
512 | sizeof (GtkWxCellRenderer), |
513 | 0, /* n_preallocs */ | |
514 | (GInstanceInitFunc) gtk_wx_cell_renderer_init, | |
515 | }; | |
516 | ||
93763ad5 | 517 | cell_wx_type = g_type_register_static( GTK_TYPE_CELL_RENDERER, |
553f7d8f | 518 | "GtkWxCellRenderer", &cell_wx_info, (GTypeFlags)0 ); |
e152afc3 RR |
519 | } |
520 | ||
553f7d8f | 521 | return cell_wx_type; |
e152afc3 RR |
522 | } |
523 | ||
524 | static void | |
525 | gtk_wx_cell_renderer_init (GtkWxCellRenderer *cell) | |
526 | { | |
527 | cell->cell = NULL; | |
4d496ecb | 528 | cell->last_click = 0; |
e152afc3 RR |
529 | } |
530 | ||
531 | static void | |
532 | gtk_wx_cell_renderer_class_init (GtkWxCellRendererClass *klass) | |
533 | { | |
534 | GObjectClass *object_class = G_OBJECT_CLASS (klass); | |
535 | GtkCellRendererClass *cell_class = GTK_CELL_RENDERER_CLASS (klass); | |
536 | ||
537 | cell_parent_class = (GObjectClass*) g_type_class_peek_parent (klass); | |
538 | ||
539 | object_class->finalize = gtk_wx_cell_renderer_finalize; | |
540 | ||
541 | cell_class->get_size = gtk_wx_cell_renderer_get_size; | |
542 | cell_class->render = gtk_wx_cell_renderer_render; | |
553f7d8f | 543 | cell_class->activate = gtk_wx_cell_renderer_activate; |
1e510b1e | 544 | cell_class->start_editing = gtk_wx_cell_renderer_start_editing; |
e152afc3 RR |
545 | } |
546 | ||
547 | static void | |
548 | gtk_wx_cell_renderer_finalize (GObject *object) | |
549 | { | |
550 | /* must chain up */ | |
551 | (* G_OBJECT_CLASS (cell_parent_class)->finalize) (object); | |
552 | } | |
553 | ||
554 | GtkCellRenderer* | |
555 | gtk_wx_cell_renderer_new (void) | |
556 | { | |
557 | return (GtkCellRenderer*) g_object_new (GTK_TYPE_WX_CELL_RENDERER, NULL); | |
558 | } | |
559 | ||
1e510b1e RR |
560 | |
561 | ||
562 | static GtkCellEditable *gtk_wx_cell_renderer_start_editing( | |
563 | GtkCellRenderer *renderer, | |
564 | GdkEvent *event, | |
565 | GtkWidget *widget, | |
566 | const gchar *path, | |
567 | GdkRectangle *background_area, | |
568 | GdkRectangle *cell_area, | |
569 | GtkCellRendererState flags ) | |
570 | { | |
571 | GtkWxCellRenderer *wxrenderer = (GtkWxCellRenderer *) renderer; | |
572 | wxDataViewCustomRenderer *cell = wxrenderer->cell; | |
573 | if (!cell->HasEditorCtrl()) | |
574 | return NULL; | |
575 | ||
576 | GdkRectangle rect; | |
577 | gtk_wx_cell_renderer_get_size (renderer, widget, cell_area, | |
578 | &rect.x, | |
579 | &rect.y, | |
580 | &rect.width, | |
581 | &rect.height); | |
582 | ||
583 | rect.x += cell_area->x; | |
584 | rect.y += cell_area->y; | |
585 | // rect.width -= renderer->xpad * 2; | |
586 | // rect.height -= renderer->ypad * 2; | |
587 | ||
588 | // wxRect renderrect( rect.x, rect.y, rect.width, rect.height ); | |
589 | wxRect renderrect( cell_area->x, cell_area->y, cell_area->width, cell_area->height ); | |
590 | ||
591 | wxDataViewListModel *model = cell->GetOwner()->GetOwner()->GetModel(); | |
592 | ||
593 | GtkTreePath *treepath = gtk_tree_path_new_from_string( path ); | |
594 | unsigned int model_row = (unsigned int)gtk_tree_path_get_indices (treepath)[0]; | |
595 | gtk_tree_path_free( treepath ); | |
596 | ||
597 | cell->StartEditing( model_row, renderrect ); | |
30715fa1 | 598 | |
1e510b1e RR |
599 | return NULL; |
600 | } | |
601 | ||
e152afc3 RR |
602 | static void |
603 | gtk_wx_cell_renderer_get_size (GtkCellRenderer *renderer, | |
93763ad5 WS |
604 | GtkWidget *widget, |
605 | GdkRectangle *cell_area, | |
606 | gint *x_offset, | |
607 | gint *y_offset, | |
608 | gint *width, | |
609 | gint *height) | |
e152afc3 RR |
610 | { |
611 | GtkWxCellRenderer *wxrenderer = (GtkWxCellRenderer *) renderer; | |
baa9ebc4 | 612 | wxDataViewCustomRenderer *cell = wxrenderer->cell; |
93763ad5 | 613 | |
e152afc3 RR |
614 | wxSize size = cell->GetSize(); |
615 | ||
616 | gint calc_width = (gint) renderer->xpad * 2 + size.x; | |
617 | gint calc_height = (gint) renderer->ypad * 2 + size.y; | |
93763ad5 WS |
618 | |
619 | if (x_offset) | |
e152afc3 | 620 | *x_offset = 0; |
93763ad5 | 621 | if (y_offset) |
e152afc3 RR |
622 | *y_offset = 0; |
623 | ||
624 | if (cell_area && size.x > 0 && size.y > 0) | |
625 | { | |
626 | if (x_offset) | |
93763ad5 | 627 | { |
e152afc3 RR |
628 | *x_offset = (gint)((renderer->xalign * |
629 | (cell_area->width - calc_width - 2 * renderer->xpad))); | |
630 | *x_offset = MAX (*x_offset, 0) + renderer->xpad; | |
93763ad5 | 631 | } |
e152afc3 RR |
632 | if (y_offset) |
633 | { | |
634 | *y_offset = (gint)((renderer->yalign * | |
635 | (cell_area->height - calc_height - 2 * renderer->ypad))); | |
636 | *y_offset = MAX (*y_offset, 0) + renderer->ypad; | |
637 | } | |
638 | } | |
639 | ||
640 | if (width) | |
641 | *width = calc_width; | |
93763ad5 | 642 | |
e152afc3 RR |
643 | if (height) |
644 | *height = calc_height; | |
645 | } | |
646 | ||
647 | static void | |
648 | gtk_wx_cell_renderer_render (GtkCellRenderer *renderer, | |
93763ad5 WS |
649 | GdkWindow *window, |
650 | GtkWidget *widget, | |
651 | GdkRectangle *background_area, | |
652 | GdkRectangle *cell_area, | |
653 | GdkRectangle *expose_area, | |
654 | GtkCellRendererState flags) | |
e152afc3 RR |
655 | |
656 | { | |
657 | GtkWxCellRenderer *wxrenderer = (GtkWxCellRenderer *) renderer; | |
baa9ebc4 | 658 | wxDataViewCustomRenderer *cell = wxrenderer->cell; |
93763ad5 | 659 | |
e152afc3 RR |
660 | GdkRectangle rect; |
661 | gtk_wx_cell_renderer_get_size (renderer, widget, cell_area, | |
93763ad5 WS |
662 | &rect.x, |
663 | &rect.y, | |
664 | &rect.width, | |
665 | &rect.height); | |
e152afc3 RR |
666 | |
667 | rect.x += cell_area->x; | |
668 | rect.y += cell_area->y; | |
669 | rect.width -= renderer->xpad * 2; | |
670 | rect.height -= renderer->ypad * 2; | |
93763ad5 | 671 | |
e152afc3 RR |
672 | GdkRectangle dummy; |
673 | if (gdk_rectangle_intersect (expose_area, &rect, &dummy)) | |
674 | { | |
675 | wxRect renderrect( rect.x, rect.y, rect.width, rect.height ); | |
676 | wxWindowDC* dc = (wxWindowDC*) cell->GetDC(); | |
4d496ecb RR |
677 | if (dc->m_window == NULL) |
678 | { | |
679 | dc->m_window = window; | |
680 | dc->SetUpDC(); | |
681 | } | |
93763ad5 | 682 | |
e152afc3 RR |
683 | int state = 0; |
684 | if (flags & GTK_CELL_RENDERER_SELECTED) | |
685 | state |= wxDATAVIEW_CELL_SELECTED; | |
686 | if (flags & GTK_CELL_RENDERER_PRELIT) | |
687 | state |= wxDATAVIEW_CELL_PRELIT; | |
688 | if (flags & GTK_CELL_RENDERER_INSENSITIVE) | |
689 | state |= wxDATAVIEW_CELL_INSENSITIVE; | |
690 | if (flags & GTK_CELL_RENDERER_INSENSITIVE) | |
691 | state |= wxDATAVIEW_CELL_INSENSITIVE; | |
692 | if (flags & GTK_CELL_RENDERER_FOCUSED) | |
693 | state |= wxDATAVIEW_CELL_FOCUSED; | |
694 | cell->Render( renderrect, dc, state ); | |
93763ad5 | 695 | } |
e152afc3 RR |
696 | } |
697 | ||
93763ad5 | 698 | static gboolean |
553f7d8f RR |
699 | gtk_wx_cell_renderer_activate( |
700 | GtkCellRenderer *renderer, | |
701 | GdkEvent *event, | |
702 | GtkWidget *widget, | |
703 | const gchar *path, | |
704 | GdkRectangle *background_area, | |
705 | GdkRectangle *cell_area, | |
706 | GtkCellRendererState flags ) | |
707 | { | |
708 | GtkWxCellRenderer *wxrenderer = (GtkWxCellRenderer *) renderer; | |
baa9ebc4 | 709 | wxDataViewCustomRenderer *cell = wxrenderer->cell; |
93763ad5 | 710 | |
553f7d8f RR |
711 | GdkRectangle rect; |
712 | gtk_wx_cell_renderer_get_size (renderer, widget, cell_area, | |
93763ad5 WS |
713 | &rect.x, |
714 | &rect.y, | |
715 | &rect.width, | |
716 | &rect.height); | |
553f7d8f RR |
717 | |
718 | rect.x += cell_area->x; | |
719 | rect.y += cell_area->y; | |
720 | rect.width -= renderer->xpad * 2; | |
721 | rect.height -= renderer->ypad * 2; | |
93763ad5 | 722 | |
553f7d8f | 723 | wxRect renderrect( rect.x, rect.y, rect.width, rect.height ); |
93763ad5 | 724 | |
4d496ecb | 725 | wxDataViewListModel *model = cell->GetOwner()->GetOwner()->GetModel(); |
93763ad5 | 726 | |
4d496ecb | 727 | GtkTreePath *treepath = gtk_tree_path_new_from_string( path ); |
0a71f9e9 | 728 | unsigned int model_row = (unsigned int)gtk_tree_path_get_indices (treepath)[0]; |
4d496ecb | 729 | gtk_tree_path_free( treepath ); |
93763ad5 | 730 | |
0a71f9e9 | 731 | unsigned int model_col = cell->GetOwner()->GetModelColumn(); |
93763ad5 | 732 | |
456e5c21 RR |
733 | if (!event) |
734 | { | |
735 | bool ret = false; | |
736 | ||
737 | // activated by <ENTER> | |
738 | if (cell->Activate( renderrect, model, model_col, model_row )) | |
739 | ret = true; | |
740 | ||
741 | return ret; | |
742 | } | |
743 | else if (event->type == GDK_BUTTON_PRESS) | |
4d496ecb RR |
744 | { |
745 | GdkEventButton *button_event = (GdkEventButton*) event; | |
93763ad5 | 746 | wxPoint pt( ((int) button_event->x) - renderrect.x, |
4d496ecb | 747 | ((int) button_event->y) - renderrect.y ); |
93763ad5 | 748 | |
4d496ecb RR |
749 | bool ret = false; |
750 | if (button_event->button == 1) | |
751 | { | |
752 | if (cell->LeftClick( pt, renderrect, model, model_col, model_row )) | |
753 | ret = true; | |
7ea3a0de | 754 | // TODO: query system double-click time |
4d496ecb RR |
755 | if (button_event->time - wxrenderer->last_click < 400) |
756 | if (cell->Activate( renderrect, model, model_col, model_row )) | |
757 | ret = true; | |
758 | } | |
759 | if (button_event->button == 3) | |
760 | { | |
761 | if (cell->RightClick( pt, renderrect, model, model_col, model_row )) | |
762 | ret = true; | |
763 | } | |
93763ad5 | 764 | |
4d496ecb | 765 | wxrenderer->last_click = button_event->time; |
93763ad5 | 766 | |
4d496ecb RR |
767 | return ret; |
768 | } | |
93763ad5 | 769 | |
4d496ecb | 770 | return false; |
553f7d8f RR |
771 | } |
772 | ||
93763ad5 | 773 | // --------------------------------------------------------- |
6e2e590f | 774 | // wxGtkDataViewListModelNotifier |
93763ad5 | 775 | // --------------------------------------------------------- |
6e2e590f RR |
776 | |
777 | class wxGtkDataViewListModelNotifier: public wxDataViewListModelNotifier | |
778 | { | |
779 | public: | |
780 | wxGtkDataViewListModelNotifier( GtkWxListStore* gtk_store, wxDataViewListModel *wx_model ); | |
93763ad5 | 781 | |
6e2e590f RR |
782 | virtual bool RowAppended(); |
783 | virtual bool RowPrepended(); | |
0a71f9e9 RR |
784 | virtual bool RowInserted( unsigned int before ); |
785 | virtual bool RowDeleted( unsigned int row ); | |
786 | virtual bool RowChanged( unsigned int row ); | |
787 | virtual bool ValueChanged( unsigned int col, unsigned int row ); | |
788 | virtual bool RowsReordered( unsigned int *new_order ); | |
6e2e590f | 789 | virtual bool Cleared(); |
93763ad5 | 790 | |
87f0efe2 | 791 | virtual bool Freed() |
9861f022 RR |
792 | { |
793 | m_wx_model = NULL; | |
794 | m_gtk_store = NULL; | |
795 | return wxDataViewListModelNotifier::Freed(); | |
796 | } | |
87f0efe2 | 797 | |
6e2e590f RR |
798 | GtkWxListStore *m_gtk_store; |
799 | wxDataViewListModel *m_wx_model; | |
800 | }; | |
801 | ||
93763ad5 | 802 | // --------------------------------------------------------- |
6e2e590f | 803 | // wxGtkDataViewListModelNotifier |
93763ad5 | 804 | // --------------------------------------------------------- |
6e2e590f | 805 | |
93763ad5 | 806 | wxGtkDataViewListModelNotifier::wxGtkDataViewListModelNotifier( |
6e2e590f RR |
807 | GtkWxListStore* gtk_store, wxDataViewListModel *wx_model ) |
808 | { | |
809 | m_gtk_store = gtk_store; | |
810 | m_wx_model = wx_model; | |
811 | } | |
93763ad5 | 812 | |
6e2e590f RR |
813 | bool wxGtkDataViewListModelNotifier::RowAppended() |
814 | { | |
9861f022 | 815 | unsigned int pos = m_wx_model->GetRowCount()-1; |
93763ad5 | 816 | |
6e2e590f RR |
817 | GtkTreeIter iter; |
818 | iter.stamp = m_gtk_store->stamp; | |
819 | iter.user_data = (gpointer) pos; | |
93763ad5 | 820 | |
6e2e590f RR |
821 | GtkTreePath *path = gtk_tree_path_new (); |
822 | gtk_tree_path_append_index (path, (gint) pos); | |
823 | gtk_tree_model_row_inserted (GTK_TREE_MODEL (m_gtk_store), path, &iter); | |
824 | gtk_tree_path_free (path); | |
93763ad5 | 825 | |
6e2e590f RR |
826 | return true; |
827 | } | |
828 | ||
829 | bool wxGtkDataViewListModelNotifier::RowPrepended() | |
830 | { | |
605c2c4a RR |
831 | GtkTreeIter iter; |
832 | iter.stamp = m_gtk_store->stamp; | |
833 | iter.user_data = (gpointer) 0; | |
93763ad5 | 834 | |
605c2c4a RR |
835 | GtkTreePath *path = gtk_tree_path_new (); |
836 | gtk_tree_path_append_index (path, (gint) 0); | |
837 | gtk_tree_model_row_inserted (GTK_TREE_MODEL (m_gtk_store), path, &iter); | |
838 | gtk_tree_path_free (path); | |
93763ad5 | 839 | |
605c2c4a | 840 | return true; |
6e2e590f RR |
841 | } |
842 | ||
0a71f9e9 | 843 | bool wxGtkDataViewListModelNotifier::RowInserted( unsigned int before ) |
6e2e590f | 844 | { |
4627af27 RR |
845 | GtkTreeIter iter; |
846 | iter.stamp = m_gtk_store->stamp; | |
847 | iter.user_data = (gpointer) before; | |
848 | ||
849 | GtkTreePath *path = gtk_tree_path_new (); | |
850 | gtk_tree_path_append_index (path, (gint) before); | |
851 | gtk_tree_model_row_inserted (GTK_TREE_MODEL (m_gtk_store), path, &iter); | |
852 | gtk_tree_path_free (path); | |
853 | ||
854 | return true; | |
6e2e590f RR |
855 | } |
856 | ||
0a71f9e9 | 857 | bool wxGtkDataViewListModelNotifier::RowDeleted( unsigned int row ) |
6e2e590f | 858 | { |
4627af27 RR |
859 | GtkTreePath *path = gtk_tree_path_new (); |
860 | gtk_tree_path_append_index (path, (gint) row); | |
861 | gtk_tree_model_row_deleted (GTK_TREE_MODEL (m_gtk_store), path); | |
862 | gtk_tree_path_free (path); | |
863 | ||
864 | return true; | |
6e2e590f RR |
865 | } |
866 | ||
0a71f9e9 | 867 | bool wxGtkDataViewListModelNotifier::RowChanged( unsigned int row ) |
6e2e590f | 868 | { |
a7f61f76 RR |
869 | GtkTreeIter iter; |
870 | iter.stamp = m_gtk_store->stamp; | |
871 | iter.user_data = (gpointer) row; | |
872 | GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (m_gtk_store), &iter); | |
873 | gtk_tree_model_row_changed (GTK_TREE_MODEL (m_gtk_store), path, &iter); | |
874 | gtk_tree_path_free (path); | |
875 | ||
876 | return true; | |
6e2e590f RR |
877 | } |
878 | ||
0a71f9e9 | 879 | bool wxGtkDataViewListModelNotifier::ValueChanged( unsigned int model_col, unsigned int model_row ) |
6e2e590f | 880 | { |
4eccd3a1 | 881 | // This adds GTK+'s missing MVC logic for ValueChanged |
0a5af992 VZ |
882 | wxObjectList::compatibility_iterator |
883 | node = GetOwner()->m_viewingColumns.GetFirst(); | |
8f850e28 RR |
884 | while (node) |
885 | { | |
886 | wxDataViewViewingColumn* viewing_column = (wxDataViewViewingColumn*) node->GetData(); | |
887 | if (viewing_column->m_modelColumn == model_col) | |
888 | { | |
889 | GtkTreeView *widget = GTK_TREE_VIEW(viewing_column->m_viewColumn->GetOwner()->m_treeview); | |
890 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(viewing_column->m_viewColumn->GetGtkHandle()); | |
891 | ||
892 | // Get cell area | |
893 | GtkTreePath *path = gtk_tree_path_new(); | |
894 | gtk_tree_path_append_index( path, model_row ); | |
895 | GdkRectangle cell_area; | |
896 | gtk_tree_view_get_cell_area( widget, path, column, &cell_area ); | |
93763ad5 | 897 | gtk_tree_path_free( path ); |
8f850e28 RR |
898 | |
899 | int ydiff = column->button->allocation.height; | |
900 | // Redraw | |
93763ad5 | 901 | gtk_widget_queue_draw_area( GTK_WIDGET(widget), |
8f850e28 RR |
902 | cell_area.x, ydiff + cell_area.y, cell_area.width, cell_area.height ); |
903 | } | |
904 | ||
905 | node = node->GetNext(); | |
906 | } | |
93763ad5 | 907 | |
8f850e28 | 908 | return true; |
6e2e590f RR |
909 | } |
910 | ||
0a71f9e9 | 911 | bool wxGtkDataViewListModelNotifier::RowsReordered( unsigned int *new_order ) |
4eccd3a1 | 912 | { |
0a71f9e9 | 913 | // Assume sizeof(unsigned int)= == sizeof(gint) |
4eccd3a1 RR |
914 | |
915 | GtkTreePath *path = gtk_tree_path_new (); | |
916 | gtk_tree_model_rows_reordered (GTK_TREE_MODEL (m_gtk_store), path, NULL, (gint*)new_order); | |
917 | gtk_tree_path_free (path); | |
918 | ||
919 | // This adds GTK+'s missing MVC logic for RowsReordered | |
0a5af992 VZ |
920 | wxObjectList::compatibility_iterator |
921 | node = GetOwner()->m_viewingColumns.GetFirst(); | |
4eccd3a1 RR |
922 | while (node) |
923 | { | |
924 | wxDataViewViewingColumn* viewing_column = (wxDataViewViewingColumn*) node->GetData(); | |
925 | GtkTreeView *widget = GTK_TREE_VIEW(viewing_column->m_viewColumn->GetOwner()->m_treeview); | |
926 | // Doesn't work yet... | |
93763ad5 | 927 | gtk_widget_queue_draw( GTK_WIDGET(widget) ); |
4eccd3a1 RR |
928 | |
929 | node = node->GetNext(); | |
930 | } | |
93763ad5 | 931 | |
4eccd3a1 RR |
932 | return true; |
933 | } | |
934 | ||
6e2e590f RR |
935 | bool wxGtkDataViewListModelNotifier::Cleared() |
936 | { | |
937 | return false; | |
938 | } | |
939 | ||
93763ad5 | 940 | // --------------------------------------------------------- |
baa9ebc4 | 941 | // wxDataViewRenderer |
93763ad5 | 942 | // --------------------------------------------------------- |
6842a71a | 943 | |
baa9ebc4 | 944 | IMPLEMENT_ABSTRACT_CLASS(wxDataViewRenderer, wxDataViewRendererBase) |
6842a71a | 945 | |
9861f022 RR |
946 | wxDataViewRenderer::wxDataViewRenderer( const wxString &varianttype, wxDataViewCellMode mode, |
947 | int align ) : | |
948 | wxDataViewRendererBase( varianttype, mode, align ) | |
6842a71a RR |
949 | { |
950 | m_renderer = NULL; | |
9861f022 RR |
951 | |
952 | // NOTE: SetMode() and SetAlignment() needs to be called in the renderer's ctor, | |
953 | // after the m_renderer pointer has been initialized | |
954 | } | |
955 | ||
956 | void wxDataViewRenderer::SetMode( wxDataViewCellMode mode ) | |
957 | { | |
958 | GtkCellRendererMode gtkMode; | |
959 | switch (mode) | |
960 | { | |
961 | case wxDATAVIEW_CELL_INERT: | |
962 | gtkMode = GTK_CELL_RENDERER_MODE_INERT; | |
963 | break; | |
964 | case wxDATAVIEW_CELL_ACTIVATABLE: | |
965 | gtkMode = GTK_CELL_RENDERER_MODE_ACTIVATABLE; | |
966 | break; | |
967 | case wxDATAVIEW_CELL_EDITABLE: | |
968 | gtkMode = GTK_CELL_RENDERER_MODE_EDITABLE; | |
969 | break; | |
970 | } | |
971 | ||
972 | GValue gvalue = { 0, }; | |
973 | g_value_init( &gvalue, gtk_cell_renderer_mode_get_type() ); | |
974 | g_value_set_enum( &gvalue, gtkMode ); | |
975 | g_object_set_property( G_OBJECT(m_renderer), "mode", &gvalue ); | |
976 | g_value_unset( &gvalue ); | |
977 | } | |
978 | ||
979 | wxDataViewCellMode wxDataViewRenderer::GetMode() const | |
980 | { | |
981 | wxDataViewCellMode ret; | |
982 | ||
983 | GValue gvalue; | |
984 | g_object_get( G_OBJECT(m_renderer), "mode", &gvalue, NULL); | |
985 | ||
986 | switch (g_value_get_enum(&gvalue)) | |
987 | { | |
988 | case GTK_CELL_RENDERER_MODE_INERT: | |
989 | ret = wxDATAVIEW_CELL_INERT; | |
990 | break; | |
991 | case GTK_CELL_RENDERER_MODE_ACTIVATABLE: | |
992 | ret = wxDATAVIEW_CELL_ACTIVATABLE; | |
993 | break; | |
994 | case GTK_CELL_RENDERER_MODE_EDITABLE: | |
995 | ret = wxDATAVIEW_CELL_EDITABLE; | |
996 | break; | |
997 | } | |
998 | ||
999 | g_value_unset( &gvalue ); | |
1000 | ||
1001 | return ret; | |
1002 | } | |
1003 | ||
1004 | void wxDataViewRenderer::SetAlignment( int align ) | |
1005 | { | |
1006 | // horizontal alignment: | |
1007 | ||
1008 | gfloat xalign = 0.0; | |
1009 | if (align & wxALIGN_RIGHT) | |
1010 | xalign = 1.0; | |
1011 | else if (align & wxALIGN_CENTER_HORIZONTAL) | |
1012 | xalign = 0.5; | |
1013 | ||
1014 | GValue gvalue = { 0, }; | |
1015 | g_value_init( &gvalue, G_TYPE_FLOAT ); | |
1016 | g_value_set_float( &gvalue, xalign ); | |
1017 | g_object_set_property( G_OBJECT(m_renderer), "xalign", &gvalue ); | |
1018 | g_value_unset( &gvalue ); | |
1019 | ||
1020 | // vertical alignment: | |
1021 | ||
1022 | gfloat yalign = 0.0; | |
1023 | if (align & wxALIGN_BOTTOM) | |
1024 | yalign = 1.0; | |
1025 | else if (align & wxALIGN_CENTER_VERTICAL) | |
1026 | yalign = 0.5; | |
1027 | ||
1028 | GValue gvalue2 = { 0, }; | |
1029 | g_value_init( &gvalue2, G_TYPE_FLOAT ); | |
1030 | g_value_set_float( &gvalue2, yalign ); | |
1031 | g_object_set_property( G_OBJECT(m_renderer), "yalign", &gvalue2 ); | |
1032 | g_value_unset( &gvalue2 ); | |
6842a71a RR |
1033 | } |
1034 | ||
9861f022 RR |
1035 | int wxDataViewRenderer::GetAlignment() const |
1036 | { | |
1037 | int ret = 0; | |
1038 | GValue gvalue; | |
1039 | ||
1040 | // horizontal alignment: | |
1041 | ||
1042 | g_object_get( G_OBJECT(m_renderer), "xalign", &gvalue, NULL ); | |
1043 | float xalign = g_value_get_float( &gvalue ); | |
1044 | if (xalign < 0.5) | |
1045 | ret |= wxALIGN_LEFT; | |
1046 | else if (xalign == 0.5) | |
1047 | ret |= wxALIGN_CENTER_HORIZONTAL; | |
1048 | else | |
1049 | ret |= wxALIGN_RIGHT; | |
1050 | g_value_unset( &gvalue ); | |
1051 | ||
1052 | ||
1053 | // vertical alignment: | |
1054 | ||
1055 | g_object_get( G_OBJECT(m_renderer), "yalign", &gvalue, NULL ); | |
1056 | float yalign = g_value_get_float( &gvalue ); | |
1057 | if (yalign < 0.5) | |
1058 | ret |= wxALIGN_TOP; | |
1059 | else if (yalign == 0.5) | |
1060 | ret |= wxALIGN_CENTER_VERTICAL; | |
1061 | else | |
1062 | ret |= wxALIGN_BOTTOM; | |
1063 | g_value_unset( &gvalue ); | |
1064 | ||
1065 | return ret; | |
1066 | } | |
1067 | ||
1068 | ||
1069 | ||
93763ad5 | 1070 | // --------------------------------------------------------- |
baa9ebc4 | 1071 | // wxDataViewTextRenderer |
93763ad5 | 1072 | // --------------------------------------------------------- |
6842a71a | 1073 | |
a7f61f76 | 1074 | extern "C" { |
93763ad5 | 1075 | static void wxGtkTextRendererEditedCallback( GtkCellRendererText *renderer, |
a7f61f76 RR |
1076 | gchar *arg1, gchar *arg2, gpointer user_data ); |
1077 | } | |
1078 | ||
93763ad5 | 1079 | static void wxGtkTextRendererEditedCallback( GtkCellRendererText *renderer, |
a7f61f76 RR |
1080 | gchar *arg1, gchar *arg2, gpointer user_data ) |
1081 | { | |
baa9ebc4 | 1082 | wxDataViewTextRenderer *cell = (wxDataViewTextRenderer*) user_data; |
93763ad5 | 1083 | |
1a74f561 | 1084 | wxString tmp = wxGTK_CONV_BACK_FONT(arg2, cell->GetOwner()->GetOwner()->GetFont()); |
a7f61f76 RR |
1085 | wxVariant value = tmp; |
1086 | if (!cell->Validate( value )) | |
1087 | return; | |
93763ad5 | 1088 | |
a7f61f76 | 1089 | wxDataViewListModel *model = cell->GetOwner()->GetOwner()->GetModel(); |
93763ad5 | 1090 | |
a7f61f76 | 1091 | GtkTreePath *path = gtk_tree_path_new_from_string( arg1 ); |
0a71f9e9 | 1092 | unsigned int model_row = (unsigned int)gtk_tree_path_get_indices (path)[0]; |
a7f61f76 | 1093 | gtk_tree_path_free( path ); |
93763ad5 | 1094 | |
0a71f9e9 | 1095 | unsigned int model_col = cell->GetOwner()->GetModelColumn(); |
93763ad5 | 1096 | |
a7f61f76 RR |
1097 | model->SetValue( value, model_col, model_row ); |
1098 | model->ValueChanged( model_col, model_row ); | |
1099 | } | |
1100 | ||
baa9ebc4 | 1101 | IMPLEMENT_CLASS(wxDataViewTextRenderer, wxDataViewRenderer) |
6842a71a | 1102 | |
9861f022 RR |
1103 | wxDataViewTextRenderer::wxDataViewTextRenderer( const wxString &varianttype, wxDataViewCellMode mode, |
1104 | int align ) : | |
1105 | wxDataViewRenderer( varianttype, mode, align ) | |
6842a71a | 1106 | { |
9861f022 | 1107 | m_renderer = (GtkWidget*) gtk_cell_renderer_text_new(); |
93763ad5 | 1108 | |
9861f022 | 1109 | if (mode & wxDATAVIEW_CELL_EDITABLE) |
a7f61f76 RR |
1110 | { |
1111 | GValue gvalue = { 0, }; | |
1112 | g_value_init( &gvalue, G_TYPE_BOOLEAN ); | |
1113 | g_value_set_boolean( &gvalue, true ); | |
1114 | g_object_set_property( G_OBJECT(m_renderer), "editable", &gvalue ); | |
1115 | g_value_unset( &gvalue ); | |
93763ad5 | 1116 | |
a7f61f76 RR |
1117 | g_signal_connect_after( m_renderer, "edited", G_CALLBACK(wxGtkTextRendererEditedCallback), this ); |
1118 | } | |
9861f022 RR |
1119 | |
1120 | SetMode(mode); | |
1121 | SetAlignment(align); | |
6842a71a | 1122 | } |
790b137e | 1123 | |
baa9ebc4 | 1124 | bool wxDataViewTextRenderer::SetValue( const wxVariant &value ) |
7b4fde82 RR |
1125 | { |
1126 | wxString tmp = value; | |
93763ad5 | 1127 | |
7b4fde82 RR |
1128 | GValue gvalue = { 0, }; |
1129 | g_value_init( &gvalue, G_TYPE_STRING ); | |
b94db696 | 1130 | g_value_set_string( &gvalue, wxGTK_CONV_FONT( tmp, GetOwner()->GetOwner()->GetFont() ) ); |
7b4fde82 RR |
1131 | g_object_set_property( G_OBJECT(m_renderer), "text", &gvalue ); |
1132 | g_value_unset( &gvalue ); | |
93763ad5 | 1133 | |
7b4fde82 RR |
1134 | return true; |
1135 | } | |
1136 | ||
9861f022 | 1137 | bool wxDataViewTextRenderer::GetValue( wxVariant &value ) const |
a7f61f76 RR |
1138 | { |
1139 | GValue gvalue = { 0, }; | |
1140 | g_value_init( &gvalue, G_TYPE_STRING ); | |
1141 | g_object_get_property( G_OBJECT(m_renderer), "text", &gvalue ); | |
1a74f561 VZ |
1142 | wxString tmp = wxGTK_CONV_BACK_FONT( g_value_get_string( &gvalue ), |
1143 | wx_const_cast(wxDataViewTextRenderer*, this)->GetOwner()->GetOwner()->GetFont() ); | |
a7f61f76 | 1144 | g_value_unset( &gvalue ); |
93763ad5 | 1145 | |
a7f61f76 RR |
1146 | value = tmp; |
1147 | ||
1148 | return true; | |
1149 | } | |
1150 | ||
9861f022 RR |
1151 | void wxDataViewTextRenderer::SetAlignment( int align ) |
1152 | { | |
1153 | wxDataViewRenderer::SetAlignment(align); | |
1154 | ||
01705e98 RR |
1155 | if (gtk_check_version(2,10,0)) |
1156 | return; | |
9861f022 | 1157 | |
01705e98 | 1158 | // horizontal alignment: |
9861f022 RR |
1159 | PangoAlignment pangoAlign = PANGO_ALIGN_LEFT; |
1160 | if (align & wxALIGN_RIGHT) | |
1161 | pangoAlign = PANGO_ALIGN_RIGHT; | |
1162 | else if (align & wxALIGN_CENTER_HORIZONTAL) | |
1163 | pangoAlign = PANGO_ALIGN_CENTER; | |
1164 | ||
1165 | GValue gvalue = { 0, }; | |
1166 | g_value_init( &gvalue, gtk_cell_renderer_mode_get_type() ); | |
1167 | g_value_set_enum( &gvalue, pangoAlign ); | |
1168 | g_object_set_property( G_OBJECT(m_renderer), "alignment", &gvalue ); | |
1169 | g_value_unset( &gvalue ); | |
1170 | } | |
1171 | ||
f4322df6 | 1172 | // --------------------------------------------------------- |
baa9ebc4 | 1173 | // wxDataViewBitmapRenderer |
f4322df6 | 1174 | // --------------------------------------------------------- |
cbc9145c | 1175 | |
baa9ebc4 | 1176 | IMPLEMENT_CLASS(wxDataViewBitmapRenderer, wxDataViewRenderer) |
cbc9145c | 1177 | |
9861f022 RR |
1178 | wxDataViewBitmapRenderer::wxDataViewBitmapRenderer( const wxString &varianttype, wxDataViewCellMode mode, |
1179 | int align ) : | |
1180 | wxDataViewRenderer( varianttype, mode, align ) | |
cbc9145c | 1181 | { |
9861f022 RR |
1182 | m_renderer = (GtkWidget*) gtk_cell_renderer_pixbuf_new(); |
1183 | ||
1184 | SetMode(mode); | |
1185 | SetAlignment(align); | |
cbc9145c RR |
1186 | } |
1187 | ||
baa9ebc4 | 1188 | bool wxDataViewBitmapRenderer::SetValue( const wxVariant &value ) |
cbc9145c RR |
1189 | { |
1190 | if (value.GetType() == wxT("wxBitmap")) | |
1191 | { | |
2586d4a1 RR |
1192 | wxBitmap bitmap; |
1193 | bitmap << value; | |
f4322df6 | 1194 | |
2586d4a1 RR |
1195 | // This may create a Pixbuf representation in the |
1196 | // wxBitmap object (and it will stay there) | |
1197 | GdkPixbuf *pixbuf = bitmap.GetPixbuf(); | |
f4322df6 | 1198 | |
2586d4a1 RR |
1199 | GValue gvalue = { 0, }; |
1200 | g_value_init( &gvalue, G_TYPE_OBJECT ); | |
1201 | g_value_set_object( &gvalue, pixbuf ); | |
1202 | g_object_set_property( G_OBJECT(m_renderer), "pixbuf", &gvalue ); | |
1203 | g_value_unset( &gvalue ); | |
f4322df6 | 1204 | |
2586d4a1 RR |
1205 | return true; |
1206 | } | |
f4322df6 | 1207 | |
2586d4a1 RR |
1208 | if (value.GetType() == wxT("wxIcon")) |
1209 | { | |
1210 | wxIcon bitmap; | |
1211 | bitmap << value; | |
f4322df6 | 1212 | |
cbc9145c RR |
1213 | // This may create a Pixbuf representation in the |
1214 | // wxBitmap object (and it will stay there) | |
2586d4a1 | 1215 | GdkPixbuf *pixbuf = bitmap.GetPixbuf(); |
f4322df6 | 1216 | |
cbc9145c RR |
1217 | GValue gvalue = { 0, }; |
1218 | g_value_init( &gvalue, G_TYPE_OBJECT ); | |
1219 | g_value_set_object( &gvalue, pixbuf ); | |
1220 | g_object_set_property( G_OBJECT(m_renderer), "pixbuf", &gvalue ); | |
1221 | g_value_unset( &gvalue ); | |
f4322df6 | 1222 | |
cbc9145c RR |
1223 | return true; |
1224 | } | |
f4322df6 | 1225 | |
cbc9145c RR |
1226 | return false; |
1227 | } | |
1228 | ||
9861f022 | 1229 | bool wxDataViewBitmapRenderer::GetValue( wxVariant &value ) const |
cbc9145c RR |
1230 | { |
1231 | return false; | |
1232 | } | |
f4322df6 | 1233 | |
93763ad5 | 1234 | // --------------------------------------------------------- |
baa9ebc4 | 1235 | // wxDataViewToggleRenderer |
93763ad5 | 1236 | // --------------------------------------------------------- |
fa28826d | 1237 | |
605c2c4a | 1238 | extern "C" { |
93763ad5 | 1239 | static void wxGtkToggleRendererToggledCallback( GtkCellRendererToggle *renderer, |
605c2c4a RR |
1240 | gchar *path, gpointer user_data ); |
1241 | } | |
1242 | ||
93763ad5 | 1243 | static void wxGtkToggleRendererToggledCallback( GtkCellRendererToggle *renderer, |
605c2c4a RR |
1244 | gchar *path, gpointer user_data ) |
1245 | { | |
baa9ebc4 | 1246 | wxDataViewToggleRenderer *cell = (wxDataViewToggleRenderer*) user_data; |
605c2c4a | 1247 | |
93763ad5 | 1248 | // get old value |
605c2c4a RR |
1249 | GValue gvalue = { 0, }; |
1250 | g_value_init( &gvalue, G_TYPE_BOOLEAN ); | |
1251 | g_object_get_property( G_OBJECT(renderer), "active", &gvalue ); | |
93763ad5 | 1252 | bool tmp = g_value_get_boolean( &gvalue ); |
605c2c4a RR |
1253 | g_value_unset( &gvalue ); |
1254 | // invert it | |
1255 | tmp = !tmp; | |
93763ad5 | 1256 | |
605c2c4a RR |
1257 | wxVariant value = tmp; |
1258 | if (!cell->Validate( value )) | |
1259 | return; | |
93763ad5 | 1260 | |
605c2c4a | 1261 | wxDataViewListModel *model = cell->GetOwner()->GetOwner()->GetModel(); |
93763ad5 | 1262 | |
605c2c4a | 1263 | GtkTreePath *gtk_path = gtk_tree_path_new_from_string( path ); |
0a71f9e9 | 1264 | unsigned int model_row = (unsigned int)gtk_tree_path_get_indices (gtk_path)[0]; |
605c2c4a | 1265 | gtk_tree_path_free( gtk_path ); |
93763ad5 | 1266 | |
0a71f9e9 | 1267 | unsigned int model_col = cell->GetOwner()->GetModelColumn(); |
93763ad5 | 1268 | |
605c2c4a RR |
1269 | model->SetValue( value, model_col, model_row ); |
1270 | model->ValueChanged( model_col, model_row ); | |
1271 | } | |
1272 | ||
baa9ebc4 | 1273 | IMPLEMENT_CLASS(wxDataViewToggleRenderer, wxDataViewRenderer) |
605c2c4a | 1274 | |
baa9ebc4 | 1275 | wxDataViewToggleRenderer::wxDataViewToggleRenderer( const wxString &varianttype, |
9861f022 RR |
1276 | wxDataViewCellMode mode, int align ) : |
1277 | wxDataViewRenderer( varianttype, mode, align ) | |
605c2c4a | 1278 | { |
9861f022 | 1279 | m_renderer = (GtkWidget*) gtk_cell_renderer_toggle_new(); |
93763ad5 | 1280 | |
9861f022 | 1281 | if (mode & wxDATAVIEW_CELL_ACTIVATABLE) |
605c2c4a | 1282 | { |
9861f022 RR |
1283 | g_signal_connect_after( m_renderer, "toggled", |
1284 | G_CALLBACK(wxGtkToggleRendererToggledCallback), this ); | |
553f7d8f RR |
1285 | } |
1286 | else | |
1287 | { | |
605c2c4a RR |
1288 | GValue gvalue = { 0, }; |
1289 | g_value_init( &gvalue, G_TYPE_BOOLEAN ); | |
553f7d8f | 1290 | g_value_set_boolean( &gvalue, false ); |
605c2c4a RR |
1291 | g_object_set_property( G_OBJECT(m_renderer), "activatable", &gvalue ); |
1292 | g_value_unset( &gvalue ); | |
605c2c4a | 1293 | } |
9861f022 RR |
1294 | |
1295 | SetMode(mode); | |
1296 | SetAlignment(align); | |
605c2c4a RR |
1297 | } |
1298 | ||
baa9ebc4 | 1299 | bool wxDataViewToggleRenderer::SetValue( const wxVariant &value ) |
605c2c4a RR |
1300 | { |
1301 | bool tmp = value; | |
93763ad5 | 1302 | |
605c2c4a RR |
1303 | GValue gvalue = { 0, }; |
1304 | g_value_init( &gvalue, G_TYPE_BOOLEAN ); | |
1305 | g_value_set_boolean( &gvalue, tmp ); | |
1306 | g_object_set_property( G_OBJECT(m_renderer), "active", &gvalue ); | |
1307 | g_value_unset( &gvalue ); | |
93763ad5 | 1308 | |
605c2c4a RR |
1309 | return true; |
1310 | } | |
1311 | ||
9861f022 | 1312 | bool wxDataViewToggleRenderer::GetValue( wxVariant &value ) const |
605c2c4a RR |
1313 | { |
1314 | GValue gvalue = { 0, }; | |
1315 | g_value_init( &gvalue, G_TYPE_BOOLEAN ); | |
1316 | g_object_get_property( G_OBJECT(m_renderer), "active", &gvalue ); | |
93763ad5 | 1317 | bool tmp = g_value_get_boolean( &gvalue ); |
605c2c4a | 1318 | g_value_unset( &gvalue ); |
93763ad5 | 1319 | |
605c2c4a RR |
1320 | value = tmp; |
1321 | ||
1322 | return true; | |
1323 | } | |
93763ad5 WS |
1324 | |
1325 | // --------------------------------------------------------- | |
baa9ebc4 | 1326 | // wxDataViewCustomRenderer |
93763ad5 | 1327 | // --------------------------------------------------------- |
e152afc3 RR |
1328 | |
1329 | class wxDataViewCtrlDC: public wxWindowDC | |
1330 | { | |
1331 | public: | |
1332 | wxDataViewCtrlDC( wxDataViewCtrl *window ) | |
1333 | { | |
1a367564 | 1334 | GtkWidget *widget = window->m_treeview; |
e152afc3 RR |
1335 | // Set later |
1336 | m_window = NULL; | |
4d496ecb | 1337 | |
e152afc3 RR |
1338 | m_context = window->GtkGetPangoDefaultContext(); |
1339 | m_layout = pango_layout_new( m_context ); | |
1340 | m_fontdesc = pango_font_description_copy( widget->style->font_desc ); | |
1341 | ||
1342 | m_cmap = gtk_widget_get_colormap( widget ? widget : window->m_widget ); | |
1343 | ||
4d496ecb RR |
1344 | // Set m_window later |
1345 | // SetUpDC(); | |
1346 | // m_owner = window; | |
e152afc3 RR |
1347 | } |
1348 | }; | |
1349 | ||
93763ad5 | 1350 | // --------------------------------------------------------- |
baa9ebc4 | 1351 | // wxDataViewCustomRenderer |
93763ad5 | 1352 | // --------------------------------------------------------- |
e152afc3 | 1353 | |
baa9ebc4 | 1354 | IMPLEMENT_CLASS(wxDataViewCustomRenderer, wxDataViewRenderer) |
e152afc3 | 1355 | |
baa9ebc4 | 1356 | wxDataViewCustomRenderer::wxDataViewCustomRenderer( const wxString &varianttype, |
9861f022 RR |
1357 | wxDataViewCellMode mode, int align, |
1358 | bool no_init ) : | |
1359 | wxDataViewRenderer( varianttype, mode, align ) | |
e152afc3 RR |
1360 | { |
1361 | m_dc = NULL; | |
93763ad5 | 1362 | |
ad63bf41 RR |
1363 | if (no_init) |
1364 | m_renderer = NULL; | |
1365 | else | |
9861f022 | 1366 | Init(mode, align); |
ad63bf41 RR |
1367 | } |
1368 | ||
9861f022 | 1369 | bool wxDataViewCustomRenderer::Init(wxDataViewCellMode mode, int align) |
ad63bf41 | 1370 | { |
e152afc3 RR |
1371 | GtkWxCellRenderer *renderer = (GtkWxCellRenderer *) gtk_wx_cell_renderer_new(); |
1372 | renderer->cell = this; | |
93763ad5 | 1373 | |
9861f022 | 1374 | m_renderer = (GtkWidget*) renderer; |
93763ad5 | 1375 | |
9861f022 RR |
1376 | SetMode(mode); |
1377 | SetAlignment(align); | |
93763ad5 | 1378 | |
ad63bf41 | 1379 | return true; |
e152afc3 RR |
1380 | } |
1381 | ||
baa9ebc4 | 1382 | wxDataViewCustomRenderer::~wxDataViewCustomRenderer() |
e152afc3 RR |
1383 | { |
1384 | if (m_dc) | |
1385 | delete m_dc; | |
1386 | } | |
1387 | ||
baa9ebc4 | 1388 | wxDC *wxDataViewCustomRenderer::GetDC() |
e152afc3 RR |
1389 | { |
1390 | if (m_dc == NULL) | |
4d496ecb RR |
1391 | { |
1392 | if (GetOwner() == NULL) | |
1393 | return NULL; | |
1394 | if (GetOwner()->GetOwner() == NULL) | |
1395 | return NULL; | |
e152afc3 | 1396 | m_dc = new wxDataViewCtrlDC( GetOwner()->GetOwner() ); |
4d496ecb | 1397 | } |
93763ad5 | 1398 | |
e152afc3 RR |
1399 | return m_dc; |
1400 | } | |
93763ad5 WS |
1401 | |
1402 | // --------------------------------------------------------- | |
baa9ebc4 | 1403 | // wxDataViewProgressRenderer |
93763ad5 | 1404 | // --------------------------------------------------------- |
ad63bf41 | 1405 | |
baa9ebc4 | 1406 | IMPLEMENT_CLASS(wxDataViewProgressRenderer, wxDataViewCustomRenderer) |
ad63bf41 | 1407 | |
baa9ebc4 | 1408 | wxDataViewProgressRenderer::wxDataViewProgressRenderer( const wxString &label, |
9861f022 RR |
1409 | const wxString &varianttype, wxDataViewCellMode mode, int align ) : |
1410 | wxDataViewCustomRenderer( varianttype, mode, align, true ) | |
ad63bf41 RR |
1411 | { |
1412 | m_label = label; | |
1413 | m_value = 0; | |
93763ad5 | 1414 | |
ad63bf41 RR |
1415 | #ifdef __WXGTK26__ |
1416 | if (!gtk_check_version(2,6,0)) | |
1417 | { | |
9861f022 | 1418 | m_renderer = (GtkWidget*) gtk_cell_renderer_progress_new(); |
93763ad5 | 1419 | |
ad63bf41 RR |
1420 | GValue gvalue = { 0, }; |
1421 | g_value_init( &gvalue, G_TYPE_STRING ); | |
09dfa6a0 VZ |
1422 | |
1423 | // FIXME: font encoding support | |
b94db696 | 1424 | g_value_set_string( &gvalue, wxGTK_CONV_SYS(m_label) ); |
ad63bf41 RR |
1425 | g_object_set_property( G_OBJECT(m_renderer), "text", &gvalue ); |
1426 | g_value_unset( &gvalue ); | |
9861f022 RR |
1427 | |
1428 | SetMode(mode); | |
1429 | SetAlignment(align); | |
ad63bf41 RR |
1430 | } |
1431 | else | |
1432 | #endif | |
1433 | { | |
1434 | // Use custom cell code | |
9861f022 | 1435 | wxDataViewCustomRenderer::Init(mode, align); |
ad63bf41 RR |
1436 | } |
1437 | } | |
1438 | ||
baa9ebc4 | 1439 | wxDataViewProgressRenderer::~wxDataViewProgressRenderer() |
ad63bf41 RR |
1440 | { |
1441 | } | |
1442 | ||
baa9ebc4 | 1443 | bool wxDataViewProgressRenderer::SetValue( const wxVariant &value ) |
ad63bf41 RR |
1444 | { |
1445 | #ifdef __WXGTK26__ | |
1446 | if (!gtk_check_version(2,6,0)) | |
1447 | { | |
7226118b | 1448 | gint tmp = (long) value; |
ad63bf41 RR |
1449 | GValue gvalue = { 0, }; |
1450 | g_value_init( &gvalue, G_TYPE_INT ); | |
7226118b | 1451 | g_value_set_int( &gvalue, tmp ); |
ad63bf41 RR |
1452 | g_object_set_property( G_OBJECT(m_renderer), "value", &gvalue ); |
1453 | g_value_unset( &gvalue ); | |
1454 | } | |
1455 | else | |
1456 | #endif | |
1457 | { | |
1458 | m_value = (long) value; | |
93763ad5 | 1459 | |
ad63bf41 RR |
1460 | if (m_value < 0) m_value = 0; |
1461 | if (m_value > 100) m_value = 100; | |
1462 | } | |
93763ad5 | 1463 | |
ad63bf41 RR |
1464 | return true; |
1465 | } | |
93763ad5 | 1466 | |
9861f022 RR |
1467 | bool wxDataViewProgressRenderer::GetValue( wxVariant &value ) const |
1468 | { | |
1469 | return false; | |
1470 | } | |
1471 | ||
baa9ebc4 | 1472 | bool wxDataViewProgressRenderer::Render( wxRect cell, wxDC *dc, int state ) |
ad63bf41 RR |
1473 | { |
1474 | double pct = (double)m_value / 100.0; | |
1475 | wxRect bar = cell; | |
1476 | bar.width = (int)(cell.width * pct); | |
1477 | dc->SetPen( *wxTRANSPARENT_PEN ); | |
1478 | dc->SetBrush( *wxBLUE_BRUSH ); | |
1479 | dc->DrawRectangle( bar ); | |
1480 | ||
1481 | dc->SetBrush( *wxTRANSPARENT_BRUSH ); | |
1482 | dc->SetPen( *wxBLACK_PEN ); | |
1483 | dc->DrawRectangle( cell ); | |
93763ad5 | 1484 | |
ad63bf41 RR |
1485 | return true; |
1486 | } | |
1487 | ||
9861f022 | 1488 | wxSize wxDataViewProgressRenderer::GetSize() const |
ad63bf41 RR |
1489 | { |
1490 | return wxSize(40,12); | |
1491 | } | |
93763ad5 WS |
1492 | |
1493 | // --------------------------------------------------------- | |
baa9ebc4 | 1494 | // wxDataViewDateRenderer |
93763ad5 | 1495 | // --------------------------------------------------------- |
4d496ecb | 1496 | |
baa9ebc4 | 1497 | class wxDataViewDateRendererPopupTransient: public wxPopupTransientWindow |
7ea3a0de | 1498 | { |
93763ad5 | 1499 | public: |
baa9ebc4 | 1500 | wxDataViewDateRendererPopupTransient( wxWindow* parent, wxDateTime *value, |
0a71f9e9 | 1501 | wxDataViewListModel *model, unsigned int col, unsigned int row ) : |
7ea3a0de RR |
1502 | wxPopupTransientWindow( parent, wxBORDER_SIMPLE ) |
1503 | { | |
1504 | m_model = model; | |
1505 | m_col = col; | |
1506 | m_row = row; | |
1507 | m_cal = new wxCalendarCtrl( this, -1, *value ); | |
1508 | wxBoxSizer *sizer = new wxBoxSizer( wxHORIZONTAL ); | |
1509 | sizer->Add( m_cal, 1, wxGROW ); | |
1510 | SetSizer( sizer ); | |
1511 | sizer->Fit( this ); | |
1512 | } | |
93763ad5 | 1513 | |
7ea3a0de RR |
1514 | virtual void OnDismiss() |
1515 | { | |
1516 | } | |
93763ad5 | 1517 | |
7ea3a0de | 1518 | void OnCalendar( wxCalendarEvent &event ); |
93763ad5 | 1519 | |
7ea3a0de | 1520 | wxCalendarCtrl *m_cal; |
93763ad5 | 1521 | wxDataViewListModel *m_model; |
0a71f9e9 RR |
1522 | unsigned int m_col; |
1523 | unsigned int m_row; | |
93763ad5 | 1524 | |
7ea3a0de RR |
1525 | private: |
1526 | DECLARE_EVENT_TABLE() | |
1527 | }; | |
1528 | ||
baa9ebc4 RR |
1529 | BEGIN_EVENT_TABLE(wxDataViewDateRendererPopupTransient,wxPopupTransientWindow) |
1530 | EVT_CALENDAR( -1, wxDataViewDateRendererPopupTransient::OnCalendar ) | |
7ea3a0de RR |
1531 | END_EVENT_TABLE() |
1532 | ||
baa9ebc4 | 1533 | void wxDataViewDateRendererPopupTransient::OnCalendar( wxCalendarEvent &event ) |
7ea3a0de RR |
1534 | { |
1535 | wxDateTime date = event.GetDate(); | |
1536 | wxVariant value = date; | |
1537 | m_model->SetValue( value, m_col, m_row ); | |
1538 | m_model->ValueChanged( m_col, m_row ); | |
1539 | DismissAndNotify(); | |
1540 | } | |
1541 | ||
baa9ebc4 | 1542 | IMPLEMENT_CLASS(wxDataViewDateRenderer, wxDataViewCustomRenderer) |
4d496ecb | 1543 | |
baa9ebc4 | 1544 | wxDataViewDateRenderer::wxDataViewDateRenderer( const wxString &varianttype, |
9861f022 RR |
1545 | wxDataViewCellMode mode, int align ) : |
1546 | wxDataViewCustomRenderer( varianttype, mode, align ) | |
4d496ecb | 1547 | { |
9861f022 RR |
1548 | SetMode(mode); |
1549 | SetAlignment(align); | |
4d496ecb | 1550 | } |
93763ad5 | 1551 | |
baa9ebc4 | 1552 | bool wxDataViewDateRenderer::SetValue( const wxVariant &value ) |
4d496ecb RR |
1553 | { |
1554 | m_date = value.GetDateTime(); | |
93763ad5 | 1555 | |
4d496ecb RR |
1556 | return true; |
1557 | } | |
1558 | ||
9861f022 RR |
1559 | bool wxDataViewDateRenderer::GetValue( wxVariant &value ) const |
1560 | { | |
1561 | return false; | |
1562 | } | |
1563 | ||
baa9ebc4 | 1564 | bool wxDataViewDateRenderer::Render( wxRect cell, wxDC *dc, int state ) |
4d496ecb RR |
1565 | { |
1566 | dc->SetFont( GetOwner()->GetOwner()->GetFont() ); | |
1567 | wxString tmp = m_date.FormatDate(); | |
1568 | dc->DrawText( tmp, cell.x, cell.y ); | |
1569 | ||
1570 | return true; | |
1571 | } | |
1572 | ||
9861f022 | 1573 | wxSize wxDataViewDateRenderer::GetSize() const |
4d496ecb | 1574 | { |
4d496ecb RR |
1575 | wxString tmp = m_date.FormatDate(); |
1576 | wxCoord x,y,d; | |
9861f022 | 1577 | GetView()->GetTextExtent( tmp, &x, &y, &d ); |
4d496ecb RR |
1578 | return wxSize(x,y+d); |
1579 | } | |
1580 | ||
9861f022 RR |
1581 | bool wxDataViewDateRenderer::Activate( wxRect cell, wxDataViewListModel *model, |
1582 | unsigned int col, unsigned int row ) | |
4d496ecb | 1583 | { |
3f3af7e7 RR |
1584 | wxVariant variant; |
1585 | model->GetValue( variant, col, row ); | |
7ea3a0de RR |
1586 | wxDateTime value = variant.GetDateTime(); |
1587 | ||
baa9ebc4 | 1588 | wxDataViewDateRendererPopupTransient *popup = new wxDataViewDateRendererPopupTransient( |
7ea3a0de RR |
1589 | GetOwner()->GetOwner()->GetParent(), &value, model, col, row ); |
1590 | wxPoint pos = wxGetMousePosition(); | |
1591 | popup->Move( pos ); | |
1592 | popup->Layout(); | |
1593 | popup->Popup( popup->m_cal ); | |
4d496ecb RR |
1594 | |
1595 | return true; | |
1596 | } | |
1597 | ||
93763ad5 | 1598 | // --------------------------------------------------------- |
605c2c4a | 1599 | // wxDataViewColumn |
93763ad5 | 1600 | // --------------------------------------------------------- |
7b4fde82 | 1601 | |
31fb32e1 RR |
1602 | |
1603 | static gboolean | |
1604 | gtk_dataview_header_button_press_callback( GtkWidget *widget, | |
1605 | GdkEventButton *gdk_event, | |
1606 | wxDataViewColumn *column ) | |
1607 | { | |
1608 | if (gdk_event->type != GDK_BUTTON_PRESS) | |
1609 | return TRUE; | |
f4322df6 | 1610 | |
31fb32e1 RR |
1611 | if (gdk_event->button == 1) |
1612 | { | |
1613 | wxDataViewCtrl *dv = column->GetOwner(); | |
1614 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, dv->GetId() ); | |
1615 | event.SetDataViewColumn( column ); | |
1616 | event.SetModel( dv->GetModel() ); | |
1617 | dv->GetEventHandler()->ProcessEvent( event ); | |
1618 | } | |
f4322df6 | 1619 | |
31fb32e1 RR |
1620 | return TRUE; |
1621 | } | |
1622 | ||
7b4fde82 RR |
1623 | extern "C" { |
1624 | static void wxGtkTreeCellDataFunc( GtkTreeViewColumn *column, | |
1625 | GtkCellRenderer *cell, | |
1626 | GtkTreeModel *model, | |
1627 | GtkTreeIter *iter, | |
1628 | gpointer data ); | |
1629 | } | |
1630 | ||
1631 | ||
1632 | static void wxGtkTreeCellDataFunc( GtkTreeViewColumn *column, | |
1633 | GtkCellRenderer *renderer, | |
1634 | GtkTreeModel *model, | |
1635 | GtkTreeIter *iter, | |
1636 | gpointer data ) | |
1637 | { | |
1638 | g_return_if_fail (GTK_IS_WX_LIST_STORE (model)); | |
1639 | GtkWxListStore *list_store = (GtkWxListStore *) model; | |
93763ad5 | 1640 | |
baa9ebc4 | 1641 | wxDataViewRenderer *cell = (wxDataViewRenderer*) data; |
a7f61f76 | 1642 | |
0a71f9e9 | 1643 | unsigned int model_row = (unsigned int) iter->user_data; |
93763ad5 | 1644 | |
3f3af7e7 RR |
1645 | wxVariant value; |
1646 | list_store->model->GetValue( value, cell->GetOwner()->GetModelColumn(), model_row ); | |
7b4fde82 RR |
1647 | |
1648 | if (value.GetType() != cell->GetVariantType()) | |
f4322df6 VZ |
1649 | wxLogError( wxT("Wrong type, required: %s but: %s"), |
1650 | value.GetType().c_str(), | |
cbc9145c | 1651 | cell->GetVariantType().c_str() ); |
93763ad5 | 1652 | |
7b4fde82 RR |
1653 | cell->SetValue( value ); |
1654 | } | |
1655 | ||
cbc9145c | 1656 | IMPLEMENT_CLASS(wxDataViewColumn, wxDataViewColumnBase) |
fa28826d | 1657 | |
f4322df6 VZ |
1658 | wxDataViewColumn::wxDataViewColumn( const wxString &title, wxDataViewRenderer *cell, |
1659 | unsigned int model_column, int width, | |
87f0efe2 RR |
1660 | wxAlignment align, int flags ) : |
1661 | wxDataViewColumnBase( title, cell, model_column, width, align, flags ) | |
fa28826d | 1662 | { |
9861f022 | 1663 | Init( align, flags, width ); |
31fb32e1 | 1664 | |
9861f022 | 1665 | gtk_tree_view_column_set_clickable( GTK_TREE_VIEW_COLUMN(m_column), TRUE ); |
31fb32e1 | 1666 | SetTitle( title ); |
fa28826d RR |
1667 | } |
1668 | ||
f4322df6 VZ |
1669 | wxDataViewColumn::wxDataViewColumn( const wxBitmap &bitmap, wxDataViewRenderer *cell, |
1670 | unsigned int model_column, int width, | |
87f0efe2 RR |
1671 | wxAlignment align, int flags ) : |
1672 | wxDataViewColumnBase( bitmap, cell, model_column, width, align, flags ) | |
9861f022 RR |
1673 | { |
1674 | Init( align, flags, width ); | |
1675 | ||
1676 | SetBitmap( bitmap ); | |
1677 | } | |
1678 | ||
1679 | void wxDataViewColumn::Init(wxAlignment align, int flags, int width) | |
07a84e7b | 1680 | { |
31fb32e1 | 1681 | m_isConnected = false; |
07a84e7b | 1682 | |
9861f022 | 1683 | GtkCellRenderer *renderer = (GtkCellRenderer *) GetRenderer()->GetGtkHandle(); |
07a84e7b | 1684 | GtkTreeViewColumn *column = gtk_tree_view_column_new(); |
9861f022 | 1685 | m_column = (GtkWidget*) column; |
07a84e7b | 1686 | |
9861f022 RR |
1687 | SetFlags( flags ); |
1688 | SetAlignment( align ); | |
07a84e7b | 1689 | |
9861f022 RR |
1690 | // NOTE: we prefer not to call SetMinWidth(wxDVC_DEFAULT_MINWIDTH); |
1691 | // as GTK+ is smart and unless explicitely told, will set the minimal | |
1692 | // width to the title's lenght, which is a better default | |
07a84e7b | 1693 | |
9861f022 RR |
1694 | // the GTK_TREE_VIEW_COLUMN_FIXED is required by the "fixed height" mode |
1695 | // that we use for the wxDataViewCtrl | |
1696 | gtk_tree_view_column_set_fixed_width( column, width < 0 ? wxDVC_DEFAULT_WIDTH : width ); | |
b94db696 | 1697 | gtk_tree_view_column_set_sizing( column, GTK_TREE_VIEW_COLUMN_FIXED ); |
07a84e7b | 1698 | |
9861f022 | 1699 | gtk_tree_view_column_pack_end( column, renderer, TRUE ); |
07a84e7b RR |
1700 | |
1701 | gtk_tree_view_column_set_cell_data_func( column, renderer, | |
9861f022 | 1702 | wxGtkTreeCellDataFunc, (gpointer) GetRenderer(), NULL ); |
07a84e7b RR |
1703 | } |
1704 | ||
fa28826d RR |
1705 | wxDataViewColumn::~wxDataViewColumn() |
1706 | { | |
1707 | } | |
1708 | ||
31fb32e1 RR |
1709 | void wxDataViewColumn::OnInternalIdle() |
1710 | { | |
1711 | if (m_isConnected) | |
1712 | return; | |
f4322df6 | 1713 | |
31fb32e1 RR |
1714 | if (GTK_WIDGET_REALIZED(GetOwner()->m_treeview)) |
1715 | { | |
9861f022 | 1716 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
31fb32e1 RR |
1717 | if (column->button) |
1718 | { | |
1719 | g_signal_connect(column->button, "button_press_event", | |
1720 | G_CALLBACK (gtk_dataview_header_button_press_callback), this); | |
f4322df6 | 1721 | |
31fb32e1 RR |
1722 | m_isConnected = true; |
1723 | } | |
1724 | } | |
1725 | } | |
1726 | ||
b94db696 RR |
1727 | void wxDataViewColumn::SetOwner( wxDataViewCtrl *owner ) |
1728 | { | |
1729 | wxDataViewColumnBase::SetOwner( owner ); | |
f4322df6 | 1730 | |
9861f022 | 1731 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
f4322df6 | 1732 | |
b94db696 | 1733 | gtk_tree_view_column_set_title( column, wxGTK_CONV_FONT(GetTitle(), GetOwner()->GetFont() ) ); |
b94db696 RR |
1734 | } |
1735 | ||
fa28826d RR |
1736 | void wxDataViewColumn::SetTitle( const wxString &title ) |
1737 | { | |
9861f022 | 1738 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
f4322df6 | 1739 | |
31fb32e1 RR |
1740 | if (m_isConnected) |
1741 | { | |
1742 | // disconnect before column->button gets recreated | |
f4322df6 | 1743 | g_signal_handlers_disconnect_by_func( column->button, |
9861f022 | 1744 | (GtkWidget*) gtk_dataview_header_button_press_callback, this); |
f4322df6 | 1745 | |
31fb32e1 RR |
1746 | m_isConnected = false; |
1747 | } | |
1748 | ||
09dfa6a0 VZ |
1749 | // FIXME: can it really happen that we don't have the owner here?? |
1750 | wxDataViewCtrl *ctrl = GetOwner(); | |
1751 | gtk_tree_view_column_set_title( column, ctrl ? wxGTK_CONV_FONT(title, ctrl->GetFont()) | |
1752 | : wxGTK_CONV_SYS(title) ); | |
31fb32e1 | 1753 | |
07a84e7b RR |
1754 | gtk_tree_view_column_set_widget( column, NULL ); |
1755 | } | |
1756 | ||
9861f022 RR |
1757 | wxString wxDataViewColumn::GetTitle() const |
1758 | { | |
1759 | const gchar *str = gtk_tree_view_column_get_title( GTK_TREE_VIEW_COLUMN(m_column) ); | |
1760 | return wxConvFileName->cMB2WX(str); | |
1761 | } | |
1762 | ||
07a84e7b RR |
1763 | void wxDataViewColumn::SetBitmap( const wxBitmap &bitmap ) |
1764 | { | |
1765 | wxDataViewColumnBase::SetBitmap( bitmap ); | |
1766 | ||
9861f022 | 1767 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
07a84e7b RR |
1768 | if (bitmap.Ok()) |
1769 | { | |
1770 | GtkImage *gtk_image = GTK_IMAGE( gtk_image_new() ); | |
f4322df6 | 1771 | |
07a84e7b RR |
1772 | GdkBitmap *mask = (GdkBitmap *) NULL; |
1773 | if (bitmap.GetMask()) | |
1774 | mask = bitmap.GetMask()->GetBitmap(); | |
1775 | ||
1776 | if (bitmap.HasPixbuf()) | |
1777 | { | |
1778 | gtk_image_set_from_pixbuf(GTK_IMAGE(gtk_image), | |
1779 | bitmap.GetPixbuf()); | |
1780 | } | |
1781 | else | |
1782 | { | |
1783 | gtk_image_set_from_pixmap(GTK_IMAGE(gtk_image), | |
1784 | bitmap.GetPixmap(), mask); | |
1785 | } | |
1786 | gtk_widget_show( GTK_WIDGET(gtk_image) ); | |
f4322df6 | 1787 | |
07a84e7b RR |
1788 | gtk_tree_view_column_set_widget( column, GTK_WIDGET(gtk_image) ); |
1789 | } | |
1790 | else | |
1791 | { | |
1792 | gtk_tree_view_column_set_widget( column, NULL ); | |
1793 | } | |
fa28826d RR |
1794 | } |
1795 | ||
9861f022 RR |
1796 | void wxDataViewColumn::SetHidden( bool hidden ) |
1797 | { | |
1798 | gtk_tree_view_column_set_visible( GTK_TREE_VIEW_COLUMN(m_column), !hidden ); | |
1799 | } | |
1800 | ||
1801 | void wxDataViewColumn::SetResizeable( bool resizeable ) | |
1802 | { | |
1803 | gtk_tree_view_column_set_resizable( GTK_TREE_VIEW_COLUMN(m_column), resizeable ); | |
1804 | } | |
1805 | ||
47cef10f RR |
1806 | void wxDataViewColumn::SetAlignment( wxAlignment align ) |
1807 | { | |
9861f022 | 1808 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
f4322df6 | 1809 | |
47cef10f RR |
1810 | gfloat xalign = 0.0; |
1811 | if (align == wxALIGN_RIGHT) | |
1812 | xalign = 1.0; | |
9861f022 RR |
1813 | if (align == wxALIGN_CENTER_HORIZONTAL || |
1814 | align == wxALIGN_CENTER) | |
47cef10f | 1815 | xalign = 0.5; |
f4322df6 | 1816 | |
9861f022 RR |
1817 | gtk_tree_view_column_set_alignment( column, xalign ); |
1818 | } | |
1819 | ||
1820 | wxAlignment wxDataViewColumn::GetAlignment() const | |
1821 | { | |
1822 | gfloat xalign = gtk_tree_view_column_get_alignment( GTK_TREE_VIEW_COLUMN(m_column) ); | |
1823 | ||
1824 | if (xalign == 1.0) | |
1825 | return wxALIGN_RIGHT; | |
1826 | if (xalign == 0.5) | |
1827 | return wxALIGN_CENTER_HORIZONTAL; | |
f4322df6 | 1828 | |
9861f022 | 1829 | return wxALIGN_LEFT; |
47cef10f RR |
1830 | } |
1831 | ||
31fb32e1 RR |
1832 | void wxDataViewColumn::SetSortable( bool sortable ) |
1833 | { | |
9861f022 | 1834 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
31fb32e1 RR |
1835 | gtk_tree_view_column_set_sort_indicator( column, sortable ); |
1836 | } | |
1837 | ||
87f0efe2 | 1838 | bool wxDataViewColumn::IsSortable() const |
31fb32e1 | 1839 | { |
9861f022 | 1840 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
31fb32e1 RR |
1841 | return gtk_tree_view_column_get_sort_indicator( column ); |
1842 | } | |
1843 | ||
9861f022 RR |
1844 | bool wxDataViewColumn::IsResizeable() const |
1845 | { | |
1846 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); | |
1847 | return gtk_tree_view_column_get_resizable( column ); | |
1848 | } | |
1849 | ||
1850 | bool wxDataViewColumn::IsHidden() const | |
1851 | { | |
1852 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); | |
1853 | return !gtk_tree_view_column_get_visible( column ); | |
1854 | } | |
1855 | ||
47cef10f RR |
1856 | void wxDataViewColumn::SetSortOrder( bool ascending ) |
1857 | { | |
9861f022 | 1858 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
f4322df6 | 1859 | |
47cef10f RR |
1860 | if (ascending) |
1861 | gtk_tree_view_column_set_sort_order( column, GTK_SORT_ASCENDING ); | |
1862 | else | |
1863 | gtk_tree_view_column_set_sort_order( column, GTK_SORT_DESCENDING ); | |
1864 | } | |
1865 | ||
87f0efe2 | 1866 | bool wxDataViewColumn::IsSortOrderAscending() const |
31fb32e1 | 1867 | { |
9861f022 | 1868 | GtkTreeViewColumn *column = GTK_TREE_VIEW_COLUMN(m_column); |
f4322df6 | 1869 | |
31fb32e1 RR |
1870 | return (gtk_tree_view_column_get_sort_order( column ) != GTK_SORT_DESCENDING); |
1871 | } | |
1872 | ||
9861f022 | 1873 | void wxDataViewColumn::SetMinWidth( int width ) |
533544f2 | 1874 | { |
9861f022 | 1875 | gtk_tree_view_column_set_min_width( GTK_TREE_VIEW_COLUMN(m_column), width ); |
533544f2 RR |
1876 | } |
1877 | ||
9861f022 RR |
1878 | int wxDataViewColumn::GetMinWidth() const |
1879 | { | |
1880 | return gtk_tree_view_column_get_min_width( GTK_TREE_VIEW_COLUMN(m_column) ); | |
1881 | } | |
1882 | ||
1883 | int wxDataViewColumn::GetWidth() const | |
533544f2 | 1884 | { |
9861f022 | 1885 | return gtk_tree_view_column_get_width( GTK_TREE_VIEW_COLUMN(m_column) ); |
533544f2 RR |
1886 | } |
1887 | ||
9861f022 | 1888 | void wxDataViewColumn::SetWidth( int width ) |
533544f2 | 1889 | { |
9861f022 | 1890 | gtk_tree_view_column_set_fixed_width( GTK_TREE_VIEW_COLUMN(m_column), width ); |
533544f2 RR |
1891 | } |
1892 | ||
9861f022 | 1893 | |
eb7f97f8 RR |
1894 | //----------------------------------------------------------------------------- |
1895 | // wxDataViewCtrl signal callbacks | |
1896 | //----------------------------------------------------------------------------- | |
1897 | ||
1898 | static void | |
1899 | wxdataview_selection_changed_callback( GtkTreeSelection* selection, wxDataViewCtrl *dv ) | |
1900 | { | |
b94db696 RR |
1901 | if (!GTK_WIDGET_REALIZED(dv->m_widget)) |
1902 | return; | |
f4322df6 | 1903 | |
eb7f97f8 | 1904 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ROW_SELECTED, dv->GetId() ); |
6ee2c58b | 1905 | event.SetRow( dv->GetSelection() ); |
eb7f97f8 RR |
1906 | event.SetModel( dv->GetModel() ); |
1907 | dv->GetEventHandler()->ProcessEvent( event ); | |
1908 | } | |
1909 | ||
f828871d | 1910 | static void |
f4322df6 | 1911 | wxdataview_row_activated_callback( GtkTreeView* treeview, GtkTreePath *path, |
f828871d RR |
1912 | GtkTreeViewColumn *column, wxDataViewCtrl *dv ) |
1913 | { | |
1914 | wxDataViewEvent event( wxEVT_COMMAND_DATAVIEW_ROW_ACTIVATED, dv->GetId() ); | |
1915 | unsigned int row = (unsigned int)gtk_tree_path_get_indices (path)[0]; | |
1916 | event.SetRow( row ); | |
1917 | event.SetModel( dv->GetModel() ); | |
1918 | dv->GetEventHandler()->ProcessEvent( event ); | |
1919 | } | |
1920 | ||
790b137e RR |
1921 | //----------------------------------------------------------------------------- |
1922 | // wxDataViewCtrl | |
1923 | //----------------------------------------------------------------------------- | |
1924 | ||
1e510b1e RR |
1925 | //----------------------------------------------------------------------------- |
1926 | // InsertChild for wxDataViewCtrl | |
1927 | //----------------------------------------------------------------------------- | |
1928 | ||
1929 | static void wxInsertChildInDataViewCtrl( wxWindowGTK* parent, wxWindowGTK* child ) | |
1930 | { | |
1931 | wxDataViewCtrl * dvc = (wxDataViewCtrl*) parent; | |
1932 | GtkWidget *treeview = dvc->GtkGetTreeView(); | |
1933 | ||
1934 | // Insert widget in GtkTreeView | |
1935 | if (GTK_WIDGET_REALIZED(treeview)) | |
1936 | gtk_widget_set_parent_window( child->m_widget, | |
1937 | gtk_tree_view_get_bin_window( GTK_TREE_VIEW(treeview) ) ); | |
1938 | gtk_widget_set_parent( child->m_widget, treeview ); | |
1939 | } | |
1940 | ||
1941 | static | |
1942 | void gtk_dataviewctrl_size_callback( GtkWidget *WXUNUSED(widget), | |
1943 | GtkAllocation *alloc, | |
1944 | wxDataViewCtrl *win ) | |
1945 | { | |
1946 | ||
1947 | wxWindowList::Node *node = win->GetChildren().GetFirst(); | |
1948 | while (node) | |
1949 | { | |
1950 | wxWindow *child = node->GetData(); | |
1951 | ||
1952 | GtkRequisition req; | |
1953 | gtk_widget_size_request( child->m_widget, &req ); | |
1954 | ||
1955 | GtkAllocation alloc; | |
1956 | alloc.x = child->m_x; | |
1957 | alloc.y = child->m_y; | |
1958 | alloc.width = child->m_width; | |
1959 | alloc.height = child->m_height; | |
1960 | gtk_widget_size_allocate( child->m_widget, &alloc ); | |
1961 | ||
1962 | node = node->GetNext(); | |
1963 | } | |
1964 | } | |
1965 | ||
1966 | ||
1967 | ||
239eaa41 RR |
1968 | IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl, wxDataViewCtrlBase) |
1969 | ||
1970 | wxDataViewCtrl::~wxDataViewCtrl() | |
1971 | { | |
8f850e28 RR |
1972 | if (m_notifier) |
1973 | GetModel()->RemoveNotifier( m_notifier ); | |
87f0efe2 RR |
1974 | |
1975 | // remove the model from the GtkTreeView before it gets destroyed by the | |
1976 | // wxDataViewCtrlBase's dtor | |
1977 | gtk_tree_view_set_model( GTK_TREE_VIEW(m_treeview), NULL ); | |
239eaa41 RR |
1978 | } |
1979 | ||
1980 | void wxDataViewCtrl::Init() | |
1981 | { | |
8f850e28 | 1982 | m_notifier = NULL; |
239eaa41 RR |
1983 | } |
1984 | ||
1985 | bool wxDataViewCtrl::Create(wxWindow *parent, wxWindowID id, | |
93763ad5 | 1986 | const wxPoint& pos, const wxSize& size, |
239eaa41 RR |
1987 | long style, const wxValidator& validator ) |
1988 | { | |
1989 | Init(); | |
93763ad5 WS |
1990 | |
1991 | m_needParent = true; | |
239eaa41 RR |
1992 | |
1993 | if (!PreCreation( parent, pos, size ) || | |
1994 | !CreateBase( parent, id, pos, size, style, validator )) | |
1995 | { | |
1996 | wxFAIL_MSG( wxT("wxDataViewCtrl creation failed") ); | |
93763ad5 | 1997 | return false; |
239eaa41 | 1998 | } |
1a367564 | 1999 | |
1e510b1e RR |
2000 | m_insertCallback = wxInsertChildInDataViewCtrl; |
2001 | ||
1a367564 | 2002 | m_widget = gtk_scrolled_window_new (NULL, NULL); |
6493aaca VZ |
2003 | |
2004 | GtkScrolledWindowSetBorder(m_widget, style); | |
1a367564 RR |
2005 | |
2006 | m_treeview = gtk_tree_view_new(); | |
2007 | gtk_container_add (GTK_CONTAINER (m_widget), m_treeview); | |
1e510b1e RR |
2008 | |
2009 | g_signal_connect (m_treeview, "size_allocate", | |
2010 | G_CALLBACK (gtk_dataviewctrl_size_callback), this); | |
ed4b0fdc | 2011 | |
b94db696 RR |
2012 | #ifdef __WXGTK26__ |
2013 | if (!gtk_check_version(2,6,0)) | |
2014 | gtk_tree_view_set_fixed_height_mode( GTK_TREE_VIEW(m_treeview), TRUE ); | |
2015 | #endif | |
2016 | ||
daebb44c RR |
2017 | if (style & wxDV_MULTIPLE) |
2018 | { | |
2019 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); | |
2020 | gtk_tree_selection_set_mode( selection, GTK_SELECTION_MULTIPLE ); | |
2021 | } | |
93763ad5 | 2022 | |
9861f022 RR |
2023 | gtk_tree_view_set_headers_visible( GTK_TREE_VIEW(m_treeview), (style & wxDV_NO_HEADER) == 0 ); |
2024 | ||
2025 | #ifdef __WXGTK210__ | |
2026 | if (!gtk_check_version(2,10,0)) | |
2027 | { | |
2028 | GtkTreeViewGridLines grid = GTK_TREE_VIEW_GRID_LINES_NONE; | |
f4322df6 VZ |
2029 | |
2030 | if ((style & wxDV_HORIZ_RULES) != 0 && | |
9861f022 RR |
2031 | (style & wxDV_VERT_RULES) != 0) |
2032 | grid = GTK_TREE_VIEW_GRID_LINES_BOTH; | |
2033 | else if (style & wxDV_VERT_RULES) | |
2034 | grid = GTK_TREE_VIEW_GRID_LINES_VERTICAL; | |
2035 | else if (style & wxDV_HORIZ_RULES) | |
2036 | grid = GTK_TREE_VIEW_GRID_LINES_HORIZONTAL; | |
2037 | ||
2038 | gtk_tree_view_set_grid_lines( GTK_TREE_VIEW(m_treeview), grid ); | |
2039 | } | |
2040 | else | |
2041 | #endif | |
2042 | gtk_tree_view_set_rules_hint( GTK_TREE_VIEW(m_treeview), (style & wxDV_HORIZ_RULES) != 0 ); | |
2043 | ||
1a367564 RR |
2044 | gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (m_widget), |
2045 | GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); | |
2046 | gtk_widget_show (m_treeview); | |
93763ad5 | 2047 | |
239eaa41 RR |
2048 | m_parent->DoAddChild( this ); |
2049 | ||
b94db696 RR |
2050 | PostCreation(size); |
2051 | ||
eb7f97f8 RR |
2052 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); |
2053 | g_signal_connect_after (selection, "changed", | |
2054 | G_CALLBACK (wxdataview_selection_changed_callback), this); | |
f828871d RR |
2055 | g_signal_connect_after (m_treeview, "row_activated", |
2056 | G_CALLBACK (wxdataview_row_activated_callback), this); | |
eb7f97f8 | 2057 | |
239eaa41 RR |
2058 | return true; |
2059 | } | |
2060 | ||
31fb32e1 RR |
2061 | void wxDataViewCtrl::OnInternalIdle() |
2062 | { | |
2063 | wxWindow::OnInternalIdle(); | |
f4322df6 | 2064 | |
9861f022 | 2065 | unsigned int cols = GetColumnCount(); |
31fb32e1 RR |
2066 | unsigned int i; |
2067 | for (i = 0; i < cols; i++) | |
2068 | { | |
2069 | wxDataViewColumn *col = GetColumn( i ); | |
2070 | col->OnInternalIdle(); | |
2071 | } | |
2072 | } | |
2073 | ||
6e2e590f | 2074 | bool wxDataViewCtrl::AssociateModel( wxDataViewListModel *model ) |
239eaa41 RR |
2075 | { |
2076 | if (!wxDataViewCtrlBase::AssociateModel( model )) | |
2077 | return false; | |
2078 | ||
6e2e590f RR |
2079 | GtkWxListStore *gtk_store = wxgtk_list_store_new(); |
2080 | gtk_store->model = model; | |
2081 | ||
8f850e28 | 2082 | m_notifier = new wxGtkDataViewListModelNotifier( gtk_store, model ); |
6e2e590f | 2083 | |
93763ad5 | 2084 | model->AddNotifier( m_notifier ); |
1557c77b | 2085 | |
1a367564 RR |
2086 | gtk_tree_view_set_model( GTK_TREE_VIEW(m_treeview), GTK_TREE_MODEL(gtk_store) ); |
2087 | g_object_unref( gtk_store ); | |
93763ad5 | 2088 | |
239eaa41 RR |
2089 | return true; |
2090 | } | |
790b137e | 2091 | |
fa28826d RR |
2092 | bool wxDataViewCtrl::AppendColumn( wxDataViewColumn *col ) |
2093 | { | |
2094 | if (!wxDataViewCtrlBase::AppendColumn(col)) | |
2095 | return false; | |
93763ad5 | 2096 | |
fa28826d RR |
2097 | GtkTreeViewColumn *column = (GtkTreeViewColumn *)col->GetGtkHandle(); |
2098 | ||
1a367564 | 2099 | gtk_tree_view_append_column( GTK_TREE_VIEW(m_treeview), column ); |
fa28826d RR |
2100 | |
2101 | return true; | |
2102 | } | |
2103 | ||
6ff7eee7 RR |
2104 | void wxDataViewCtrl::SetSelection( int row ) |
2105 | { | |
fc211fe5 | 2106 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); |
f4322df6 | 2107 | |
fc211fe5 RR |
2108 | if (row < 0) |
2109 | { | |
2110 | gtk_tree_selection_unselect_all( selection ); | |
2111 | } | |
2112 | else | |
2113 | { | |
2114 | GtkTreePath *path = gtk_tree_path_new (); | |
2115 | gtk_tree_path_append_index( path, row ); | |
f4322df6 | 2116 | |
fc211fe5 | 2117 | gtk_tree_selection_select_path( selection, path ); |
f4322df6 | 2118 | |
fc211fe5 RR |
2119 | gtk_tree_path_free( path ); |
2120 | } | |
2121 | } | |
2122 | ||
2123 | void wxDataViewCtrl::Unselect( unsigned int row ) | |
2124 | { | |
2125 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); | |
f4322df6 | 2126 | |
fc211fe5 RR |
2127 | GtkTreePath *path = gtk_tree_path_new (); |
2128 | gtk_tree_path_append_index( path, row ); | |
f4322df6 | 2129 | |
fc211fe5 | 2130 | gtk_tree_selection_unselect_path( selection, path ); |
f4322df6 | 2131 | |
fc211fe5 | 2132 | gtk_tree_path_free( path ); |
6ff7eee7 RR |
2133 | } |
2134 | ||
2135 | void wxDataViewCtrl::SetSelectionRange( unsigned int from, unsigned int to ) | |
2136 | { | |
2137 | } | |
2138 | ||
2139 | void wxDataViewCtrl::SetSelections( const wxArrayInt& aSelections) | |
2140 | { | |
2141 | } | |
f4322df6 | 2142 | |
6ff7eee7 RR |
2143 | bool wxDataViewCtrl::IsSelected( unsigned int row ) const |
2144 | { | |
fc211fe5 | 2145 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); |
f4322df6 | 2146 | |
fc211fe5 RR |
2147 | GtkTreePath *path = gtk_tree_path_new (); |
2148 | gtk_tree_path_append_index( path, row ); | |
f4322df6 | 2149 | |
fc211fe5 | 2150 | gboolean ret = gtk_tree_selection_path_is_selected( selection, path ); |
f4322df6 | 2151 | |
fc211fe5 | 2152 | gtk_tree_path_free( path ); |
f4322df6 | 2153 | |
fc211fe5 | 2154 | return ret; |
6ff7eee7 RR |
2155 | } |
2156 | ||
2157 | int wxDataViewCtrl::GetSelection() const | |
2158 | { | |
6ee2c58b RR |
2159 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); |
2160 | if (HasFlag(wxDV_MULTIPLE)) | |
2161 | { | |
2162 | GtkTreeModel *model; | |
2163 | GList *list = gtk_tree_selection_get_selected_rows( selection, &model ); | |
f4322df6 | 2164 | |
6ee2c58b RR |
2165 | // do something |
2166 | if (list) | |
2167 | { | |
2168 | // list = g_list_nth( list, 0 ); should be a noop | |
2169 | GtkTreePath *path = (GtkTreePath*) list->data; | |
f4322df6 | 2170 | |
6ee2c58b | 2171 | unsigned int row = (unsigned int)gtk_tree_path_get_indices (path)[0]; |
f4322df6 | 2172 | |
6ee2c58b RR |
2173 | // delete list |
2174 | g_list_foreach( list, (GFunc) gtk_tree_path_free, NULL ); | |
2175 | g_list_free( list ); | |
f4322df6 | 2176 | |
6ee2c58b RR |
2177 | return (int) row; |
2178 | } | |
2179 | } | |
2180 | else | |
2181 | { | |
f4322df6 | 2182 | |
6ee2c58b RR |
2183 | GtkTreeModel *model; |
2184 | GtkTreeIter iter; | |
2185 | gboolean has_selection = gtk_tree_selection_get_selected( selection, &model, &iter ); | |
2186 | if (has_selection) | |
2187 | { | |
2188 | unsigned int row = (wxUIntPtr) iter.user_data; | |
2189 | return (int) row; | |
2190 | } | |
2191 | } | |
f4322df6 | 2192 | |
6ff7eee7 RR |
2193 | return -1; |
2194 | } | |
2195 | ||
2196 | int wxDataViewCtrl::GetSelections(wxArrayInt& aSelections) const | |
2197 | { | |
6ee2c58b RR |
2198 | aSelections.Clear(); |
2199 | ||
2200 | GtkTreeSelection *selection = gtk_tree_view_get_selection( GTK_TREE_VIEW(m_treeview) ); | |
2201 | if (HasFlag(wxDV_MULTIPLE)) | |
2202 | { | |
2203 | GtkTreeModel *model; | |
2204 | GList *list = gtk_tree_selection_get_selected_rows( selection, &model ); | |
f4322df6 | 2205 | |
6ee2c58b RR |
2206 | int count = 0; |
2207 | while (list) | |
2208 | { | |
f4322df6 | 2209 | |
6ee2c58b RR |
2210 | // list = g_list_nth( list, 0 ); should be a noop |
2211 | GtkTreePath *path = (GtkTreePath*) list->data; | |
f4322df6 | 2212 | |
6ee2c58b | 2213 | unsigned int row = (unsigned int)gtk_tree_path_get_indices (path)[0]; |
f4322df6 | 2214 | |
6ee2c58b | 2215 | aSelections.Add( (int) row ); |
f4322df6 VZ |
2216 | |
2217 | list = g_list_next( list ); | |
6ee2c58b | 2218 | } |
f4322df6 | 2219 | |
6ee2c58b RR |
2220 | // delete list |
2221 | g_list_foreach( list, (GFunc) gtk_tree_path_free, NULL ); | |
2222 | g_list_free( list ); | |
f4322df6 | 2223 | |
6ee2c58b RR |
2224 | return count; |
2225 | } | |
2226 | else | |
2227 | { | |
2228 | GtkTreeModel *model; | |
2229 | GtkTreeIter iter; | |
2230 | gboolean has_selection = gtk_tree_selection_get_selected( selection, &model, &iter ); | |
2231 | if (has_selection) | |
2232 | { | |
2233 | unsigned int row = (wxUIntPtr) iter.user_data; | |
2234 | aSelections.Add( (int) row ); | |
2235 | return 1; | |
2236 | } | |
2237 | } | |
f4322df6 | 2238 | |
6ff7eee7 RR |
2239 | return 0; |
2240 | } | |
2241 | ||
b94db696 RR |
2242 | // static |
2243 | wxVisualAttributes | |
2244 | wxDataViewCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
2245 | { | |
2246 | return GetDefaultAttributesFromGTKWidget(gtk_tree_view_new); | |
2247 | } | |
2248 | ||
6ff7eee7 | 2249 | |
93763ad5 | 2250 | #endif |
4ed7af08 | 2251 | // !wxUSE_GENERICDATAVIEWCTRL |
790b137e | 2252 | |
93763ad5 | 2253 | #endif |
4ed7af08 | 2254 | // wxUSE_DATAVIEWCTRL |