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
da21f7c8
Commit
da21f7c8
authored
Apr 03, 2017
by
Oleg Korshul
Committed by
GitHub
Apr 03, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #105 from ONLYOFFICE/release/v4.3.0
Release/v4.3.0
parents
745b5efb
4f41ecc5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
106 additions
and
79 deletions
+106
-79
common/Drawings/Format/ChartSpace.js
common/Drawings/Format/ChartSpace.js
+6
-0
common/Drawings/Format/DrawingContent.js
common/Drawings/Format/DrawingContent.js
+20
-11
slide/Editor/Format/Presentation.js
slide/Editor/Format/Presentation.js
+2
-2
word/Drawing/documentrenderer.js
word/Drawing/documentrenderer.js
+76
-64
word/Editor/History.js
word/Editor/History.js
+2
-2
No files found.
common/Drawings/Format/ChartSpace.js
View file @
da21f7c8
...
...
@@ -2252,7 +2252,9 @@ CChartSpace.prototype.Refresh_RecalcData2 = function(pageIndex, object)
}
else
{
var
bOldRecalculateRef
=
this
.
recalcInfo
.
recalculateReferences
;
this
.
setRecalculateInfo
();
this
.
recalcInfo
.
recalculateReferences
=
bOldRecalculateRef
;
}
this
.
addToRecalculate
();
};
...
...
@@ -2333,6 +2335,10 @@ CChartSpace.prototype.getAllContents = function()
{
};
CChartSpace
.
prototype
.
getAllFonts
=
function
(
allFonts
)
{
this
.
documentGetAllFontNames
(
allFonts
);
};
CChartSpace
.
prototype
.
documentGetAllFontNames
=
function
(
allFonts
)
{
allFonts
[
"
+mn-lt
"
]
=
1
;
...
...
common/Drawings/Format/DrawingContent.js
View file @
da21f7c8
...
...
@@ -609,20 +609,29 @@
CDrawingDocContent
.
prototype
.
Recalculate
=
function
()
{
if
(
this
.
Parent
){
if
(
this
.
Parent
instanceof
AscFormat
.
CShape
){
this
.
Parent
.
recalculateContent
();
return
;
}
else
if
(
this
.
Parent
&&
this
.
Parent
.
parent
){
if
(
this
.
Parent
.
parent
instanceof
AscFormat
.
CShape
){
this
.
Parent
.
parent
.
recalculateContent
();
if
(
typeof
editor
!==
"
undefined
"
&&
editor
&&
(
editor
.
isPresentationEditor
||
editor
.
isDocumentEditor
)){
if
(
editor
.
WordControl
&&
editor
.
WordControl
.
m_oLogicDocument
){
editor
.
WordControl
.
m_oLogicDocument
.
Recalculate
();
}
}
else
{
if
(
this
.
Parent
){
if
(
this
.
Parent
instanceof
AscFormat
.
CShape
){
this
.
Parent
.
recalculateContent
();
return
;
}
else
if
(
this
.
Parent
&&
this
.
Parent
.
parent
){
if
(
this
.
Parent
.
parent
instanceof
AscFormat
.
CShape
){
this
.
Parent
.
parent
.
recalculateContent
();
return
;
}
}
}
if
(
this
.
XLimit
>
0
){
this
.
Recalculate_PageDrawing
();
}
}
if
(
this
.
XLimit
>
0
){
this
.
Recalculate_PageDrawing
();
}
};
...
...
slide/Editor/Format/Presentation.js
View file @
da21f7c8
...
...
@@ -1618,10 +1618,10 @@ CPresentation.prototype =
},
[],
false
,
AscDFH
.
historydescription_Presentation_AddChart
);
},
Selection_Remove
:
function
()
Selection_Remove
:
function
(
bNoResetChartSelection
)
{
if
(
this
.
Slides
[
this
.
CurPage
]){
this
.
Slides
[
this
.
CurPage
].
graphicObjects
.
resetSelection
();
this
.
Slides
[
this
.
CurPage
].
graphicObjects
.
resetSelection
(
undefined
,
bNoResetChartSelection
);
}
},
...
...
word/Drawing/documentrenderer.js
View file @
da21f7c8
...
...
@@ -746,25 +746,29 @@ CDocMeta.prototype =
if
(
null
!=
_cachedImage
)
{
g
.
drawImage2
(
_cachedImage
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
return
obj
.
MetaDoc
.
OnImageLoad
(
obj
)
;
break
;
}
else
{
var
img
=
new
Image
();
img
.
onload
=
function
()
{
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
g
.
drawImage2
(
img
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
}
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
()
{
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
var
img
=
new
Image
();
img
.
onload
=
function
(){
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
g
.
drawImage2
(
img
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
}
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
(){
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
return
;
return
;
}
}
else
if
(
3
==
_type
)
{
...
...
@@ -777,25 +781,29 @@ CDocMeta.prototype =
if
(
null
!=
_cachedImage
)
{
g
.
drawImage2
(
_cachedImage
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
return
obj
.
MetaDoc
.
OnImageLoad
(
obj
)
;
break
;
}
else
{
var
img
=
new
Image
();
img
.
onload
=
function
()
{
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
g
.
drawImage2
(
img
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
}
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
()
{
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
var
img
=
new
Image
();
img
.
onload
=
function
(){
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
g
.
drawImage2
(
img
,
0
,
0
,
page
.
width_mm
,
page
.
height_mm
);
}
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
(){
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
return
;
return
;
}
}
var
_src
=
(
0
==
_type
||
10
==
_type
)
?
AscCommon
.
g_oDocumentUrls
.
getImageUrl
(
"
image
"
+
s
.
GetLong
()
+
"
.jpg
"
)
:
AscCommon
.
g_oDocumentUrls
.
getImageUrl
(
"
image
"
+
s
.
GetLong
()
+
"
.png
"
);
...
...
@@ -843,43 +851,47 @@ CDocMeta.prototype =
_ctx
.
restore
();
}
}
return
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
break
;
}
else
{
var
img
=
new
Image
();
img
.
onload
=
function
()
{
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
var
_ctx
=
g
.
m_oContext
;
var
img
=
new
Image
();
img
.
onload
=
function
(){
obj
.
MetaDoc
.
SetCachedImage
(
_src
,
img
);
if
(
1
!=
obj
.
BreakDrawing
)
{
var
_ctx
=
g
.
m_oContext
;
if
(
_tr
)
{
var
_dX
=
g
.
m_oCoordTransform
.
sx
;
var
_dY
=
g
.
m_oCoordTransform
.
sy
;
if
(
_tr
)
{
var
_dX
=
g
.
m_oCoordTransform
.
sx
;
var
_dY
=
g
.
m_oCoordTransform
.
sy
;
_ctx
.
save
();
_ctx
.
setTransform
(
_tr
.
sx
*
_dX
,
_tr
.
shy
*
_dY
,
_tr
.
shx
*
_dX
,
_tr
.
sy
*
_dY
,
_tr
.
tx
*
_dX
,
_tr
.
ty
*
_dY
);
}
_ctx
.
save
();
_ctx
.
setTransform
(
_tr
.
sx
*
_dX
,
_tr
.
shy
*
_dY
,
_tr
.
shx
*
_dX
,
_tr
.
sy
*
_dY
,
_tr
.
tx
*
_dX
,
_tr
.
ty
*
_dY
);
}
g
.
drawImage2
(
img
,
__x
,
__y
,
__w
,
__h
);
//editor.WordControl.OnScroll();
g
.
drawImage2
(
img
,
__x
,
__y
,
__w
,
__h
);
//editor.WordControl.OnScroll();
if
(
_tr
)
{
_ctx
.
restore
();
}
}
if
(
_tr
)
{
_ctx
.
restore
();
}
}
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
(){
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
onerror
=
function
()
{
obj
.
MetaDoc
.
OnImageLoad
(
obj
);
};
img
.
src
=
_src
;
return
;
return
;
}
break
;
}
case
160
:
{
...
...
word/Editor/History.js
View file @
da21f7c8
...
...
@@ -227,7 +227,7 @@ CHistory.prototype =
if
(
this
.
Index
===
this
.
Points
.
length
-
1
)
this
.
LastState
=
this
.
Document
.
Get_SelectionState
();
this
.
Document
.
Selection_Remove
();
this
.
Document
.
Selection_Remove
(
true
);
this
.
Internal_RecalcData_Clear
();
...
...
@@ -281,7 +281,7 @@ CHistory.prototype =
if
(
true
!=
this
.
Can_Redo
()
)
return
null
;
this
.
Document
.
Selection_Remove
();
this
.
Document
.
Selection_Remove
(
true
);
var
Point
=
this
.
Points
[
++
this
.
Index
];
...
...
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