GObject.Object
Clutter.ModelIter
Import line: | Clutter = imports.gi.Clutter; |
GIR File: | Clutter-1.0.gir |
C documentation: | ClutterModelIter |
Class : | ModelIter |
Extends: | GObject.Object |
Show / Hide Inherited methods, properties and signals |
Properties | Defined By | |
---|---|---|
model : Clutter.Model
A reference to the ClutterModel that this iter belongs to.
A reference to the ClutterModel that this iter belongs to.
|
Clutter.ModelIter | |
parent_instance : GObject.Object
read only
|
Clutter.ModelIter | |
priv : Clutter.ModelIterPrivate
read only
|
Clutter.ModelIter | |
row : Number
The row number to which this iter points to.
The row number to which this iter points to.
|
Clutter.ModelIter |
Method / Constructor | Defined By | |
---|---|---|
new Clutter.ModelIter
(Object properties)
Create a new Clutter.ModelIter
Create a new Clutter.ModelIter
|
||
copy
()
:
Clutter.ModelIter
Copies the passed iterator.
Copies the passed iterator.
|
Clutter.ModelIter | |
get_model
()
:
Clutter.Model
Retrieves a pointer to the ClutterModel that this iter is part of.
Retrieves a pointer to the ClutterModel that this iter is part of.
|
Clutter.ModelIter | |
get_row
()
:
Number
Retrieves the position of the row that the iter points to.
Retrieves the position of the row that the iter points to.
|
Clutter.ModelIter | |
Sets an initializes value to that at column.
Sets an initializes value to that at column. When done with value, g_value_unset() needs to be called to free any allocated memory.
|
Clutter.ModelIter | |
is_first
()
:
Boolean
Gets whether the current iterator is at the beginning of the model to which it belongs.
Gets whether the current iterator is at the beginning of the model to which it belongs.
|
Clutter.ModelIter | |
is_last
()
:
Boolean
Gets whether the iterator is at the end of the model to which it belongs.
Gets whether the iterator is at the end of the model to which it belongs.
|
Clutter.ModelIter | |
next
()
:
Clutter.ModelIter
Updates the iter to point at the next position in the model.
Updates the iter to point at the next position in the model. The model implementation should take into account the presence of a filter function.
|
Clutter.ModelIter | |
prev
()
:
Clutter.ModelIter
Sets the iter to point at the previous position in the model.
Sets the iter to point at the previous position in the model. The model implementation should take into account the presence of a filter function.
|
Clutter.ModelIter | |
Sets the data in the cell specified by iter and column.
Sets the data in the cell specified by iter and column. The type of
|
Clutter.ModelIter |
None |
Class / Namespace | Method / Signal / Properties |
---|---|
Clutter.Model
Signal |
The ::row-added signal is emitted when a new row has been added.
|
Clutter.Model
Signal |
The ::row-removed signal is emitted when a row has been changed.
|
Clutter.Model
Signal |
The ::row-removed signal is emitted when a row has been removed.
|
Clutter.Model
Method |
get_first_iter
()
:
Clutter.ModelIter
Retrieves a ClutterModelIter representing the first non-filtered row in model.
|
Clutter.Model
Method |
get_last_iter
()
:
Clutter.ModelIter
Retrieves a ClutterModelIter representing the last non-filtered row in model.
|
Clutter.Model
Method |
get_iter_at_row
(Number row)
:
Clutter.ModelIter
Retrieves a ClutterModelIter representing the row at the given index.
|
Clutter.Model
Method |
Checks whether the row pointer by iter should be filtered or not using the filtering function set on model.
|