Class: Qt::TreeWidget

Inherits:
Base show all
Includes:
Enumerable
Defined in:
lib/Qt/qtruby4.rb

Instance Method Summary collapse

Instance Method Details

#each ⇒ Object



2174
2175
2176
2177
2178
2179
2180
# File 'lib/Qt/qtruby4.rb', line 2174

def each
  it = Qt::TreeWidgetItemIterator.new(self)
  while it.current
    yield it.current
    it += 1
  end
end