Class: Qt::TreeWidget

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

Instance Method Summary collapse

Methods inherited from Base

#%, #&, #*, #**, #+, #-, #-@, #/, #<, #<<, #<=, #==, #>, #>=, #>>, #^, #methods, #protected_methods, #public_methods, q_classinfo, q_signal, q_slot, signals, #singleton_methods, slots, #|, #~

Instance Method Details

#eachObject



1597
1598
1599
1600
1601
1602
1603
# File 'lib/qt/qtruby4.rb', line 1597

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