main_ex.js 399 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. *主线程扩展
  3. *
  4. */
  5. 'use strict';
  6. module.exports = {
  7. // 初始化
  8. onLoad(parent)
  9. {
  10. },
  11. // 窗口销毁
  12. onDestroy()
  13. {
  14. },
  15. /************* 事件 *************/
  16. messages:
  17. {
  18. 'loadCustomWidgetsToCode'(){
  19. Editor.Ipc.sendToPanel('simple-code','loadCustomWidgetsToCode');
  20. },
  21. 'openDragVarRuleFile'(){
  22. Editor.Ipc.sendToPanel('simple-code','openDragVarRuleFile');
  23. }
  24. }
  25. };