summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtktreemodelsort.sgml
blob: b023f1af054bf3e98a3a5673803b762a4e5b61a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!-- ##### SECTION Title ##### -->
GtkTreeModelSort

<!-- ##### SECTION Short_Description ##### -->
A GtkTreeModel which makes an underlying tree model sortable

<!-- ##### SECTION Long_Description ##### -->
<para>
The #GtkTreeModelSort is a model which implements the #GtkTreeSortable
interface.  It does not hold any data itself, but rather is created with
a child model and proxies its data.  It has identical column types to
this child model, and the changes in the child are propagated.  The
primary purpose of this model is to provide a way to sort a different
model without modifying it. Note that the sort function used by
#GtkTreeModelSort is not guaranteed to be stable.
</para>
<para>
The use of this is best demonstrated through an example.  In the
following sample code we create two #GtkTreeView widgets each with a
view of the same data.  As the model is wrapped here by a
#GtkTreeModelSort, the two #GtkTreeView<!-- -->s can each sort their
view of the data without affecting the other.  By contrast, if we
simply put the same model in each widget, then sorting the first would
sort the second.
</para>
<para>
<example>
<title>Using a <structname>GtkTreeModelSort</structname></title>
<programlisting>
{
  GtkTreeView *tree_view1;
  GtkTreeView *tree_view2;
  GtkTreeModel *sort_model1;
  GtkTreeModel *sort_model2;
  GtkTreeModel *child_model;

  /* get the child model */
  child_model = get_my_model ();

  /* Create the first tree */
  sort_model1 = gtk_tree_model_sort_new_with_model (child_model);
  tree_view1 = gtk_tree_view_new_with_model (sort_model1);

  /* Create the second tree */
  sort_model2 = gtk_tree_model_sort_new_with_model (child_model);
  tree_view2 = gtk_tree_view_new_with_model (sort_model2);

  /* Now we can sort the two models independently */
  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model1),
                                        COLUMN_1, GTK_SORT_ASCENDING);
  gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (sort_model2),
                                        COLUMN_1, GTK_SORT_DESCENDING);
}
</programlisting>
</example>
</para>

<para>
To demonstrate how to access the underlying child model from the sort
model, the next example will be a callback for the #GtkTreeSelection
"changed" signal.  In this callback, we get a string from COLUMN_1 of
the model.  We then modify the string, find the same selected row on the
child model, and change the row there.
</para>

<para>
<example>
<title>Accessing the child model of in a selection changed callback</title>
<programlisting>
void
selection_changed (GtkTreeSelection *selection, gpointer data)
{
  GtkTreeModel *sort_model = NULL;
  GtkTreeModel *child_model;
  GtkTreeIter sort_iter;
  GtkTreeIter child_iter;
  char *some_data = NULL;
  char *modified_data;

  /* Get the current selected row and the model. */
  if (! gtk_tree_selection_get_selected (selection,
                                         &amp;sort_model,
                                         &amp;sort_iter))
    return;


  /* Look up the current value on the selected row and get a new value
   * to change it to.
   */
  gtk_tree_model_get (GTK_TREE_MODEL (sort_model), &amp;sort_iter,
                      COLUMN_1, &amp;some_data,
                      -1);

  modified_data = change_the_data (some_data);
  g_free (some_data);

  /* Get an iterator on the child model, instead of the sort model. */
  gtk_tree_model_sort_convert_iter_to_child_iter (GTK_TREE_MODEL_SORT (sort_model),
                                                  &amp;child_iter,
                                                  &amp;sort_iter);

  /* Get the child model and change the value of the row.  In this
   * example, the child model is a GtkListStore.  It could be any other
   * type of model, though.
   */
  child_model = gtk_tree_model_sort_get_model (GTK_TREE_MODEL_SORT (sort_model));
  gtk_list_store_set (GTK_LIST_STORE (child_model), &amp;child_iter,
                      COLUMN_1, &amp;modified_data,
                      -1);
  g_free (modified_data);
}
</programlisting>
</example>
</para>

<!-- ##### SECTION See_Also ##### -->
<para>
#GtkTreeModel, #GtkListStore, #GtkTreeStore, #GtkTreeSortable, #GtkTreeModelFilter
</para>

<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### STRUCT GtkTreeModelSort ##### -->
<para>
This should not be accessed directly.  Use the accessor functions below.
</para>


<!-- ##### ARG GtkTreeModelSort:model ##### -->
<para>

</para>

<!-- ##### FUNCTION gtk_tree_model_sort_new_with_model ##### -->
<para>

</para>

@child_model: 
@Returns: 


<!-- ##### FUNCTION gtk_tree_model_sort_get_model ##### -->
<para>

</para>

@tree_model: 
@Returns: 


<!-- ##### FUNCTION gtk_tree_model_sort_convert_child_path_to_path ##### -->
<para>

</para>

@tree_model_sort: 
@child_path: 
@Returns: 


<!-- ##### FUNCTION gtk_tree_model_sort_convert_child_iter_to_iter ##### -->
<para>

</para>

@tree_model_sort: 
@sort_iter: 
@child_iter: 
@Returns: 


<!-- ##### FUNCTION gtk_tree_model_sort_convert_path_to_child_path ##### -->
<para>

</para>

@tree_model_sort: 
@sorted_path: 
@Returns: 


<!-- ##### FUNCTION gtk_tree_model_sort_convert_iter_to_child_iter ##### -->
<para>

</para>

@tree_model_sort: 
@child_iter: 
@sorted_iter: 


<!-- ##### FUNCTION gtk_tree_model_sort_reset_default_sort_func ##### -->
<para>

</para>

@tree_model_sort: 


<!-- ##### FUNCTION gtk_tree_model_sort_clear_cache ##### -->
<para>

</para>

@tree_model_sort: 


<!-- ##### FUNCTION gtk_tree_model_sort_iter_is_valid ##### -->
<para>

</para>

@tree_model_sort: 
@iter: 
@Returns: