main_ex.js 479 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. *主线程扩展
  3. *对话框功能扩展
  4. */
  5. 'use strict';
  6. var path = require('path');
  7. var fs = require('fs');
  8. var md5 = require('md5');
  9. module.exports = {
  10. // 初始化
  11. onLoad(parent)
  12. {
  13. // 主线程对象: main.js
  14. this.parent = parent;
  15. },
  16. // 窗口销毁
  17. onDestroy()
  18. {
  19. },
  20. /************* 事件 *************/
  21. messages:
  22. {
  23. 'rename'(){
  24. Editor.Panel.open('simple-code');
  25. // Editor.Ipc.sendToPanel('simple-code', 'rename');
  26. },
  27. }
  28. };