static public Method

Internal.signalInfo(qobject, signal_name)

There's no documentation for this item.

Source Code

# File qt/qtruby4.rb, line 2378
def Internal.signalInfo(qobject, signal_name)
        signals = Meta[qobject.class.name].get_signals
        signals.each_with_index do |signal, i|
                if signal.name == signal_name
                        return [signal.reply_type, signal.full_name, i]
                end
        end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.