class Gtk::TreeIter
Public Instance Methods
Source
# File lib/gtk3/tree-iter.rb, line 80 def ==(other) other.is_a?(self.class) and @model == other.model and path == other.path end
Source
# File lib/gtk3/tree-iter.rb, line 72 def children @model.iter_children(self) end
Source
# File lib/gtk3/tree-iter.rb, line 27 def get_value(column) @model.get_value(self, column) end
Also aliased as: []
Source
# File lib/gtk3/tree-iter.rb, line 60 def has_child? @model.iter_has_child(self) end
Source
# File lib/gtk3/tree-iter.rb, line 64 def n_children @model.iter_n_children(self) end
Source
# File lib/gtk3/tree-iter.rb, line 68 def nth_child(n) @model.iter_nth_child(self, n) end
Source
# File lib/gtk3/tree-iter.rb, line 48 def previous! @model.iter_previous(self) end
Source
# File lib/gtk3/tree-iter.rb, line 32 def set_value(column, value) gtype = @model.get_column_type(column) gvalue = GLib::Value.new(gtype, value) @model.set_value(self, column, gvalue) end
Also aliased as: []=
Source
# File lib/gtk3/tree-iter.rb, line 39 def set_values(values) @model.set_values(self, values) end
Also aliased as: values=