Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

deoGetBindkeys

deoGetBindkeys(
g_application
)
=> l_bindkeys / nil

Description

Returns a copy of bindkeys defined for the plugin in the format that is acceptable by hiSetBindKeys(). When installing a plugin, DE calls hiSetBindKeys using the value of deoGetBindkeys method. A default implementation of deoGetBindkeys is provided by DE, which returns a list of bindkeys collectively defined by a plugin and its super-plugin(s) through deRegPlugin ?bindkeys argument. The bindkeys returned are ordered from generic to specific.

Arguments

g_application

Specifies an instance (stdobj) of the plugin.

Value Returned

l_bindkeys

Returns a collective list of bindkeys defined by the plugin and its super class.

nil

Returns nil if no bindkeys are registered with the plugin.

Example

(defmethod deoGetBindkeys ((this MyPlugin))
    (append (callNextMethod this) my_bindkeys))


Return to top
 ⠀
X