Class: Qt::ItemSelection
- Inherits:
-
Base
show all
- Includes:
- Enumerable
- Defined in:
- lib/Qt/qtruby4.rb
Instance Method Summary
collapse
Methods inherited from Base
#%, #&, #*, #**, #+, #-, #-@, #/, #<, #<<, #<=, #==, #>, #>=, #>>, #QCOMPARE, #QEXPECT_FAIL, #QFAIL, #QSKIP, #QTEST, #QVERIFY, #QVERIFY2, #QWARN, #^, ancestors, #is_a?, #methods, private_slots, #protected_methods, #public_methods, q_classinfo, q_signal, q_slot, signals, #singleton_methods, slots, #|, #~
Instance Method Details
1273
1274
1275
1276
1277
1278
|
# File 'lib/Qt/qtruby4.rb', line 1273
def each
for i in 0...count
yield at(i)
end
return self
end
|
#select(*args) ⇒ Object
1280
1281
1282
|
# File 'lib/Qt/qtruby4.rb', line 1280
def select(*args)
method_missing(:select, *args)
end
|
#split(*args) ⇒ Object
1284
1285
1286
|
# File 'lib/Qt/qtruby4.rb', line 1284
def split(*args)
method_missing(:split, *args)
end
|