main_ex.js 429 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. *主线程扩展
  3. */
  4. 'use strict';
  5. module.exports = {
  6. // 初始化
  7. onLoad(parent) {
  8. // 主线程对象: main.js
  9. this.parent = parent;
  10. },
  11. // 窗口销毁
  12. onDestroy() {
  13. },
  14. /************* 事件 *************/
  15. messages:
  16. {
  17. 'newFile'() {
  18. Editor.Ipc.sendToPanel('simple-code','new-js-file');
  19. },
  20. 'newFileDir'(){
  21. // 打开目录
  22. Editor.Ipc.sendToPanel('simple-code','custom-template');
  23. },
  24. }
  25. };