Commit 8e1c4264 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

copy/paste/cut для safari MAC

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48460 954022d7-b5bf-4e40-9824-e11837661b57
parent 65bab8c2
......@@ -2556,6 +2556,7 @@ var COPY_ELEMENT_ID = "clipboard-helper";
var PASTE_ELEMENT_ID = "wrd_pastebin";
var ELEMENT_DISPAY_STYLE = "none";
var kElementTextId = "clipboard-helper-text";
var isNeedEmptyAfterCut = false;
if (window.USER_AGENT_SAFARI_MACOS)
{
......@@ -2577,7 +2578,7 @@ function SafariIntervalFocus()
}
else if (pastebin && api.IsFocus)
pastebin.focus();
else
else if(!pastebin || !pastebinText)
{
// create
Editor_CopyPaste_Create(api);
......@@ -2614,9 +2615,16 @@ function Editor_CopyPaste_Create(api)
api.wb.clipboard.copyRange(api.wb.getWorksheet().getSelectedRange(), api.wb.getWorksheet());
};
/*ElemToSelect["onbeforecut"] = function(e){
ElemToSelect["onbeforecut"] = function(e){
api.wb.clipboard.copyRange(api.wb.getWorksheet().getSelectedRange(), api.wb.getWorksheet());
};*/
if(isNeedEmptyAfterCut)
{
isNeedEmptyAfterCut = false;
api.wb.getWorksheet().setSelectionInfo("empty", c_oAscCleanOptions.All);
}
else
isNeedEmptyAfterCut = true;
};
document.body.appendChild( ElemToSelect );
......@@ -2643,13 +2651,20 @@ function Editor_CopyPaste_Create(api)
}
};
/*elementText["onbeforecut"] = function(e){
elementText["onbeforecut"] = function(e){
api.wb.clipboard.copyRange(api.wb.getWorksheet().getSelectedRange(), api.wb.getWorksheet());
if(isNeedEmptyAfterCut == true)
{
isNeedEmptyAfterCut = false;
if((api.wb && api.wb.getWorksheet() && api.wb.getWorksheet().isCellEditMode))
{
v = api.wb.cellEditor.copySelection();
v = api.wb.cellEditor.cutSelection();
if (v) {api.wb.clipboard.copyCellValue(v, api.wb.cellEditor.hasBackground ? api.wb.cellEditor.background : null);}
}
};*/
}
else
isNeedEmptyAfterCut = true;
};
/*elementText["onpaste"] = function(e){
api.wb.clipboard.pasteAsText();
......
......@@ -1232,11 +1232,11 @@
cutToClipboard: function () {
var t = this, ws, v;
if (!t.controller.isCellEditMode) {
if (!t.controller.isCellEditMode && !window.USER_AGENT_SAFARI_MACOS) {
ws = t.getWorksheet();
t.clipboard.copyRange(ws.getSelectedRange(), ws);
ws.setSelectionInfo("empty", c_oAscCleanOptions.All);
} else {
} else if(!window.USER_AGENT_SAFARI_MACOS){
v = t.cellEditor.cutSelection();
if (v) {t.clipboard.copyCellValue(v, t.cellEditor.hasBackground ? t.cellEditor.background : null);}
}
......
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