文章出處
文章列表
<!doctype html> <html> <head> <meta charset="utf-8"> <title>MBE_SCHEMA</title> </head> <body> <script> //入口 ==> 8783 EditorShell.main = { start : mbe_core.DocumentManager.newInstance().then(function (sm) { //跳到編輯器的36行開始即可 return mbe_run.shell = new EditorShell(sm); }).fail(onFail) } //sm ==> 7293 DocumentManager.newInstance = { //新建了一個延遲對象,里面是DM /* _editingDocument : [] _storage : undefinde editingDocument : undefined storage : undefined _addDoc : () _closeStorage : () _openDocument : () _openStorage : () createDocument : () createDocumentFromArchive : () editingDocument : () createDocument : () createDocumentFromArchive : () removeAllDocuments : () resumeOrCreateDocument : () storage : () */ return : new mc.Deferred().resolve(new DocumentManager(null)) } // new ==> 8065 //這個才是真正的入口哦 EditorShell(sm); // 8086 Object.extend(EditorShell,"eventEmite"/*模擬事件*/); //8090 Editor._storageManager = sm; //8119 等IFrame加載完成就執行下面這個doc初始化 this._initDocument(); //8123剪貼板初始化事件 this._clipboard = new ClipBoard( document ) //8125屬性面板城市化 this._propPanel = new PropertyPanel(); //8126 左側導航欄初始化 this._pageNav = new PageNavigator(); //8218 bind("beforeunload"); //8131 bind("resize"); //8135 讀取文檔內部內容 或者 新建文檔 this._storageManager.resumeOrCreateDocument().then() /* 8139 如果存在就從沙盒中取 filesystem:http://localhost:6320/persistent/mbe/editing/1394337977419/.core-editor.xhtml */ //8137 如果不存在就新建一個文檔 /* 各種各樣的事件 預覽 undo reodo 縮放 新建頁面 元素置頂 元素置底 元素居中 元素居上 元素居下 .. 刪除頁面 新建頁面 ==> 將壓縮的文檔解壓讀取到沙盒,再用loadDocument解析到頁面; 保存頁面 導出選項 ==> 壓縮成zip,使用URL.createObjectURL( blob )直接放到 a的href就可以自動下載 新建文檔 //右側控制面板 文字圖片視頻音頻 8654 _insertControl 匹配到img@video@audio的file文件,使用resurceLoad,導入資源列表 8677 beginInteractiveInserting 8683 this._editor.resourceLoader 添加加載資源添加事件: { start, clear, done, progress, fail } 連接工具的初始化 連接選項 解除連接選項 更新連接的按鈕是否可用 解除連接選項 右下角的狀態欄狀態顯示 */ </script> </body> </html>
文章列表
全站熱搜