axlSessionSignalSignature
axlSessionSignalSignature(t_sessiont_signal) =>t_signature/ nil
Description
Returns the signature of a given signal that is emitted by a session. This function serves as a utility function to determine how to implement the slot or callback function in SKILL.
Arguments
Value Returned
Examples
Returns the signature of the runModeChanged signal:
session = axlGetWindowSession(hiGetCurrentWindow())
signature = axlSessionSignalSignature(session "runModeChanged")
signature => "runModeChanged(QString)"
Related Topics
axlSessionRegisterCreationCallback
Working with Signals or Triggers
Return to top