mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
2007-11-15 Neil J. Patel <njp@o-hand.com>
* clutter/clutter-model.c: Added some more examples to the documentation, plus explained how the iters work internally.
This commit is contained in:
parent
53ec33f34c
commit
35cecde0c8
@ -1,3 +1,9 @@
|
||||
2007-11-15 Neil J. Patel <njp@o-hand.com>
|
||||
|
||||
* clutter/clutter-model.c:
|
||||
Added some more examples to the documentation, plus explained how the
|
||||
iters work internally.
|
||||
|
||||
2007-11-15 Øyvind Kolås <pippin@o-hand.com>
|
||||
|
||||
* clutter/clutter-main.[ch]: added clutter_grab_pointer,
|
||||
|
@ -64,6 +64,46 @@
|
||||
* }
|
||||
* </programlisting>
|
||||
*
|
||||
* Iterating through the model consists of retrieving a new #ClutterModelIter
|
||||
* pointing to the starting row, and calling #clutter_model_iter_next or
|
||||
* #clutter_model_iter_prev to move forward or backwards, repectively.
|
||||
*
|
||||
* A valid #ClutterModelIter represents the position between two rows in the
|
||||
* model. For example, the @begin iterator represents the gap immediately
|
||||
* before the first row, and the @end iterator represents the gap immediately
|
||||
* after the last row. In an empty sequence, the begin and end iterators are
|
||||
* the same.
|
||||
*
|
||||
* Iterating a #ClutterModel:
|
||||
* <programlisting>
|
||||
* enum {
|
||||
* COLUMN_INT,
|
||||
* COLUMN_STRING.
|
||||
* N_COLUMNS
|
||||
* };
|
||||
*
|
||||
* {
|
||||
* ClutterModel *model;
|
||||
* ClutterModelIter *iter = NULL;
|
||||
*
|
||||
* model = clutter_model_new (2, G_TYPE_INT, G_TYPE_STRING);
|
||||
*
|
||||
* /<!-- -->* Fill the model *<!-- -->/
|
||||
* populate_model (model);
|
||||
*
|
||||
* /<!-- -->* Get the first iter *<!-- -->/
|
||||
* iter = clutter_model_get_first_iter (model);
|
||||
* while (!clutter_model_iter_is_last (iter))
|
||||
* {
|
||||
* print_row (iter);
|
||||
*
|
||||
* iter = clutter_model_iter_next (iter);
|
||||
* }
|
||||
*
|
||||
* /<!-- -->* Make sure to unref the iter *<!-- -->/
|
||||
* g_object_unref (iter);
|
||||
* }
|
||||
* </programlisting>
|
||||
*
|
||||
* #ClutterModel is available since Clutter 0.6
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user