Class: Qt::Splitter
- Inherits:
-
Object
- Object
- Qt::Splitter
- Includes:
- QtEnumerable
- Defined in:
- lib/ruber/qt_sugar.rb
Instance Method Summary (collapse)
-
- (Qt::Splitter, Enumerator) each {|w| ... }
Iterates on all items in the splitter.
Instance Method Details
- (Qt::Splitter, Enumerator) each {|w| ... }
Iterates on all items in the splitter
The iteration order is from top to bottom and from left to right.
701 702 703 704 705 |
# File 'lib/ruber/qt_sugar.rb', line 701 def each return to_enum unless block_given? count.times{|i| yield (i)} self end |