deoRequireToolbars
deoRequireToolbars(g_plugin) =>l_toolbarNames
Description
Returns a list of toolbar names (string) that are to be customized by the plugin. A plugin can customize toolbars of a main application, or those of another plugin. For a plugin to declare which toolbars need customization, re-define method deoRequireToolbars.
Arguments
Value Returned
|
Returns a list of toolbar names that will be customized by the plugin |
Example
(defclass MyPlugin (BasePlugin) ())
(defmethod deoRequireToolbars ((this MyPlugin))
(cons "View" (callNextMethod this)))
Return to top