1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gtk.TreeModelT;
26 
27 public  import glib.Str;
28 public  import gobject.ObjectG;
29 public  import gobject.Signals;
30 public  import gobject.Value;
31 public  import gtk.TreeIter;
32 public  import gtk.TreeModel;
33 public  import gtk.TreeModelIF;
34 public  import gtk.TreePath;
35 public  import gtkc.gdktypes;
36 public  import gtkc.gtk;
37 public  import gtkc.gtktypes;
38 
39 
40 /**
41  * The #GtkTreeModel interface defines a generic tree interface for
42  * use by the #GtkTreeView widget. It is an abstract interface, and
43  * is designed to be usable with any appropriate data structure. The
44  * programmer just has to implement this interface on their own data
45  * type for it to be viewable by a #GtkTreeView widget.
46  * 
47  * The model is represented as a hierarchical tree of strongly-typed,
48  * columned data. In other words, the model can be seen as a tree where
49  * every node has different values depending on which column is being
50  * queried. The type of data found in a column is determined by using
51  * the GType system (ie. #G_TYPE_INT, #GTK_TYPE_BUTTON, #G_TYPE_POINTER,
52  * etc). The types are homogeneous per column across all nodes. It is
53  * important to note that this interface only provides a way of examining
54  * a model and observing changes. The implementation of each individual
55  * model decides how and if changes are made.
56  * 
57  * In order to make life simpler for programmers who do not need to
58  * write their own specialized model, two generic models are provided
59  * — the #GtkTreeStore and the #GtkListStore. To use these, the
60  * developer simply pushes data into these models as necessary. These
61  * models provide the data structure as well as all appropriate tree
62  * interfaces. As a result, implementing drag and drop, sorting, and
63  * storing data is trivial. For the vast majority of trees and lists,
64  * these two models are sufficient.
65  * 
66  * Models are accessed on a node/column level of granularity. One can
67  * query for the value of a model at a certain node and a certain
68  * column on that node. There are two structures used to reference a
69  * particular node in a model. They are the #GtkTreePath-struct and
70  * the #GtkTreeIter-struct (“iter” is short for iterator). Most of the
71  * interface consists of operations on a #GtkTreeIter-struct.
72  * 
73  * A path is essentially a potential node. It is a location on a model
74  * that may or may not actually correspond to a node on a specific
75  * model. The #GtkTreePath-struct can be converted into either an
76  * array of unsigned integers or a string. The string form is a list
77  * of numbers separated by a colon. Each number refers to the offset
78  * at that level. Thus, the path `0` refers to the root
79  * node and the path `2:4` refers to the fifth child of
80  * the third node.
81  * 
82  * By contrast, a #GtkTreeIter-struct is a reference to a specific node on
83  * a specific model. It is a generic struct with an integer and three
84  * generic pointers. These are filled in by the model in a model-specific
85  * way. One can convert a path to an iterator by calling
86  * gtk_tree_model_get_iter(). These iterators are the primary way
87  * of accessing a model and are similar to the iterators used by
88  * #GtkTextBuffer. They are generally statically allocated on the
89  * stack and only used for a short time. The model interface defines
90  * a set of operations using them for navigating the model.
91  * 
92  * It is expected that models fill in the iterator with private data.
93  * For example, the #GtkListStore model, which is internally a simple
94  * linked list, stores a list node in one of the pointers. The
95  * #GtkTreeModelSort stores an array and an offset in two of the
96  * pointers. Additionally, there is an integer field. This field is
97  * generally filled with a unique stamp per model. This stamp is for
98  * catching errors resulting from using invalid iterators with a model.
99  * 
100  * The lifecycle of an iterator can be a little confusing at first.
101  * Iterators are expected to always be valid for as long as the model
102  * is unchanged (and doesn’t emit a signal). The model is considered
103  * to own all outstanding iterators and nothing needs to be done to
104  * free them from the user’s point of view. Additionally, some models
105  * guarantee that an iterator is valid for as long as the node it refers
106  * to is valid (most notably the #GtkTreeStore and #GtkListStore).
107  * Although generally uninteresting, as one always has to allow for
108  * the case where iterators do not persist beyond a signal, some very
109  * important performance enhancements were made in the sort model.
110  * As a result, the #GTK_TREE_MODEL_ITERS_PERSIST flag was added to
111  * indicate this behavior.
112  * 
113  * To help show some common operation of a model, some examples are
114  * provided. The first example shows three ways of getting the iter at
115  * the location `3:2:5`. While the first method shown is
116  * easier, the second is much more common, as you often get paths from
117  * callbacks.
118  * 
119  * ## Acquiring a #GtkTreeIter-struct
120  * 
121  * |[<!-- language="C" -->
122  * // Three ways of getting the iter pointing to the location
123  * GtkTreePath *path;
124  * GtkTreeIter iter;
125  * GtkTreeIter parent_iter;
126  * 
127  * // get the iterator from a string
128  * gtk_tree_model_get_iter_from_string (model,
129  * &iter,
130  * "3:2:5");
131  * 
132  * // get the iterator from a path
133  * path = gtk_tree_path_new_from_string ("3:2:5");
134  * gtk_tree_model_get_iter (model, &iter, path);
135  * gtk_tree_path_free (path);
136  * 
137  * // walk the tree to find the iterator
138  * gtk_tree_model_iter_nth_child (model, &iter,
139  * NULL, 3);
140  * parent_iter = iter;
141  * gtk_tree_model_iter_nth_child (model, &iter,
142  * &parent_iter, 2);
143  * parent_iter = iter;
144  * gtk_tree_model_iter_nth_child (model, &iter,
145  * &parent_iter, 5);
146  * ]|
147  * 
148  * This second example shows a quick way of iterating through a list
149  * and getting a string and an integer from each row. The
150  * populate_model() function used below is not
151  * shown, as it is specific to the #GtkListStore. For information on
152  * how to write such a function, see the #GtkListStore documentation.
153  * 
154  * ## Reading data from a #GtkTreeModel
155  * 
156  * |[<!-- language="C" -->
157  * enum
158  * {
159  * STRING_COLUMN,
160  * INT_COLUMN,
161  * N_COLUMNS
162  * };
163  * 
164  * ...
165  * 
166  * GtkTreeModel *list_store;
167  * GtkTreeIter iter;
168  * gboolean valid;
169  * gint row_count = 0;
170  * 
171  * // make a new list_store
172  * list_store = gtk_list_store_new (N_COLUMNS,
173  * G_TYPE_STRING,
174  * G_TYPE_INT);
175  * 
176  * // Fill the list store with data
177  * populate_model (list_store);
178  * 
179  * // Get the first iter in the list, check it is valid and walk
180  * // through the list, reading each row.
181  * 
182  * valid = gtk_tree_model_get_iter_first (list_store,
183  * &iter);
184  * while (valid)
185  * {
186  * gchar *str_data;
187  * gint   int_data;
188  * 
189  * // Make sure you terminate calls to gtk_tree_model_get() with a “-1” value
190  * gtk_tree_model_get (list_store, &iter,
191  * STRING_COLUMN, &str_data,
192  * INT_COLUMN, &int_data,
193  * -1);
194  * 
195  * // Do something with the data
196  * g_print ("Row %d: (%s,%d)\n",
197  * row_count, str_data, int_data);
198  * g_free (str_data);
199  * 
200  * valid = gtk_tree_model_iter_next (list_store,
201  * &iter);
202  * row_count++;
203  * }
204  * ]|
205  * 
206  * The #GtkTreeModel interface contains two methods for reference
207  * counting: gtk_tree_model_ref_node() and gtk_tree_model_unref_node().
208  * These two methods are optional to implement. The reference counting
209  * is meant as a way for views to let models know when nodes are being
210  * displayed. #GtkTreeView will take a reference on a node when it is
211  * visible, which means the node is either in the toplevel or expanded.
212  * Being displayed does not mean that the node is currently directly
213  * visible to the user in the viewport. Based on this reference counting
214  * scheme a caching model, for example, can decide whether or not to cache
215  * a node based on the reference count. A file-system based model would
216  * not want to keep the entire file hierarchy in memory, but just the
217  * folders that are currently expanded in every current view.
218  * 
219  * When working with reference counting, the following rules must be taken
220  * into account:
221  * 
222  * - Never take a reference on a node without owning a reference on its parent.
223  * This means that all parent nodes of a referenced node must be referenced
224  * as well.
225  * 
226  * - Outstanding references on a deleted node are not released. This is not
227  * possible because the node has already been deleted by the time the
228  * row-deleted signal is received.
229  * 
230  * - Models are not obligated to emit a signal on rows of which none of its
231  * siblings are referenced. To phrase this differently, signals are only
232  * required for levels in which nodes are referenced. For the root level
233  * however, signals must be emitted at all times (however the root level
234  * is always referenced when any view is attached).
235  */
236 public template TreeModelT(TStruct)
237 {
238 	/** Get the main Gtk struct */
239 	public GtkTreeModel* getTreeModelStruct()
240 	{
241 		return cast(GtkTreeModel*)getStruct();
242 	}
243 
244 	/**
245 	 * Get the value of a column as a char array.
246 	 * this is the same calling getValue and get the string from the value object
247 	 */
248 	string getValueString(TreeIter iter, int column)
249 	{
250 		Value value = getValue(iter, column);
251 		return value.getString();
252 	}
253 	
254 	/**
255 	 * Get the value of a column as a char array.
256 	 * this is the same calling getValue and get the int from the value object
257 	 */
258 	int getValueInt(TreeIter iter, int column)
259 	{
260 		Value value = getValue(iter, column);
261 		return value.getInt();
262 	}
263 	
264 	/**
265 	 * Sets iter to a valid iterator pointing to path.
266 	 * Params:
267 	 *  iter = The uninitialized GtkTreeIter.
268 	 *  path = The GtkTreePath.
269 	 * Returns:
270 	 *  TRUE, if iter was set.
271 	 */
272 	public int getIter(TreeIter iter, TreePath path)
273 	{
274 		iter.setModel(this);
275 		return gtk_tree_model_get_iter(
276 			getTreeModelStruct(),
277 			(iter is null) ? null : iter.getTreeIterStruct(),
278 		(path is null) ? null : path.getTreePathStruct());
279 	}
280 	
281 	/**
282 	 * Initializes and sets value to that at column.
283 	 * When done with value, g_value_unset() needs to be called
284 	 * to free any allocated memory.
285 	 * Params:
286 	 * iter = The GtkTreeIter.
287 	 * column = The column to lookup the value at.
288 	 * value = (inout) (transfer none) An empty GValue to set.
289 	 */
290 	public Value getValue(TreeIter iter, int column, Value value = null)
291 	{
292 		if ( value is null )
293 			value = new Value();
294 		
295 		gtk_tree_model_get_value(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct(), column, (value is null) ? null : value.getValueStruct());
296 		
297 		return value;
298 	}
299 
300 	/**
301 	 */
302 
303 	/**
304 	 * Creates a new #GtkTreeModel, with @child_model as the child_model
305 	 * and @root as the virtual root.
306 	 *
307 	 * Params:
308 	 *     root = A #GtkTreePath or %NULL.
309 	 *
310 	 * Return: A new #GtkTreeModel.
311 	 *
312 	 * Since: 2.4
313 	 */
314 	public TreeModelIF filterNew(TreePath root)
315 	{
316 		auto p = gtk_tree_model_filter_new(getTreeModelStruct(), (root is null) ? null : root.getTreePathStruct());
317 		
318 		if(p is null)
319 		{
320 			return null;
321 		}
322 		
323 		return ObjectG.getDObject!(TreeModel, TreeModelIF)(cast(GtkTreeModel*) p);
324 	}
325 
326 	/**
327 	 * Calls func on each node in model in a depth-first fashion.
328 	 *
329 	 * If @func returns %TRUE, then the tree ceases to be walked,
330 	 * and gtk_tree_model_foreach() returns.
331 	 *
332 	 * Params:
333 	 *     func = a function to be called on each row
334 	 *     userData = user data to passed to @func
335 	 */
336 	public void foreac(GtkTreeModelForeachFunc func, void* userData)
337 	{
338 		gtk_tree_model_foreach(getTreeModelStruct(), func, userData);
339 	}
340 
341 	/**
342 	 * Returns the type of the column.
343 	 *
344 	 * Params:
345 	 *     index = the column index
346 	 *
347 	 * Return: the type of the column
348 	 */
349 	public GType getColumnType(int index)
350 	{
351 		return gtk_tree_model_get_column_type(getTreeModelStruct(), index);
352 	}
353 
354 	/**
355 	 * Returns a set of flags supported by this interface.
356 	 *
357 	 * The flags are a bitwise combination of #GtkTreeModelFlags.
358 	 * The flags supported should not change during the lifetime
359 	 * of the @tree_model.
360 	 *
361 	 * Return: the flags supported by this interface
362 	 */
363 	public GtkTreeModelFlags getFlags()
364 	{
365 		return gtk_tree_model_get_flags(getTreeModelStruct());
366 	}
367 
368 	/**
369 	 * Initializes @iter with the first iterator in the tree
370 	 * (the one at the path "0") and returns %TRUE. Returns
371 	 * %FALSE if the tree is empty.
372 	 *
373 	 * Params:
374 	 *     iter = the uninitialized #GtkTreeIter-struct
375 	 *
376 	 * Return: %TRUE, if @iter was set
377 	 */
378 	public bool getIterFirst(out TreeIter iter)
379 	{
380 		GtkTreeIter* outiter = new GtkTreeIter;
381 		
382 		auto p = gtk_tree_model_get_iter_first(getTreeModelStruct(), outiter) != 0;
383 		
384 		iter = ObjectG.getDObject!(TreeIter)(outiter);
385 		
386 		return p;
387 	}
388 
389 	/**
390 	 * Sets @iter to a valid iterator pointing to @path_string, if it
391 	 * exists. Otherwise, @iter is left invalid and %FALSE is returned.
392 	 *
393 	 * Params:
394 	 *     iter = an uninitialized #GtkTreeIter-struct
395 	 *     pathString = a string representation of a #GtkTreePath-struct
396 	 *
397 	 * Return: %TRUE, if @iter was set
398 	 */
399 	public bool getIterFromString(out TreeIter iter, string pathString)
400 	{
401 		GtkTreeIter* outiter = new GtkTreeIter;
402 		
403 		auto p = gtk_tree_model_get_iter_from_string(getTreeModelStruct(), outiter, Str.toStringz(pathString)) != 0;
404 		
405 		iter = ObjectG.getDObject!(TreeIter)(outiter);
406 		
407 		return p;
408 	}
409 
410 	/**
411 	 * Returns the number of columns supported by @tree_model.
412 	 *
413 	 * Return: the number of columns
414 	 */
415 	public int getNColumns()
416 	{
417 		return gtk_tree_model_get_n_columns(getTreeModelStruct());
418 	}
419 
420 	/**
421 	 * Returns a newly-created #GtkTreePath-struct referenced by @iter.
422 	 *
423 	 * This path should be freed with gtk_tree_path_free().
424 	 *
425 	 * Params:
426 	 *     iter = the #GtkTreeIter-struct
427 	 *
428 	 * Return: a newly-created #GtkTreePath-struct
429 	 */
430 	public TreePath getPath(TreeIter iter)
431 	{
432 		auto p = gtk_tree_model_get_path(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct());
433 		
434 		if(p is null)
435 		{
436 			return null;
437 		}
438 		
439 		return ObjectG.getDObject!(TreePath)(cast(GtkTreePath*) p);
440 	}
441 
442 	/**
443 	 * Generates a string representation of the iter.
444 	 *
445 	 * This string is a “:” separated list of numbers.
446 	 * For example, “4:10:0:3” would be an acceptable
447 	 * return value for this string.
448 	 *
449 	 * Params:
450 	 *     iter = a #GtkTreeIter-struct
451 	 *
452 	 * Return: a newly-allocated string.
453 	 *     Must be freed with g_free().
454 	 *
455 	 * Since: 2.2
456 	 */
457 	public string getStringFromIter(TreeIter iter)
458 	{
459 		return Str.toString(gtk_tree_model_get_string_from_iter(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct()));
460 	}
461 
462 	/**
463 	 * See gtk_tree_model_get(), this version takes a va_list
464 	 * for language bindings to use.
465 	 *
466 	 * Params:
467 	 *     iter = a row in @tree_model
468 	 *     varArgs = va_list of column/return location pairs
469 	 */
470 	public void getValist(TreeIter iter, void* varArgs)
471 	{
472 		gtk_tree_model_get_valist(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct(), varArgs);
473 	}
474 
475 	/**
476 	 * Sets @iter to point to the first child of @parent.
477 	 *
478 	 * If @parent has no children, %FALSE is returned and @iter is
479 	 * set to be invalid. @parent will remain a valid node after this
480 	 * function has been called.
481 	 *
482 	 * If @parent is %NULL returns the first node, equivalent to
483 	 * `gtk_tree_model_get_iter_first (tree_model, iter);`
484 	 *
485 	 * Params:
486 	 *     iter = the new #GtkTreeIter-struct to be set to the child
487 	 *     parent = the #GtkTreeIter-struct, or %NULL
488 	 *
489 	 * Return: %TRUE, if @child has been set to the first child
490 	 */
491 	public bool iterChildren(out TreeIter iter, TreeIter parent)
492 	{
493 		GtkTreeIter* outiter = new GtkTreeIter;
494 		
495 		auto p = gtk_tree_model_iter_children(getTreeModelStruct(), outiter, (parent is null) ? null : parent.getTreeIterStruct()) != 0;
496 		
497 		iter = ObjectG.getDObject!(TreeIter)(outiter);
498 		
499 		return p;
500 	}
501 
502 	/**
503 	 * Returns %TRUE if @iter has children, %FALSE otherwise.
504 	 *
505 	 * Params:
506 	 *     iter = the #GtkTreeIter-struct to test for children
507 	 *
508 	 * Return: %TRUE if @iter has children
509 	 */
510 	public bool iterHasChild(TreeIter iter)
511 	{
512 		return gtk_tree_model_iter_has_child(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct()) != 0;
513 	}
514 
515 	/**
516 	 * Returns the number of children that @iter has.
517 	 *
518 	 * As a special case, if @iter is %NULL, then the number
519 	 * of toplevel nodes is returned.
520 	 *
521 	 * Params:
522 	 *     iter = the #GtkTreeIter-struct, or %NULL
523 	 *
524 	 * Return: the number of children of @iter
525 	 */
526 	public int iterNChildren(TreeIter iter)
527 	{
528 		return gtk_tree_model_iter_n_children(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct());
529 	}
530 
531 	/**
532 	 * Sets @iter to point to the node following it at the current level.
533 	 *
534 	 * If there is no next @iter, %FALSE is returned and @iter is set
535 	 * to be invalid.
536 	 *
537 	 * Params:
538 	 *     iter = the #GtkTreeIter-struct
539 	 *
540 	 * Return: %TRUE if @iter has been changed to the next node
541 	 */
542 	public bool iterNext(TreeIter iter)
543 	{
544 		return gtk_tree_model_iter_next(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct()) != 0;
545 	}
546 
547 	/**
548 	 * Sets @iter to be the child of @parent, using the given index.
549 	 *
550 	 * The first index is 0. If @n is too big, or @parent has no children,
551 	 * @iter is set to an invalid iterator and %FALSE is returned. @parent
552 	 * will remain a valid node after this function has been called. As a
553 	 * special case, if @parent is %NULL, then the @n-th root node
554 	 * is set.
555 	 *
556 	 * Params:
557 	 *     iter = the #GtkTreeIter-struct to set to the nth child
558 	 *     parent = the #GtkTreeIter-struct to get the child from, or %NULL.
559 	 *     n = the index of the desired child
560 	 *
561 	 * Return: %TRUE, if @parent has an @n-th child
562 	 */
563 	public bool iterNthChild(out TreeIter iter, TreeIter parent, int n)
564 	{
565 		GtkTreeIter* outiter = new GtkTreeIter;
566 		
567 		auto p = gtk_tree_model_iter_nth_child(getTreeModelStruct(), outiter, (parent is null) ? null : parent.getTreeIterStruct(), n) != 0;
568 		
569 		iter = ObjectG.getDObject!(TreeIter)(outiter);
570 		
571 		return p;
572 	}
573 
574 	/**
575 	 * Sets @iter to be the parent of @child.
576 	 *
577 	 * If @child is at the toplevel, and doesn’t have a parent, then
578 	 * @iter is set to an invalid iterator and %FALSE is returned.
579 	 * @child will remain a valid node after this function has been
580 	 * called.
581 	 *
582 	 * Params:
583 	 *     iter = the new #GtkTreeIter-struct to set to the parent
584 	 *     child = the #GtkTreeIter-struct
585 	 *
586 	 * Return: %TRUE, if @iter is set to the parent of @child
587 	 */
588 	public bool iterParent(out TreeIter iter, TreeIter child)
589 	{
590 		GtkTreeIter* outiter = new GtkTreeIter;
591 		
592 		auto p = gtk_tree_model_iter_parent(getTreeModelStruct(), outiter, (child is null) ? null : child.getTreeIterStruct()) != 0;
593 		
594 		iter = ObjectG.getDObject!(TreeIter)(outiter);
595 		
596 		return p;
597 	}
598 
599 	/**
600 	 * Sets @iter to point to the previous node at the current level.
601 	 *
602 	 * If there is no previous @iter, %FALSE is returned and @iter is
603 	 * set to be invalid.
604 	 *
605 	 * Params:
606 	 *     iter = the #GtkTreeIter-struct
607 	 *
608 	 * Return: %TRUE if @iter has been changed to the previous node
609 	 *
610 	 * Since: 3.0
611 	 */
612 	public bool iterPrevious(TreeIter iter)
613 	{
614 		return gtk_tree_model_iter_previous(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct()) != 0;
615 	}
616 
617 	/**
618 	 * Lets the tree ref the node.
619 	 *
620 	 * This is an optional method for models to implement.
621 	 * To be more specific, models may ignore this call as it exists
622 	 * primarily for performance reasons.
623 	 *
624 	 * This function is primarily meant as a way for views to let
625 	 * caching models know when nodes are being displayed (and hence,
626 	 * whether or not to cache that node). Being displayed means a node
627 	 * is in an expanded branch, regardless of whether the node is currently
628 	 * visible in the viewport. For example, a file-system based model
629 	 * would not want to keep the entire file-hierarchy in memory,
630 	 * just the sections that are currently being displayed by
631 	 * every current view.
632 	 *
633 	 * A model should be expected to be able to get an iter independent
634 	 * of its reffed state.
635 	 *
636 	 * Params:
637 	 *     iter = the #GtkTreeIter-struct
638 	 */
639 	public void refNode(TreeIter iter)
640 	{
641 		gtk_tree_model_ref_node(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct());
642 	}
643 
644 	/**
645 	 * Emits the #GtkTreeModel::row-changed signal on @tree_model.
646 	 *
647 	 * Params:
648 	 *     path = a #GtkTreePath-struct pointing to the changed row
649 	 *     iter = a valid #GtkTreeIter-struct pointing to the changed row
650 	 */
651 	public void rowChanged(TreePath path, TreeIter iter)
652 	{
653 		gtk_tree_model_row_changed(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct(), (iter is null) ? null : iter.getTreeIterStruct());
654 	}
655 
656 	/**
657 	 * Emits the #GtkTreeModel::row-deleted signal on @tree_model.
658 	 *
659 	 * This should be called by models after a row has been removed.
660 	 * The location pointed to by @path should be the location that
661 	 * the row previously was at. It may not be a valid location anymore.
662 	 *
663 	 * Nodes that are deleted are not unreffed, this means that any
664 	 * outstanding references on the deleted node should not be released.
665 	 *
666 	 * Params:
667 	 *     path = a #GtkTreePath-struct pointing to the previous location of
668 	 *         the deleted row
669 	 */
670 	public void rowDeleted(TreePath path)
671 	{
672 		gtk_tree_model_row_deleted(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct());
673 	}
674 
675 	/**
676 	 * Emits the #GtkTreeModel::row-has-child-toggled signal on
677 	 * @tree_model. This should be called by models after the child
678 	 * state of a node changes.
679 	 *
680 	 * Params:
681 	 *     path = a #GtkTreePath-struct pointing to the changed row
682 	 *     iter = a valid #GtkTreeIter-struct pointing to the changed row
683 	 */
684 	public void rowHasChildToggled(TreePath path, TreeIter iter)
685 	{
686 		gtk_tree_model_row_has_child_toggled(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct(), (iter is null) ? null : iter.getTreeIterStruct());
687 	}
688 
689 	/**
690 	 * Emits the #GtkTreeModel::row-inserted signal on @tree_model.
691 	 *
692 	 * Params:
693 	 *     path = a #GtkTreePath-struct pointing to the inserted row
694 	 *     iter = a valid #GtkTreeIter-struct pointing to the inserted row
695 	 */
696 	public void rowInserted(TreePath path, TreeIter iter)
697 	{
698 		gtk_tree_model_row_inserted(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct(), (iter is null) ? null : iter.getTreeIterStruct());
699 	}
700 
701 	/**
702 	 * Emits the #GtkTreeModel::rows-reordered signal on @tree_model.
703 	 *
704 	 * This should be called by models when their rows have been
705 	 * reordered.
706 	 *
707 	 * Params:
708 	 *     path = a #GtkTreePath-struct pointing to the tree node whose children
709 	 *         have been reordered
710 	 *     iter = a valid #GtkTreeIter-struct pointing to the node whose children
711 	 *         have been reordered, or %NULL if the depth of @path is 0
712 	 *     newOrder = an array of integers mapping the current position of
713 	 *         each child to its old position before the re-ordering,
714 	 *         i.e. @new_order`[newpos] = oldpos`
715 	 */
716 	public void rowsReordered(TreePath path, TreeIter iter, int* newOrder)
717 	{
718 		gtk_tree_model_rows_reordered(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct(), (iter is null) ? null : iter.getTreeIterStruct(), newOrder);
719 	}
720 
721 	/**
722 	 * Emits the #GtkTreeModel::rows-reordered signal on @tree_model.
723 	 *
724 	 * This should be called by models when their rows have been
725 	 * reordered.
726 	 *
727 	 * Params:
728 	 *     path = a #GtkTreePath-struct pointing to the tree node whose children
729 	 *         have been reordered
730 	 *     iter = a valid #GtkTreeIter-struct pointing to the node
731 	 *         whose children have been reordered, or %NULL if the depth
732 	 *         of @path is 0
733 	 *     newOrder = an array of integers
734 	 *         mapping the current position of each child to its old
735 	 *         position before the re-ordering,
736 	 *         i.e. @new_order`[newpos] = oldpos`
737 	 *     length = length of @new_order array
738 	 *
739 	 * Since: 3.10
740 	 */
741 	public void rowsReorderedWithLength(TreePath path, TreeIter iter, int[] newOrder)
742 	{
743 		gtk_tree_model_rows_reordered_with_length(getTreeModelStruct(), (path is null) ? null : path.getTreePathStruct(), (iter is null) ? null : iter.getTreeIterStruct(), newOrder.ptr, cast(int)newOrder.length);
744 	}
745 
746 	/**
747 	 * Creates a new #GtkTreeModel, with @child_model as the child model.
748 	 *
749 	 * Return: A new #GtkTreeModel.
750 	 */
751 	public TreeModelIF sortNewWithModel()
752 	{
753 		auto p = gtk_tree_model_sort_new_with_model(getTreeModelStruct());
754 		
755 		if(p is null)
756 		{
757 			return null;
758 		}
759 		
760 		return ObjectG.getDObject!(TreeModel, TreeModelIF)(cast(GtkTreeModel*) p);
761 	}
762 
763 	/**
764 	 * Lets the tree unref the node.
765 	 *
766 	 * This is an optional method for models to implement.
767 	 * To be more specific, models may ignore this call as it exists
768 	 * primarily for performance reasons. For more information on what
769 	 * this means, see gtk_tree_model_ref_node().
770 	 *
771 	 * Please note that nodes that are deleted are not unreffed.
772 	 *
773 	 * Params:
774 	 *     iter = the #GtkTreeIter-struct
775 	 */
776 	public void unrefNode(TreeIter iter)
777 	{
778 		gtk_tree_model_unref_node(getTreeModelStruct(), (iter is null) ? null : iter.getTreeIterStruct());
779 	}
780 
781 	int[string] connectedSignals;
782 
783 	void delegate(TreePath, TreeIter, TreeModelIF)[] _onRowChangedListeners;
784 	@property void delegate(TreePath, TreeIter, TreeModelIF)[] onRowChangedListeners()
785 	{
786 		return _onRowChangedListeners;
787 	}
788 	/**
789 	 * This signal is emitted when a row in the model has changed.
790 	 *
791 	 * Params:
792 	 *     path = a #GtkTreePath-struct identifying the changed row
793 	 *     iter = a valid #GtkTreeIter-struct pointing to the changed row
794 	 */
795 	void addOnRowChanged(void delegate(TreePath, TreeIter, TreeModelIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
796 	{
797 		if ( "row-changed" !in connectedSignals )
798 		{
799 			Signals.connectData(
800 				this,
801 				"row-changed",
802 				cast(GCallback)&callBackRowChanged,
803 				cast(void*)cast(TreeModelIF)this,
804 				null,
805 				connectFlags);
806 			connectedSignals["row-changed"] = 1;
807 		}
808 		_onRowChangedListeners ~= dlg;
809 	}
810 	extern(C) static void callBackRowChanged(GtkTreeModel* treemodelStruct, GtkTreePath* path, GtkTreeIter* iter, TreeModelIF _treemodel)
811 	{
812 		foreach ( void delegate(TreePath, TreeIter, TreeModelIF) dlg; _treemodel.onRowChangedListeners )
813 		{
814 			dlg(ObjectG.getDObject!(TreePath)(path), ObjectG.getDObject!(TreeIter)(iter), _treemodel);
815 		}
816 	}
817 
818 	void delegate(TreePath, TreeModelIF)[] _onRowDeletedListeners;
819 	@property void delegate(TreePath, TreeModelIF)[] onRowDeletedListeners()
820 	{
821 		return _onRowDeletedListeners;
822 	}
823 	/**
824 	 * This signal is emitted when a row has been deleted.
825 	 *
826 	 * Note that no iterator is passed to the signal handler,
827 	 * since the row is already deleted.
828 	 *
829 	 * This should be called by models after a row has been removed.
830 	 * The location pointed to by @path should be the location that
831 	 * the row previously was at. It may not be a valid location anymore.
832 	 *
833 	 * Params:
834 	 *     path = a #GtkTreePath-struct identifying the row
835 	 */
836 	void addOnRowDeleted(void delegate(TreePath, TreeModelIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
837 	{
838 		if ( "row-deleted" !in connectedSignals )
839 		{
840 			Signals.connectData(
841 				this,
842 				"row-deleted",
843 				cast(GCallback)&callBackRowDeleted,
844 				cast(void*)cast(TreeModelIF)this,
845 				null,
846 				connectFlags);
847 			connectedSignals["row-deleted"] = 1;
848 		}
849 		_onRowDeletedListeners ~= dlg;
850 	}
851 	extern(C) static void callBackRowDeleted(GtkTreeModel* treemodelStruct, GtkTreePath* path, TreeModelIF _treemodel)
852 	{
853 		foreach ( void delegate(TreePath, TreeModelIF) dlg; _treemodel.onRowDeletedListeners )
854 		{
855 			dlg(ObjectG.getDObject!(TreePath)(path), _treemodel);
856 		}
857 	}
858 
859 	void delegate(TreePath, TreeIter, TreeModelIF)[] _onRowHasChildToggledListeners;
860 	@property void delegate(TreePath, TreeIter, TreeModelIF)[] onRowHasChildToggledListeners()
861 	{
862 		return _onRowHasChildToggledListeners;
863 	}
864 	/**
865 	 * This signal is emitted when a row has gotten the first child
866 	 * row or lost its last child row.
867 	 *
868 	 * Params:
869 	 *     path = a #GtkTreePath-struct identifying the row
870 	 *     iter = a valid #GtkTreeIter-struct pointing to the row
871 	 */
872 	void addOnRowHasChildToggled(void delegate(TreePath, TreeIter, TreeModelIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
873 	{
874 		if ( "row-has-child-toggled" !in connectedSignals )
875 		{
876 			Signals.connectData(
877 				this,
878 				"row-has-child-toggled",
879 				cast(GCallback)&callBackRowHasChildToggled,
880 				cast(void*)cast(TreeModelIF)this,
881 				null,
882 				connectFlags);
883 			connectedSignals["row-has-child-toggled"] = 1;
884 		}
885 		_onRowHasChildToggledListeners ~= dlg;
886 	}
887 	extern(C) static void callBackRowHasChildToggled(GtkTreeModel* treemodelStruct, GtkTreePath* path, GtkTreeIter* iter, TreeModelIF _treemodel)
888 	{
889 		foreach ( void delegate(TreePath, TreeIter, TreeModelIF) dlg; _treemodel.onRowHasChildToggledListeners )
890 		{
891 			dlg(ObjectG.getDObject!(TreePath)(path), ObjectG.getDObject!(TreeIter)(iter), _treemodel);
892 		}
893 	}
894 
895 	void delegate(TreePath, TreeIter, TreeModelIF)[] _onRowInsertedListeners;
896 	@property void delegate(TreePath, TreeIter, TreeModelIF)[] onRowInsertedListeners()
897 	{
898 		return _onRowInsertedListeners;
899 	}
900 	/**
901 	 * This signal is emitted when a new row has been inserted in
902 	 * the model.
903 	 *
904 	 * Note that the row may still be empty at this point, since
905 	 * it is a common pattern to first insert an empty row, and
906 	 * then fill it with the desired values.
907 	 *
908 	 * Params:
909 	 *     path = a #GtkTreePath-struct identifying the new row
910 	 *     iter = a valid #GtkTreeIter-struct pointing to the new row
911 	 */
912 	void addOnRowInserted(void delegate(TreePath, TreeIter, TreeModelIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
913 	{
914 		if ( "row-inserted" !in connectedSignals )
915 		{
916 			Signals.connectData(
917 				this,
918 				"row-inserted",
919 				cast(GCallback)&callBackRowInserted,
920 				cast(void*)cast(TreeModelIF)this,
921 				null,
922 				connectFlags);
923 			connectedSignals["row-inserted"] = 1;
924 		}
925 		_onRowInsertedListeners ~= dlg;
926 	}
927 	extern(C) static void callBackRowInserted(GtkTreeModel* treemodelStruct, GtkTreePath* path, GtkTreeIter* iter, TreeModelIF _treemodel)
928 	{
929 		foreach ( void delegate(TreePath, TreeIter, TreeModelIF) dlg; _treemodel.onRowInsertedListeners )
930 		{
931 			dlg(ObjectG.getDObject!(TreePath)(path), ObjectG.getDObject!(TreeIter)(iter), _treemodel);
932 		}
933 	}
934 
935 	void delegate(TreePath, TreeIter, void*, TreeModelIF)[] _onRowsReorderedListeners;
936 	@property void delegate(TreePath, TreeIter, void*, TreeModelIF)[] onRowsReorderedListeners()
937 	{
938 		return _onRowsReorderedListeners;
939 	}
940 	/**
941 	 * This signal is emitted when the children of a node in the
942 	 * #GtkTreeModel have been reordered.
943 	 *
944 	 * Note that this signal is not emitted
945 	 * when rows are reordered by DND, since this is implemented
946 	 * by removing and then reinserting the row.
947 	 *
948 	 * Params:
949 	 *     path = a #GtkTreePath-struct identifying the tree node whose children
950 	 *         have been reordered
951 	 *     iter = a valid #GtkTreeIter-struct pointing to the node whose children
952 	 *         have been reordered, or %NULL if the depth of @path is 0
953 	 *     newOrder = an array of integers mapping the current position
954 	 *         of each child to its old position before the re-ordering,
955 	 *         i.e. @new_order`[newpos] = oldpos`
956 	 */
957 	void addOnRowsReordered(void delegate(TreePath, TreeIter, void*, TreeModelIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
958 	{
959 		if ( "rows-reordered" !in connectedSignals )
960 		{
961 			Signals.connectData(
962 				this,
963 				"rows-reordered",
964 				cast(GCallback)&callBackRowsReordered,
965 				cast(void*)cast(TreeModelIF)this,
966 				null,
967 				connectFlags);
968 			connectedSignals["rows-reordered"] = 1;
969 		}
970 		_onRowsReorderedListeners ~= dlg;
971 	}
972 	extern(C) static void callBackRowsReordered(GtkTreeModel* treemodelStruct, GtkTreePath* path, GtkTreeIter* iter, void* newOrder, TreeModelIF _treemodel)
973 	{
974 		foreach ( void delegate(TreePath, TreeIter, void*, TreeModelIF) dlg; _treemodel.onRowsReorderedListeners )
975 		{
976 			dlg(ObjectG.getDObject!(TreePath)(path), ObjectG.getDObject!(TreeIter)(iter), newOrder, _treemodel);
977 		}
978 	}
979 }