Sha256: 89136380eeff45f2691b123239ce8d8e6c34344249e8d367b6ea4ea9ec503e83

Contents?: true

Size: 1.58 KB

Versions: 6

Compression:

Stored size: 1.58 KB

Contents

# Copyright (C) 2014-2015  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module Gtk
  class TreeIter
    def model
      @model
    end

    def model=(model)
      @model = model
    end

    def get_value(column)
      @model.get_value(self, column)
    end
    alias_method :[], :get_value

    def set_value(column, value)
      gtype = @model.get_column_type(column)
      gvalue = GLib::Value.new(gtype, value)
      @model.set_value(self, column, gvalue)
    end
    alias_method :[]=, :set_value

    def set_values(values)
      @model.set_values(self, values)
    end
    alias_method :values=, :set_values

    def path
      @model.get_path(self)
    end

    def next!
      @model.iter_next(self)
    end

    def parent
      @model.iter_parent(self)
    end

    def ==(other)
      other.is_a?(self.class) and
        @model == other.model and
        path == other.path
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gtk3-3.0.7-x86-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.7-x64-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.7 lib/gtk3/tree-iter.rb
gtk3-3.0.6-x86-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.6-x64-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.6 lib/gtk3/tree-iter.rb