Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
130b2763
Commit
130b2763
authored
Jul 05, 2016
by
alexey.musinov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://github.com/ONLYOFFICE/sdkjs
into develop
parents
1442522b
dc7592e6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
276 additions
and
84 deletions
+276
-84
common/Native/native.js
common/Native/native.js
+0
-1
common/wordcopypaste.js
common/wordcopypaste.js
+87
-23
word/Editor/Footnotes.js
word/Editor/Footnotes.js
+189
-60
No files found.
common/Native/native.js
View file @
130b2763
...
...
@@ -598,7 +598,6 @@ window['AscFonts'].CFontManager = function CFontManager() {
this
.
Initialize
=
function
(){};
this
.
ClearFontsRasterCache
=
function
(){};
};
window
[
"
use_native_fonts_only
"
]
=
true
;
// FT_Common
function
_FT_Common
()
{
...
...
common/wordcopypaste.js
View file @
130b2763
...
...
@@ -3108,9 +3108,7 @@ PasteProcessor.prototype =
}
else
if
(
base64FromExcel
)
//вставляем в презентации из таблиц
{
History
.
TurnOff
();
var
excelContent
=
this
.
_readFromBinaryExcel
(
base64FromExcel
);
History
.
TurnOn
();
var
excelContent
=
AscFormat
.
ExecuteNoHistory
(
this
.
_readFromBinaryExcel
,
this
,
[
base64FromExcel
]);
var
aContentExcel
=
excelContent
.
workbook
;
var
aPastedImages
=
excelContent
.
arrImages
;
...
...
@@ -3118,22 +3116,6 @@ PasteProcessor.prototype =
//если есть шейпы, то вставляем их из excel
if
(
aContentExcel
&&
aContentExcel
.
aWorksheets
&&
aContentExcel
.
aWorksheets
[
0
]
&&
aContentExcel
.
aWorksheets
[
0
].
Drawings
&&
aContentExcel
.
aWorksheets
[
0
].
Drawings
.
length
)
{
var
arr_shapes
=
aContentExcel
.
aWorksheets
[
0
].
Drawings
;
var
shape
;
var
aImagesToDownload
=
[];
for
(
var
i
=
0
;
i
<
aPastedImages
.
length
;
i
++
)
{
aImagesToDownload
.
push
(
aPastedImages
[
i
].
Url
);
}
var
aContent
=
{
aPastedImages
:
aPastedImages
,
images
:
aImagesToDownload
};
//var arrTransforms = objects.arrTransforms;
var
presentation
=
editor
.
WordControl
.
m_oLogicDocument
;
oThis
=
this
;
var
font_map
=
{};
var
paste_callback
=
function
()
{
if
(
false
==
oThis
.
bNested
)
...
...
@@ -3154,20 +3136,42 @@ PasteProcessor.prototype =
presentation
.
Insert_Content
(
presentationSelectedContent
);
presentation
.
Recalculate
();
presentation
.
Check_CursorMoveRight
();
presentation
.
Check_CursorMoveRight
();
presentation
.
Document_UpdateInterfaceState
();
}
};
var
arr_shapes
=
aContentExcel
.
aWorksheets
[
0
].
Drawings
;
var
aImagesToDownload
=
[];
for
(
var
i
=
0
;
i
<
aPastedImages
.
length
;
i
++
)
{
aImagesToDownload
.
push
(
aPastedImages
[
i
].
Url
);
}
var
aContent
=
{
aPastedImages
:
aPastedImages
,
images
:
aImagesToDownload
};
//var arrTransforms = objects.arrTransforms;
var
presentation
=
editor
.
WordControl
.
m_oLogicDocument
;
oThis
=
this
;
//fonts
var
font_map
=
{};
for
(
var
i
=
0
;
i
<
arr_shapes
.
length
;
++
i
)
{
var
shape
=
arr_shapes
[
i
].
graphicObject
;
shape
.
getAllFonts
(
font_map
);
}
var
fonts
=
[];
//грузим картинки и фонты
for
(
var
i
in
font_map
)
fonts
.
push
(
new
CFont
(
i
,
0
,
""
,
0
));
//images
var
images
=
aContent
.
images
;
var
arrImages
=
aContent
.
aPastedImages
;
var
oObjectsForDownload
=
GetObjectsForImageDownload
(
arrImages
);
if
(
oObjectsForDownload
.
aUrls
.
length
>
0
)
{
...
...
@@ -3190,10 +3194,70 @@ PasteProcessor.prototype =
this
.
api
.
pre_Paste
(
fonts
,
im_arr
,
paste_callback
);
}
return
;
}
else
{
var
presentationSelectedContent
=
new
PresentationSelectedContent
();
presentationSelectedContent
.
DocContent
=
new
CSelectedContent
();
var
aContent
=
AscFormat
.
ExecuteNoHistory
(
this
.
_convertExcelBinary
,
this
,
[
excelContent
]);
var
elements
=
[],
selectedElement
,
element
,
drawings
=
[],
pDrawings
=
[],
drawingCopyObject
;
var
defaultTableStyleId
=
presentation
.
DefaultTableStyleId
;
for
(
var
i
=
0
;
i
<
aContent
.
content
.
length
;
++
i
)
{
selectedElement
=
new
CSelectedElement
();
element
=
aContent
.
content
[
i
];
if
(
type_Table
==
element
.
GetType
())
//table
{
//TODO переделать количество строк и ширину
var
W
=
100
;
var
Rows
=
3
;
var
graphic_frame
=
new
CGraphicFrame
();
graphic_frame
.
setSpPr
(
new
AscFormat
.
CSpPr
());
graphic_frame
.
spPr
.
setParent
(
graphic_frame
);
graphic_frame
.
spPr
.
setXfrm
(
new
AscFormat
.
CXfrm
());
graphic_frame
.
spPr
.
xfrm
.
setParent
(
graphic_frame
.
spPr
);
graphic_frame
.
spPr
.
xfrm
.
setOffX
((
this
.
oDocument
.
Width
-
W
)
/
2
);
graphic_frame
.
spPr
.
xfrm
.
setOffY
(
this
.
oDocument
.
Height
/
5
);
graphic_frame
.
spPr
.
xfrm
.
setExtX
(
W
);
graphic_frame
.
spPr
.
xfrm
.
setExtY
(
7.478268771701388
*
Rows
);
graphic_frame
.
setNvSpPr
(
new
AscFormat
.
UniNvPr
());
element
=
this
.
_convertTableToPPTX
(
element
);
graphic_frame
.
setGraphicObject
(
element
.
Copy
(
graphic_frame
));
graphic_frame
.
graphicObject
.
Set_TableStyle
(
defaultTableStyleId
);
drawingCopyObject
=
new
DrawingCopyObject
();
drawingCopyObject
.
Drawing
=
graphic_frame
;
pDrawings
.
push
(
drawingCopyObject
);
}
}
presentationSelectedContent
.
Drawings
=
pDrawings
;
var
presentation
=
editor
.
WordControl
.
m_oLogicDocument
;
//вставка
var
paste_callback
=
function
()
{
if
(
false
==
oThis
.
bNested
)
{
presentation
.
Insert_Content
(
presentationSelectedContent
);
presentation
.
Recalculate
();
presentation
.
Check_CursorMoveRight
();
presentation
.
Document_UpdateInterfaceState
();
}
}
oThis
.
api
.
pre_Paste
(
aContent
.
content
.
fonts
,
null
,
paste_callback
);
return
;
}
}
}
this
.
oRootNode
=
node
;
this
.
_Prepeare
(
node
,
function
(){
...
...
word/Editor/Footnotes.js
View file @
130b2763
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment