Description Usage Arguments Value Author(s) See Also Examples
Access information describing the Qt Meta Object Compiler (MOC) methods defined for a class. These are typically signals and slots, although arbitrary methods/constructors are also supported.
1 2 3 | qmocMethods(x)
qsignals(x)
qslots(x)
|
x |
A |
For qmocMethods, a data.frame with columns for the
method name, type (“signal”, “slot”, etc),
signature, return type, and nargs (argument
count).
qsignals returns a similar data.frame containing only
signal methods and the columns name and signature.
qslots returns a similar data.frame containing only
slot methods and the columns name, signature and return.
Michael Lawrence
qsetSignal, qsetSlot for defining new MOC
methods on user classes
1 2 3 | qmocMethods(Qt$QWidget)
widget <- Qt$QWidget()
qsignals(widget)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.