Class: Qt::Splitter
- Includes:
- QtEnumerable
- Defined in:
- lib/ruber/qt_sugar.rb
Instance Method Summary collapse
-
#each {|w| ... } ⇒ Qt::Splitter, Enumerator
Iterates on all items in the splitter.
Instance Method Details
#each {|w| ... } ⇒ Qt::Splitter, Enumerator
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 |