"use strict"; ///////////////////////////////////////////////////////// ////////////// OPEN //////////////////////// ///////////////////////////////////////////////////////// (/** * @param {jQuery} $ * @param {Window} window * @param {undefined} undefined */ function($, window, undefined) { var asc = window["Asc"]; var prot; asc['spreadsheet_api'].prototype._OfflineAppDocumentStartLoad = function(fCallback) { window.OfflineOpenCallback = fCallback; window["AscDesktopEditor"]["LocalStartOpen"](); }; asc['spreadsheet_api'].prototype._OfflineAppDocumentEndLoad = function(_data) { if (true) { var wb = this._openDocument(_data); window.OfflineOpenCallback({returnCode: 0, val: wb}); window.OfflineOpenCallback = undefined; History.UserSaveMode = true; } }; })(jQuery, window); window["DesktopOfflineAppDocumentEndLoad"] = function(_url, _data) { g_oDocumentUrls.documentUrl = _url; if (g_oDocumentUrls.documentUrl.indexOf("file:") != 0) { if (g_oDocumentUrls.documentUrl.indexOf("/") != 0) g_oDocumentUrls.documentUrl = "/" + g_oDocumentUrls.documentUrl; g_oDocumentUrls.documentUrl = "file://" + g_oDocumentUrls.documentUrl; } window["Asc"]["editor"]._OfflineAppDocumentEndLoad(_data); }; ///////////////////////////////////////////////////////// ////////////// CHANGES ///////////////////// ///////////////////////////////////////////////////////// CHistory.prototype.Reset_SavedIndex = function(IsUserSave) { if (true === this.Is_UserSaveMode()) { if (this.Index == -1) return; this.SavedIndex = this.Index; if (true === IsUserSave) { this.UserSavedIndex = this.Index; this.ForceSave = false; } } else { this.SavedIndex = this.Index; this.ForceSave = false; } }; CHistory.prototype.Have_Changes = function(IsUserSave) { if (true === this.Is_UserSaveMode() && false !== IsUserSave) { if (-1 === this.Index && null === this.UserSavedIndex && false === this.ForceSave) { if (0 != window["AscDesktopEditor"]["LocalFileGetOpenChangesCount"]()) return true; if (!window["AscDesktopEditor"]["LocalFileGetSaved"]()) return true; return false; } if (this.Index != this.UserSavedIndex || true === this.ForceSave) return true; return false; } else { if (-1 === this.Index && null === this.SavedIndex && false === this.ForceSave) return false; if (this.Index != this.SavedIndex || true === this.ForceSave) return true; return false; } }; window["DesktopOfflineAppDocumentApplyChanges"] = function(_changes) { window["Asc"]["editor"].asc_nativeApplyChanges(_changes); window["Asc"]["editor"].asc_nativeCalculateFile(); }; ///////////////////////////////////////////////////////// //////////////// SAVE ////////////////////// ///////////////////////////////////////////////////////// window["Asc"]['spreadsheet_api'].prototype.asc_Save = function (isNoUserSave) { var t = this; if (true !== isNoUserSave) this.IsUserSave = true; if (true === this.canSave && !this.isLongAction()) { var _isNaturalSave = this.IsUserSave; this.canSave = false; this.CoAuthoringApi.askSaveChanges(function(e){t.onSaveCallback(e);}); if (this.CoAuthoringApi.onUnSaveLock) this.CoAuthoringApi.onUnSaveLock(); if (_isNaturalSave === true) window["DesktopOfflineAppDocumentStartSave"](); } }; window["DesktopOfflineAppDocumentStartSave"] = function() { window["Asc"]["editor"].sync_StartAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.Save); window["AscDesktopEditor"]["LocalFileSave"](); }; window["DesktopOfflineAppDocumentEndSave"] = function(isCancel) { window["Asc"]["editor"].sync_EndAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.Save); if (isCancel !== true) DesktopOfflineUpdateLocalName(window["Asc"]["editor"]); }; window["Asc"]['spreadsheet_api'].prototype.asc_isOffline = function() { return true; }; window["Asc"]['spreadsheet_api'].prototype["asc_Save"] = window["Asc"]['spreadsheet_api'].prototype.asc_Save; window["Asc"]['spreadsheet_api'].prototype["asc_isOffline"] = window["Asc"]['spreadsheet_api'].prototype.asc_isOffline;