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
Value Returned
|
Returns a collective list of bindkeys defined by the plugin and its super class. |
|
Example
(defmethod deoGetBindkeys ((this MyPlugin))
(append (callNextMethod this) my_bindkeys))
Return to top