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
6fb2b455
Commit
6fb2b455
authored
Jun 20, 2017
by
SergeyLuzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bugs with connector's tracks
parent
b124f435
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
135 additions
and
53 deletions
+135
-53
common/Drawings/Format/CnxShape.js
common/Drawings/Format/CnxShape.js
+41
-14
common/Drawings/States.js
common/Drawings/States.js
+11
-0
common/Drawings/TrackObjects/ConnectorTrack.js
common/Drawings/TrackObjects/ConnectorTrack.js
+79
-38
slide/Editor/Format/Slide.js
slide/Editor/Format/Slide.js
+4
-1
No files found.
common/Drawings/Format/CnxShape.js
View file @
6fb2b455
...
@@ -558,17 +558,31 @@
...
@@ -558,17 +558,31 @@
var
_xfrm
=
this
.
spPr
.
xfrm
;
var
_xfrm
=
this
.
spPr
.
xfrm
;
if
(
oBeginDrawing
&&
oEndDrawing
){
if
(
oBeginDrawing
&&
oEndDrawing
){
_startConnectionParams
=
oBeginDrawing
.
getConnectionParams
(
this
.
getStCxnIdx
(),
this
.
group
);
_startConnectionParams
=
oBeginDrawing
.
getConnectionParams
(
this
.
getStCxnIdx
(),
null
);
_endConnectionParams
=
oEndDrawing
.
getConnectionParams
(
this
.
getEndCxnIdx
(),
this
.
group
);
_endConnectionParams
=
oEndDrawing
.
getConnectionParams
(
this
.
getEndCxnIdx
(),
null
);
_spPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
spPr
.
geometry
.
preset
,
this
.
pen
.
w
);
_spPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
spPr
.
geometry
.
preset
,
this
.
pen
.
w
);
_xfrm2
=
_spPr
.
xfrm
;
_xfrm2
=
_spPr
.
xfrm
;
_xfrm
.
setOffX
(
_xfrm2
.
offX
);
_xfrm
.
setOffY
(
_xfrm2
.
offY
);
_xfrm
.
setExtX
(
_xfrm2
.
extX
);
_xfrm
.
setExtX
(
_xfrm2
.
extX
);
_xfrm
.
setExtY
(
_xfrm2
.
extY
);
_xfrm
.
setExtY
(
_xfrm2
.
extY
);
_xfrm
.
setFlipH
(
_xfrm2
.
flipH
);
if
(
!
this
.
group
){
_xfrm
.
setFlipV
(
_xfrm2
.
flipV
);
_xfrm
.
setOffX
(
_xfrm2
.
offX
);
_xfrm
.
setRot
(
_xfrm2
.
rot
);
_xfrm
.
setOffY
(
_xfrm2
.
offY
);
_xfrm
.
setFlipH
(
_xfrm2
.
flipH
);
_xfrm
.
setFlipV
(
_xfrm2
.
flipV
);
_xfrm
.
setRot
(
_xfrm2
.
rot
);
}
else
{
var
_xc
=
_xfrm2
.
offX
+
_xfrm2
.
extX
/
2.0
;
var
_yc
=
_xfrm2
.
offY
+
_xfrm2
.
extY
/
2.0
;
var
xc
=
this
.
group
.
invertTransform
.
TransformPointX
(
_xc
,
_yc
);
var
yc
=
this
.
group
.
invertTransform
.
TransformPointY
(
_xc
,
_yc
);
_xfrm
.
setOffX
(
xc
-
_xfrm2
.
extX
/
2.0
);
_xfrm
.
setOffY
(
yc
-
_xfrm2
.
extY
/
2.0
);
_xfrm
.
setFlipH
(
this
.
group
.
getFullFlipH
()
?
!
_xfrm2
.
flipH
:
_xfrm2
.
flipH
);
_xfrm
.
setFlipV
(
this
.
group
.
getFullFlipV
()
?
!
_xfrm2
.
flipV
:
_xfrm2
.
flipV
);
_xfrm
.
setRot
(
AscFormat
.
normalizeRotate
(
_xfrm2
.
rot
-
this
.
group
.
getFullRotate
()));
}
this
.
spPr
.
setGeometry
(
_spPr
.
geometry
.
createDuplicate
());
this
.
spPr
.
setGeometry
(
_spPr
.
geometry
.
createDuplicate
());
this
.
checkDrawingBaseCoords
();
this
.
checkDrawingBaseCoords
();
this
.
recalculate
();
this
.
recalculate
();
...
@@ -619,10 +633,10 @@
...
@@ -619,10 +633,10 @@
}
}
else
{
else
{
if
(
oBeginDrawing
){
if
(
oBeginDrawing
){
_startConnectionParams
=
oBeginDrawing
.
getConnectionParams
(
this
.
getStCxnIdx
(),
this
.
group
);
_startConnectionParams
=
oBeginDrawing
.
getConnectionParams
(
this
.
getStCxnIdx
(),
null
);
}
}
if
(
oEndDrawing
){
if
(
oEndDrawing
){
_endConnectionParams
=
oEndDrawing
.
getConnectionParams
(
this
.
getEndCxnIdx
(),
this
.
group
);
_endConnectionParams
=
oEndDrawing
.
getConnectionParams
(
this
.
getEndCxnIdx
(),
null
);
}
}
var
_tx
,
_ty
;
var
_tx
,
_ty
;
if
(
_startConnectionParams
||
_endConnectionParams
){
if
(
_startConnectionParams
||
_endConnectionParams
){
...
@@ -639,13 +653,26 @@
...
@@ -639,13 +653,26 @@
}
}
_spPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
spPr
.
geometry
.
preset
,
this
.
pen
&&
this
.
pen
.
w
);
_spPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
spPr
.
geometry
.
preset
,
this
.
pen
&&
this
.
pen
.
w
);
_xfrm2
=
_spPr
.
xfrm
;
_xfrm2
=
_spPr
.
xfrm
;
_xfrm
.
setOffX
(
_xfrm2
.
offX
);
_xfrm
.
setOffY
(
_xfrm2
.
offY
);
_xfrm
.
setExtX
(
_xfrm2
.
extX
);
_xfrm
.
setExtX
(
_xfrm2
.
extX
);
_xfrm
.
setExtY
(
_xfrm2
.
extY
);
_xfrm
.
setExtY
(
_xfrm2
.
extY
);
_xfrm
.
setFlipH
(
_xfrm2
.
flipH
);
if
(
!
this
.
group
){
_xfrm
.
setFlipV
(
_xfrm2
.
flipV
);
_xfrm
.
setOffX
(
_xfrm2
.
offX
);
_xfrm
.
setRot
(
_xfrm2
.
rot
);
_xfrm
.
setOffY
(
_xfrm2
.
offY
);
_xfrm
.
setFlipH
(
_xfrm2
.
flipH
);
_xfrm
.
setFlipV
(
_xfrm2
.
flipV
);
_xfrm
.
setRot
(
_xfrm2
.
rot
);
}
else
{
var
_xc
=
_xfrm2
.
offX
+
_xfrm2
.
extX
/
2.0
;
var
_yc
=
_xfrm2
.
offY
+
_xfrm2
.
extY
/
2.0
;
var
xc
=
this
.
group
.
invertTransform
.
TransformPointX
(
_xc
,
_yc
);
var
yc
=
this
.
group
.
invertTransform
.
TransformPointY
(
_xc
,
_yc
);
_xfrm
.
setOffX
(
xc
-
_xfrm2
.
extX
/
2.0
);
_xfrm
.
setOffY
(
yc
-
_xfrm2
.
extY
/
2.0
);
_xfrm
.
setFlipH
(
this
.
group
.
getFullFlipH
()
?
!
_xfrm2
.
flipH
:
_xfrm2
.
flipH
);
_xfrm
.
setFlipV
(
this
.
group
.
getFullFlipV
()
?
!
_xfrm2
.
flipV
:
_xfrm2
.
flipV
);
_xfrm
.
setRot
(
AscFormat
.
normalizeRotate
(
_xfrm2
.
rot
-
this
.
group
.
getFullRotate
()));
}
this
.
spPr
.
setGeometry
(
_spPr
.
geometry
.
createDuplicate
());
this
.
spPr
.
setGeometry
(
_spPr
.
geometry
.
createDuplicate
());
this
.
checkDrawingBaseCoords
();
this
.
checkDrawingBaseCoords
();
this
.
recalculate
();
this
.
recalculate
();
...
...
common/Drawings/States.js
View file @
6fb2b455
...
@@ -701,9 +701,20 @@ RotateState.prototype =
...
@@ -701,9 +701,20 @@ RotateState.prototype =
}
}
}
}
var
aAllConnectors
=
drawingObjects
.
getAllConnectorsByDrawings
(
oOriginalObjects
,
[],
undefined
,
true
);
var
aAllConnectors
=
drawingObjects
.
getAllConnectorsByDrawings
(
oOriginalObjects
,
[],
undefined
,
true
);
var
oGroupMaps
=
{};
for
(
i
=
0
;
i
<
aAllConnectors
.
length
;
++
i
){
for
(
i
=
0
;
i
<
aAllConnectors
.
length
;
++
i
){
if
(
!
oMapOriginalsId
[
aAllConnectors
[
i
].
Get_Id
()]){
if
(
!
oMapOriginalsId
[
aAllConnectors
[
i
].
Get_Id
()]){
aAllConnectors
[
i
].
calculateTransform
(((
oThis
instanceof
MoveInGroupState
)
||
(
oThis
instanceof
MoveState
)));
aAllConnectors
[
i
].
calculateTransform
(((
oThis
instanceof
MoveInGroupState
)
||
(
oThis
instanceof
MoveState
)));
var
oGroup
=
aAllConnectors
[
i
].
getMainGroup
();
if
(
oGroup
){
}
oGroupMaps
[
oGroup
.
Id
]
=
oGroup
;
}
}
for
(
var
key
in
oGroupMaps
){
if
(
oGroupMaps
.
hasOwnProperty
(
key
)){
oGroupMaps
[
key
].
updateCoordinatesAfterInternalResize
();
}
}
}
}
}
}
...
...
common/Drawings/TrackObjects/ConnectorTrack.js
View file @
6fb2b455
...
@@ -16,11 +16,11 @@
...
@@ -16,11 +16,11 @@
this
.
startY
=
this
.
originalObject
.
transform
.
TransformPointY
(
0
,
0
);
this
.
startY
=
this
.
originalObject
.
transform
.
TransformPointY
(
0
,
0
);
if
(
this
.
originalObject
.
group
){
if
(
this
.
originalObject
.
group
){
var
oInvertTransform
=
this
.
originalObject
.
group
.
invertTransform
;
//
var oInvertTransform = this.originalObject.group.invertTransform;
var
_stX
=
oInvertTransform
.
TransformPointX
(
this
.
startX
,
this
.
startY
);
//
var _stX = oInvertTransform.TransformPointX(this.startX, this.startY);
var
_stY
=
oInvertTransform
.
TransformPointY
(
this
.
startX
,
this
.
startY
);
//
var _stY = oInvertTransform.TransformPointY(this.startX, this.startY);
this
.
startX
=
_stX
;
//
this.startX = _stX;
this
.
startY
=
_stY
;
//
this.startY = _stY;
}
}
...
@@ -62,19 +62,19 @@
...
@@ -62,19 +62,19 @@
}
}
_bounds
=
track_bounds
;
_bounds
=
track_bounds
;
_transform
=
this
.
beginTrack
.
overlayObject
.
TransformMatrix
;
_transform
=
this
.
beginTrack
.
overlayObject
.
TransformMatrix
;
if
(
_group
){
//
if(_group){
_rot
=
AscFormat
.
normalizeRotate
((
this
.
beginTrack
.
originalObject
.
group
?
this
.
beginTrack
.
originalObject
.
group
.
getFullRotate
()
:
0
)
+
_rot
-
_group
.
getFullRotate
());
//
_rot = AscFormat.normalizeRotate((this.beginTrack.originalObject.group ? this.beginTrack.originalObject.group.getFullRotate() : 0) + _rot - _group.getFullRotate());
if
(
_group
.
getFullFlipH
()){
//
if(_group.getFullFlipH()){
_flipH
=
!
_flipH
;
//
_flipH = !_flipH;
}
//
}
if
(
_group
.
getFullFlipV
()){
//
if(_group.getFullFlipV()){
_flipV
=
!
_flipV
;
//
_flipV = !_flipV;
}
//
}
_bounds
=
_bounds
.
copy
();
//
_bounds = _bounds.copy();
_bounds
.
transform
(
_group
.
invertTransform
);
//
_bounds.transform(_group.invertTransform);
_transform
=
_transform
.
CreateDublicate
();
//
_transform = _transform.CreateDublicate();
AscCommon
.
global_MatrixTransformer
.
MultiplyAppend
(
_transform
,
_group
.
invertTransform
);
//
AscCommon.global_MatrixTransformer.MultiplyAppend(_transform, _group.invertTransform);
}
//
}
oConnectionObject
=
this
.
beginTrack
.
overlayObject
.
geometry
.
cnxLst
[
oConnectorInfo
.
stCnxIdx
];
oConnectionObject
=
this
.
beginTrack
.
overlayObject
.
geometry
.
cnxLst
[
oConnectorInfo
.
stCnxIdx
];
g_conn_info
=
{
idx
:
oConnectorInfo
.
stCnxIdx
,
ang
:
oConnectionObject
.
ang
,
x
:
oConnectionObject
.
x
,
y
:
oConnectionObject
.
y
};
g_conn_info
=
{
idx
:
oConnectorInfo
.
stCnxIdx
,
ang
:
oConnectionObject
.
ang
,
x
:
oConnectionObject
.
x
,
y
:
oConnectionObject
.
y
};
_startConnectionParams
=
this
.
originalObject
.
convertToConnectionParams
(
_rot
,
_flipH
,
_flipV
,
_transform
,
_bounds
,
g_conn_info
);
_startConnectionParams
=
this
.
originalObject
.
convertToConnectionParams
(
_rot
,
_flipH
,
_flipV
,
_transform
,
_bounds
,
g_conn_info
);
...
@@ -95,19 +95,19 @@
...
@@ -95,19 +95,19 @@
}
}
_bounds
=
track_bounds
;
_bounds
=
track_bounds
;
_transform
=
this
.
endTrack
.
overlayObject
.
TransformMatrix
;
_transform
=
this
.
endTrack
.
overlayObject
.
TransformMatrix
;
if
(
_group
){
//
if(_group){
_rot
=
AscFormat
.
normalizeRotate
((
this
.
endTrack
.
originalObject
.
group
?
this
.
endTrack
.
originalObject
.
group
.
getFullRotate
()
:
0
)
+
_rot
-
_group
.
getFullRotate
());
//
_rot = AscFormat.normalizeRotate((this.endTrack.originalObject.group ? this.endTrack.originalObject.group.getFullRotate() : 0) + _rot - _group.getFullRotate());
if
(
_group
.
getFullFlipH
()){
//
if(_group.getFullFlipH()){
_flipH
=
!
_flipH
;
//
_flipH = !_flipH;
}
//
}
if
(
_group
.
getFullFlipV
()){
//
if(_group.getFullFlipV()){
_flipV
=
!
_flipV
;
//
_flipV = !_flipV;
}
//
}
_bounds
=
_bounds
.
copy
();
//
_bounds = _bounds.copy();
_bounds
.
transform
(
_group
.
invertTransform
);
//
_bounds.transform(_group.invertTransform);
_transform
=
_transform
.
CreateDublicate
();
//
_transform = _transform.CreateDublicate();
AscCommon
.
global_MatrixTransformer
.
MultiplyAppend
(
_transform
,
_group
.
invertTransform
);
//
AscCommon.global_MatrixTransformer.MultiplyAppend(_transform, _group.invertTransform);
}
//
}
oConnectionObject
=
this
.
endTrack
.
overlayObject
.
geometry
.
cnxLst
[
oConnectorInfo
.
endCnxIdx
];
oConnectionObject
=
this
.
endTrack
.
overlayObject
.
geometry
.
cnxLst
[
oConnectorInfo
.
endCnxIdx
];
g_conn_info
=
{
idx
:
oConnectorInfo
.
endCnxIdx
,
ang
:
oConnectionObject
.
ang
,
x
:
oConnectionObject
.
x
,
y
:
oConnectionObject
.
y
};
g_conn_info
=
{
idx
:
oConnectorInfo
.
endCnxIdx
,
ang
:
oConnectionObject
.
ang
,
x
:
oConnectionObject
.
x
,
y
:
oConnectionObject
.
y
};
_endConnectionParams
=
this
.
originalObject
.
convertToConnectionParams
(
_rot
,
_flipH
,
_flipV
,
_transform
,
_bounds
,
g_conn_info
);
_endConnectionParams
=
this
.
originalObject
.
convertToConnectionParams
(
_rot
,
_flipH
,
_flipV
,
_transform
,
_bounds
,
g_conn_info
);
...
@@ -116,7 +116,7 @@
...
@@ -116,7 +116,7 @@
if
(
!
_startConnectionParams
){
if
(
!
_startConnectionParams
){
if
(
this
.
beginShape
&&
oConnectorInfo
.
stCnxIdx
!==
null
){
if
(
this
.
beginShape
&&
oConnectorInfo
.
stCnxIdx
!==
null
){
_startConnectionParams
=
this
.
beginShape
.
getConnectionParams
(
oConnectorInfo
.
stCnxIdx
,
_group
);
_startConnectionParams
=
this
.
beginShape
.
getConnectionParams
(
oConnectorInfo
.
stCnxIdx
,
null
);
}
}
else
{
else
{
if
((
this
.
endTrack
instanceof
AscFormat
.
MoveShapeImageTrack
)){
if
((
this
.
endTrack
instanceof
AscFormat
.
MoveShapeImageTrack
)){
...
@@ -148,17 +148,17 @@
...
@@ -148,17 +148,17 @@
if
(
!
_endConnectionParams
){
if
(
!
_endConnectionParams
){
if
(
this
.
endShape
&&
oConnectorInfo
.
endCnxIdx
!==
null
){
if
(
this
.
endShape
&&
oConnectorInfo
.
endCnxIdx
!==
null
){
_endConnectionParams
=
this
.
endShape
.
getConnectionParams
(
oConnectorInfo
.
endCnxIdx
,
_group
);
_endConnectionParams
=
this
.
endShape
.
getConnectionParams
(
oConnectorInfo
.
endCnxIdx
,
null
);
}
}
else
{
else
{
if
((
this
.
beginTrack
instanceof
AscFormat
.
MoveShapeImageTrack
)){
if
((
this
.
beginTrack
instanceof
AscFormat
.
MoveShapeImageTrack
)){
var
_dx
,
_dy
;
var
_dx
,
_dy
;
if
(
this
.
originalObject
.
group
){
if
(
this
.
originalObject
.
group
){
var
_oCopyMatrix
=
this
.
originalObject
.
group
.
invertTransform
.
CreateDublicate
();
//
var _oCopyMatrix = this.originalObject.group.invertTransform.CreateDublicate();
_oCopyMatrix
.
tx
=
0
;
//
_oCopyMatrix.tx = 0;
_oCopyMatrix
.
ty
=
0
;
//
_oCopyMatrix.ty = 0;
_dx
=
_oCopyMatrix
.
TransformPointX
(
this
.
beginTrack
.
lastDx
,
this
.
beginTrack
.
lastDy
);
_dx
=
this
.
beginTrack
.
lastDx
;
//
_oCopyMatrix.TransformPointX(this.beginTrack.lastDx, this.beginTrack.lastDy);
_dy
=
_oCopyMatrix
.
TransformPointY
(
this
.
beginTrack
.
lastDx
,
this
.
beginTrack
.
lastDy
);
_dy
=
this
.
beginTrack
.
lastDy
;
//
_oCopyMatrix.TransformPointY(this.beginTrack.lastDx, this.beginTrack.lastDy);
}
}
else
{
else
{
_dx
=
this
.
beginTrack
.
lastDx
;
_dx
=
this
.
beginTrack
.
lastDx
;
...
@@ -169,6 +169,27 @@
...
@@ -169,6 +169,27 @@
this
.
oSpPr
.
xfrm
.
offY
+=
_dy
;
this
.
oSpPr
.
xfrm
.
offY
+=
_dy
;
this
.
geometry
=
this
.
oSpPr
.
geometry
;
this
.
geometry
=
this
.
oSpPr
.
geometry
;
this
.
overlayObject
.
geometry
=
this
.
geometry
;
this
.
overlayObject
.
geometry
=
this
.
geometry
;
if
(
!
this
.
originalObject
.
group
){
this
.
oSpPr
.
xfrm
.
setOffX
(
this
.
oSpPr
.
xfrm
.
offX
);
this
.
oSpPr
.
xfrm
.
setOffY
(
this
.
oSpPr
.
xfrm
.
offY
);
this
.
oSpPr
.
xfrm
.
setFlipH
(
this
.
oSpPr
.
xfrm
.
flipH
);
this
.
oSpPr
.
xfrm
.
setFlipV
(
this
.
oSpPr
.
xfrm
.
flipV
);
this
.
oSpPr
.
xfrm
.
setRot
(
this
.
oSpPr
.
xfrm
.
rot
);
}
else
{
var
_xc
=
this
.
oSpPr
.
xfrm
.
offX
+
this
.
oSpPr
.
xfrm
.
extX
/
2.0
;
var
_yc
=
this
.
oSpPr
.
xfrm
.
offY
+
this
.
oSpPr
.
xfrm
.
extY
/
2.0
;
var
xc
=
this
.
originalObject
.
group
.
invertTransform
.
TransformPointX
(
_xc
,
_yc
);
var
yc
=
this
.
originalObject
.
group
.
invertTransform
.
TransformPointY
(
_xc
,
_yc
);
this
.
oSpPr
.
xfrm
.
setOffX
(
xc
-
this
.
oSpPr
.
xfrm
.
extX
/
2.0
);
this
.
oSpPr
.
xfrm
.
setOffY
(
yc
-
this
.
oSpPr
.
xfrm
.
extY
/
2.0
);
this
.
oSpPr
.
xfrm
.
setFlipH
(
this
.
originalObject
.
group
.
getFullFlipH
()
?
!
this
.
oSpPr
.
xfrm
.
flipH
:
this
.
oSpPr
.
xfrm
.
flipH
);
this
.
oSpPr
.
xfrm
.
setFlipV
(
this
.
originalObject
.
group
.
getFullFlipV
()
?
!
this
.
oSpPr
.
xfrm
.
flipV
:
this
.
oSpPr
.
xfrm
.
flipV
);
this
.
oSpPr
.
xfrm
.
setRot
(
AscFormat
.
normalizeRotate
(
this
.
oSpPr
.
xfrm
.
rot
-
this
.
originalObject
.
group
.
getFullRotate
()));
}
this
.
calculateTransform
();
this
.
calculateTransform
();
return
;
return
;
}
}
...
@@ -178,6 +199,26 @@
...
@@ -178,6 +199,26 @@
}
}
}
}
this
.
oSpPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
originalObject
.
spPr
.
geometry
.
preset
,
this
.
overlayObject
.
pen
.
w
);
this
.
oSpPr
=
AscFormat
.
fCalculateSpPr
(
_startConnectionParams
,
_endConnectionParams
,
this
.
originalObject
.
spPr
.
geometry
.
preset
,
this
.
overlayObject
.
pen
.
w
);
if
(
!
this
.
originalObject
.
group
){
this
.
oSpPr
.
xfrm
.
setOffX
(
this
.
oSpPr
.
xfrm
.
offX
);
this
.
oSpPr
.
xfrm
.
setOffY
(
this
.
oSpPr
.
xfrm
.
offY
);
this
.
oSpPr
.
xfrm
.
setFlipH
(
this
.
oSpPr
.
xfrm
.
flipH
);
this
.
oSpPr
.
xfrm
.
setFlipV
(
this
.
oSpPr
.
xfrm
.
flipV
);
this
.
oSpPr
.
xfrm
.
setRot
(
this
.
oSpPr
.
xfrm
.
rot
);
}
else
{
var
_xc
=
this
.
oSpPr
.
xfrm
.
offX
+
this
.
oSpPr
.
xfrm
.
extX
/
2.0
;
var
_yc
=
this
.
oSpPr
.
xfrm
.
offY
+
this
.
oSpPr
.
xfrm
.
extY
/
2.0
;
var
xc
=
this
.
originalObject
.
group
.
invertTransform
.
TransformPointX
(
_xc
,
_yc
);
var
yc
=
this
.
originalObject
.
group
.
invertTransform
.
TransformPointY
(
_xc
,
_yc
);
this
.
oSpPr
.
xfrm
.
setOffX
(
xc
-
this
.
oSpPr
.
xfrm
.
extX
/
2.0
);
this
.
oSpPr
.
xfrm
.
setOffY
(
yc
-
this
.
oSpPr
.
xfrm
.
extY
/
2.0
);
this
.
oSpPr
.
xfrm
.
setFlipH
(
this
.
originalObject
.
group
.
getFullFlipH
()
?
!
this
.
oSpPr
.
xfrm
.
flipH
:
this
.
oSpPr
.
xfrm
.
flipH
);
this
.
oSpPr
.
xfrm
.
setFlipV
(
this
.
originalObject
.
group
.
getFullFlipV
()
?
!
this
.
oSpPr
.
xfrm
.
flipV
:
this
.
oSpPr
.
xfrm
.
flipV
);
this
.
oSpPr
.
xfrm
.
setRot
(
AscFormat
.
normalizeRotate
(
this
.
oSpPr
.
xfrm
.
rot
-
this
.
originalObject
.
group
.
getFullRotate
()));
}
this
.
geometry
=
this
.
oSpPr
.
geometry
;
this
.
geometry
=
this
.
oSpPr
.
geometry
;
this
.
overlayObject
.
geometry
=
this
.
geometry
;
this
.
overlayObject
.
geometry
=
this
.
geometry
;
this
.
calculateTransform
();
this
.
calculateTransform
();
...
...
slide/Editor/Format/Slide.js
View file @
6fb2b455
...
@@ -1258,7 +1258,10 @@ Slide.prototype =
...
@@ -1258,7 +1258,10 @@ Slide.prototype =
}
}
}
}
else
{
else
{
if
(
sp
.
getObjectType
()
===
AscDFH
.
historyitem_type_GroupShape
){
sp
.
handleUpdateTheme
();
sp
.
checkExtentsByDocContent
();
}
}
}
}
}
},
},
...
...
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