Commit 04fbc317 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Excel asc_getViewerMode -> getViewMode

Other add getViewMode

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66469 954022d7-b5bf-4e40-9824-e11837661b57
parent b97e963f
...@@ -344,7 +344,7 @@ var editor; ...@@ -344,7 +344,7 @@ var editor;
}; };
spreadsheet_api.prototype.asc_LoadDocument = function() { spreadsheet_api.prototype.asc_LoadDocument = function() {
var t = this; var t = this;
this.CoAuthoringApi.auth(this.asc_getViewerMode()); this.CoAuthoringApi.auth(this.getViewMode());
this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.Open); this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.Open);
if (!this.chartEditor) { if (!this.chartEditor) {
...@@ -355,7 +355,7 @@ var editor; ...@@ -355,7 +355,7 @@ var editor;
}; };
spreadsheet_api.prototype.asc_LoadEmptyDocument = function() { spreadsheet_api.prototype.asc_LoadEmptyDocument = function() {
this.CoAuthoringApi.auth(this.asc_getViewerMode()); this.CoAuthoringApi.auth(this.getViewMode());
var emptyWorkbook = getEmptyWorkbook() + ""; var emptyWorkbook = getEmptyWorkbook() + "";
if (emptyWorkbook.length && (Asc.c_oSerFormat.Signature === emptyWorkbook.substring(0, Asc.c_oSerFormat.Signature.length))) { if (emptyWorkbook.length && (Asc.c_oSerFormat.Signature === emptyWorkbook.substring(0, Asc.c_oSerFormat.Signature.length))) {
...@@ -550,7 +550,7 @@ var editor; ...@@ -550,7 +550,7 @@ var editor;
AscBrowser.isMobileVersion = isMobile; AscBrowser.isMobileVersion = isMobile;
}; };
spreadsheet_api.prototype.asc_getViewerMode = function() { spreadsheet_api.prototype.getViewMode = function() {
return this.controller.getViewerMode(); return this.controller.getViewerMode();
}; };
...@@ -701,7 +701,7 @@ var editor; ...@@ -701,7 +701,7 @@ var editor;
"url": this.documentUrl, "url": this.documentUrl,
"title": this.documentTitle, "title": this.documentTitle,
"embeddedfonts": this.isUseEmbeddedCutFonts, "embeddedfonts": this.isUseEmbeddedCutFonts,
"viewmode": this.asc_getViewerMode() "viewmode": this.getViewMode()
}; };
sendCommand2(this, null, v); sendCommand2(this, null, v);
} }
...@@ -1102,7 +1102,7 @@ var editor; ...@@ -1102,7 +1102,7 @@ var editor;
"checkDefNameLock": function(lockElem) { "checkDefNameLock": function(lockElem) {
return t._onCheckDefNameLock(lockElem); return t._onCheckDefNameLock(lockElem);
} }
}, this.asc_getViewerMode()); }, this.getViewMode());
this.CoAuthoringApi.onParticipantsChanged = function(e, count) { this.CoAuthoringApi.onParticipantsChanged = function(e, count) {
t.handlers.trigger("asc_onParticipantsChanged", e, count); t.handlers.trigger("asc_onParticipantsChanged", e, count);
...@@ -1320,7 +1320,7 @@ var editor; ...@@ -1320,7 +1320,7 @@ var editor;
var urls = input["data"]; var urls = input["data"];
g_oDocumentUrls.init(urls); g_oDocumentUrls.init(urls);
if (null != urls['Editor.bin']) { if (null != urls['Editor.bin']) {
if ('ok' === input["status"] || t.asc_getViewerMode()) { if ('ok' === input["status"] || t.getViewMode()) {
t._onOpenCommand(function(response) { t._onOpenCommand(function(response) {
t._startOpenDocument(response); t._startOpenDocument(response);
}, urls['Editor.bin']); }, urls['Editor.bin']);
...@@ -3008,7 +3008,7 @@ var editor; ...@@ -3008,7 +3008,7 @@ var editor;
} }
// На view-режиме не нужно отправлять стили // На view-режиме не нужно отправлять стили
if (true !== this.asc_getViewerMode() && !this.isMobileVersion) { if (true !== this.getViewMode() && !this.isMobileVersion) {
// Отправка стилей // Отправка стилей
this._sendWorkbookStyles(); this._sendWorkbookStyles();
} }
......
...@@ -4403,6 +4403,9 @@ asc_docs_api.prototype.SetDeviceInputHelperId = function(idKeyboard) ...@@ -4403,6 +4403,9 @@ asc_docs_api.prototype.SetDeviceInputHelperId = function(idKeyboard)
} }
window.ID_KEYBOARD_AREA.focus(); window.ID_KEYBOARD_AREA.focus();
}; };
asc_docs_api.prototype.getViewMode = function() {
return this.isViewMode;
};
asc_docs_api.prototype.SetViewMode = function(isViewMode) { asc_docs_api.prototype.SetViewMode = function(isViewMode) {
if (isViewMode) { if (isViewMode) {
this.isViewMode = true; this.isViewMode = true;
......
...@@ -6330,6 +6330,9 @@ asc_docs_api.prototype.add_SectionBreak = function(_Type) ...@@ -6330,6 +6330,9 @@ asc_docs_api.prototype.add_SectionBreak = function(_Type)
} }
}; };
asc_docs_api.prototype.getViewMode = function() {
return this.isViewMode;
};
asc_docs_api.prototype.SetViewMode = function(isViewMode) { asc_docs_api.prototype.SetViewMode = function(isViewMode) {
if (isViewMode) { if (isViewMode) {
this.asc_SpellCheckDisconnect(); this.asc_SpellCheckDisconnect();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment