Class: Qt::MethodInvocation
Instance Method Summary collapse
-
#initialize(target, method, signature) ⇒ MethodInvocation
constructor
A new instance of MethodInvocation.
- #invoke(*args) ⇒ Object
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, #|, #~
Constructor Details
#initialize(target, method, signature) ⇒ MethodInvocation
Returns a new instance of MethodInvocation.
2417 2418 2419 2420 2421 2422 2423 2424 2425 |
# File 'lib/Qt/qtruby4.rb', line 2417 def initialize(target, method, signature) super(target) if .indexOfSlot(signature) == -1 self.class.slots signature end @target = target method = method.intern unless method.is_a?Symbol @method = method end |
Instance Method Details
#invoke(*args) ⇒ Object
2427 2428 2429 |
# File 'lib/Qt/qtruby4.rb', line 2427 def invoke(*args) @target.send @method, *args end |