Sha256: 50d7780cc7de76511d0f0ad2cd3eb0e5209cfe08ccf02cff9c7c8438ce981058

Contents?: true

Size: 1.49 KB

Versions: 9

Compression:

Stored size: 1.49 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)
      @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 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

9 entries across 9 versions & 1 rubygems

Version Path
gtk3-3.0.5-x64-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.5-x86-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.5 lib/gtk3/tree-iter.rb
gtk3-3.0.4-x86-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.4-x64-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.4 lib/gtk3/tree-iter.rb
gtk3-3.0.3-x64-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.3-x86-mingw32 lib/gtk3/tree-iter.rb
gtk3-3.0.3 lib/gtk3/tree-iter.rb