Sha256: 62a946a17dd67888712828cebbcc0ebabfbfc772e6e8b82af9cb8f2461690c7f

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

# Copyright (C) 2014  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)
      @model.set_value(self, column, value)
    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 ==(other)
      other.is_a?(self.class) and
        @model == other.model and
        path == other.path
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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