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
f44f33aa
Commit
f44f33aa
authored
Jan 20, 2017
by
GoshaZotov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into Feature/special_paste
parents
cc1e4ef4
a28cf742
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
94 additions
and
27 deletions
+94
-27
cell/model/DrawingObjects/Format/ShapePrototype.js
cell/model/DrawingObjects/Format/ShapePrototype.js
+4
-1
cell/model/WorkbookElems.js
cell/model/WorkbookElems.js
+3
-3
cell/view/WorkbookView.js
cell/view/WorkbookView.js
+0
-5
cell/view/mobileTouch.js
cell/view/mobileTouch.js
+33
-15
common/Charts/DrawingObjects.js
common/Charts/DrawingObjects.js
+1
-0
common/Overlay.js
common/Overlay.js
+51
-3
slide/Drawing/mobileTouchManager.js
slide/Drawing/mobileTouchManager.js
+1
-0
word/Drawing/mobileTouchManager.js
word/Drawing/mobileTouchManager.js
+1
-0
No files found.
cell/model/DrawingObjects/Format/ShapePrototype.js
View file @
f44f33aa
...
...
@@ -423,7 +423,10 @@ CShape.prototype.handleUpdateGeometry = function()
CShape
.
prototype
.
convertPixToMM
=
function
(
pix
)
{
var
drawingObjects
=
getDrawingObjects_Sp
(
this
);
return
drawingObjects
?
drawingObjects
.
convertMetric
(
pix
,
0
,
3
)
:
0
;
var
val
=
drawingObjects
?
drawingObjects
.
convertMetric
(
pix
,
0
,
3
)
:
0
;
if
(
AscCommon
.
AscBrowser
.
isRetina
)
val
*=
2
;
return
val
;
};
CShape
.
prototype
.
getCanvasContext
=
function
()
{
...
...
cell/model/WorkbookElems.js
View file @
f44f33aa
...
...
@@ -560,9 +560,9 @@ var g_oFontProperties = {
oRes
.
fn
=
this
.
fn
||
font
.
fn
;
oRes
.
scheme
=
this
.
scheme
||
font
.
scheme
;
oRes
.
fs
=
this
.
fs
||
font
.
fs
;
oRes
.
b
=
this
.
b
;
oRes
.
i
=
this
.
i
;
oRes
.
s
=
this
.
s
;
oRes
.
b
=
this
.
b
||
font
.
b
;
oRes
.
i
=
this
.
i
||
font
.
i
;
oRes
.
s
=
this
.
s
||
font
.
s
;
oRes
.
u
=
this
.
u
||
font
.
u
;
//заглушка excel при merge стилей игнорирует default цвет
if
(
isTable
&&
this
.
c
&&
this
.
c
.
isEqual
(
g_oDefaultFormat
.
Font
.
c
))
{
...
...
cell/view/WorkbookView.js
View file @
f44f33aa
...
...
@@ -272,11 +272,6 @@
this
.
canvasGraphicOverlay
=
document
.
getElementById
(
"
ws-canvas-graphic-overlay
"
);
}
// Для мобильных не поддерживаем ретину
if
(
this
.
Api
.
isMobileVersion
)
{
AscBrowser
.
isRetina
=
false
;
}
this
.
buffers
.
main
=
new
asc
.
DrawingContext
({
canvas
:
this
.
canvas
,
units
:
1
/*pt*/
,
fmgrGraphics
:
this
.
fmgrGraphics
,
font
:
this
.
m_oFont
});
...
...
cell/view/mobileTouch.js
View file @
f44f33aa
...
...
@@ -47,6 +47,7 @@ function (window, undefined)
*/
function
CMobileDelegateEditorCell
(
_manager
)
{
this
.
Name
=
"
cell
"
;
this
.
WB
=
_manager
.
Api
.
wb
;
this
.
DrawingDocument
=
this
.
WB
.
getWorksheet
().
objectRender
.
drawingDocument
;
...
...
@@ -67,6 +68,12 @@ function (window, undefined)
var
_res
=
this
.
WB
.
ConvertLogicToXY
(
x
,
y
);
var
_point
=
{
X
:
_res
.
X
,
Y
:
_res
.
Y
,
Page
:
0
,
DrawPage
:
0
};
if
(
AscBrowser
.
isRetina
)
{
_point
.
X
>>=
1
;
_point
.
Y
>>=
1
;
}
if
(
isGlobal
!==
false
)
{
_point
.
X
+=
this
.
Offset
.
X
;
...
...
@@ -77,7 +84,16 @@ function (window, undefined)
};
CMobileDelegateEditorCell
.
prototype
.
ConvertCoordsFromCursor
=
function
(
x
,
y
)
{
var
_res
=
this
.
WB
.
ConvertXYToLogic
(
x
-
this
.
Offset
.
X
,
y
-
this
.
Offset
.
Y
);
var
_x
=
x
-
this
.
Offset
.
X
;
var
_y
=
y
-
this
.
Offset
.
Y
;
if
(
AscBrowser
.
isRetina
)
{
_x
<<=
1
;
_y
<<=
1
;
}
var
_res
=
this
.
WB
.
ConvertXYToLogic
(
_x
,
_y
);
var
_point
=
{
X
:
_res
.
X
,
Y
:
_res
.
Y
,
Page
:
0
,
DrawPage
:
0
};
return
_point
;
};
...
...
@@ -742,6 +758,8 @@ function (window, undefined)
ctx
.
fillStyle
=
"
rgba(
"
+
color
.
r
+
"
,
"
+
color
.
g
+
"
,
"
+
color
.
b
+
"
,
"
+
color
.
a
+
"
)
"
;
}
var
_koef
=
AscCommon
.
AscBrowser
.
isRetina
?
2
:
1
;
if
(
!
_matrix
||
global_MatrixTransformer
.
IsIdentity
(
_matrix
))
{
var
pos1
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect1
.
x
,
this
.
RectSelect1
.
y
,
this
.
PageSelect1
,
false
);
...
...
@@ -754,11 +772,11 @@ function (window, undefined)
{
ctx
.
beginPath
();
ctx
.
moveTo
(
pos1
.
X
>>
0
,
pos1
.
Y
>>
0
);
ctx
.
lineTo
(
pos2
.
X
>>
0
,
pos2
.
Y
>>
0
);
ctx
.
moveTo
(
(
_koef
*
pos1
.
X
)
>>
0
,
(
_koef
*
pos1
.
Y
)
>>
0
);
ctx
.
lineTo
(
(
_koef
*
pos2
.
X
)
>>
0
,
(
_koef
*
pos2
.
Y
)
>>
0
);
ctx
.
moveTo
(
pos3
.
X
>>
0
,
pos3
.
Y
>>
0
);
ctx
.
lineTo
(
pos4
.
X
>>
0
,
pos4
.
Y
>>
0
);
ctx
.
moveTo
(
(
_koef
*
pos3
.
X
)
>>
0
,
(
_koef
*
pos3
.
Y
)
>>
0
);
ctx
.
lineTo
(
(
_koef
*
pos4
.
X
)
>>
0
,
(
_koef
*
pos4
.
Y
)
>>
0
);
ctx
.
lineWidth
=
2
;
ctx
.
stroke
();
...
...
@@ -768,8 +786,8 @@ function (window, undefined)
var
_offset
=
(
undefined
===
color
)
?
5
:
0
;
overlay
.
AddEllipse
(
pos1
.
X
,
pos1
.
Y
-
_offset
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
pos4
.
X
,
pos4
.
Y
+
_offset
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_koef
*
pos1
.
X
,
_koef
*
(
pos1
.
Y
-
_offset
),
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_koef
*
pos4
.
X
,
_koef
*
(
pos4
.
Y
+
_offset
),
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
ctx
.
fill
();
ctx
.
beginPath
();
...
...
@@ -798,11 +816,11 @@ function (window, undefined)
{
ctx
.
beginPath
();
ctx
.
moveTo
(
pos1
.
X
,
pos1
.
Y
);
ctx
.
lineTo
(
pos2
.
X
,
pos2
.
Y
);
ctx
.
moveTo
(
_koef
*
pos1
.
X
,
_koef
*
pos1
.
Y
);
ctx
.
lineTo
(
_koef
*
pos2
.
X
,
_koef
*
pos2
.
Y
);
ctx
.
moveTo
(
pos3
.
X
,
pos3
.
Y
);
ctx
.
lineTo
(
pos4
.
X
,
pos4
.
Y
);
ctx
.
moveTo
(
_koef
*
pos3
.
X
,
_koef
*
pos3
.
Y
);
ctx
.
lineTo
(
_koef
*
pos4
.
X
,
_koef
*
pos4
.
Y
);
ctx
.
lineWidth
=
2
;
ctx
.
stroke
();
...
...
@@ -831,13 +849,13 @@ function (window, undefined)
var
_x2
=
(
pos4
.
X
+
ex
)
>>
0
;
var
_y2
=
(
pos4
.
Y
+
ey
)
>>
0
;
overlay
.
AddEllipse
(
_
x1
,
_y1
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_
x2
,
_y2
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_
koef
*
_x1
,
_koef
*
_y1
,
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_
koef
*
_x2
,
_koef
*
_y2
,
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
}
else
{
overlay
.
AddEllipse
(
pos1
.
X
,
pos1
.
Y
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
pos4
.
X
,
pos4
.
Y
,
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_koef
*
pos1
.
X
,
_koef
*
pos1
.
Y
,
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
overlay
.
AddEllipse
(
_koef
*
pos4
.
X
,
_koef
*
pos4
.
Y
,
_koef
*
AscCommon
.
MOBILE_SELECT_TRACK_ROUND
/
2
);
}
ctx
.
fill
();
...
...
common/Charts/DrawingObjects.js
View file @
f44f33aa
...
...
@@ -1827,6 +1827,7 @@ function DrawingObjects() {
shapeOverlayCtx
=
currentSheet
.
shapeOverlayCtx
;
trackOverlay
=
new
AscCommon
.
COverlay
();
trackOverlay
.
IsCellEditor
=
true
;
trackOverlay
.
init
(
shapeOverlayCtx
.
m_oContext
,
"
ws-canvas-graphic-overlay
"
,
0
,
0
,
shapeOverlayCtx
.
m_lWidthPix
,
shapeOverlayCtx
.
m_lHeightPix
,
shapeOverlayCtx
.
m_dWidthMM
,
shapeOverlayCtx
.
m_dHeightMM
);
autoShapeTrack
=
new
AscCommon
.
CAutoshapeTrack
();
...
...
common/Overlay.js
View file @
f44f33aa
...
...
@@ -88,6 +88,7 @@ function COverlay()
this
.
ClearAll
=
false
;
this
.
IsRetina
=
false
;
this
.
IsCellEditor
=
false
;
}
COverlay
.
prototype
=
...
...
@@ -858,6 +859,29 @@ CAutoshapeTrack.prototype =
if
(
true
===
isNoMove
)
return
;
var
_retina
=
this
.
m_oOverlay
.
IsRetina
;
if
(
!
_retina
&&
this
.
m_oOverlay
.
IsCellEditor
&&
AscCommon
.
AscBrowser
.
isRetina
)
{
this
.
m_oOverlay
.
IsRetina
=
true
;
this
.
m_oOverlay
.
m_oContext
.
setTransform
(
1
,
0
,
0
,
1
,
0
,
0
);
left
/=
2
;
top
/=
2
;
width
/=
2
;
height
/=
2
;
if
(
matrix
)
{
matrix
.
tx
/=
2
;
matrix
.
ty
/=
2
;
}
this
.
m_oOverlay
.
m_oContext
.
translate
(
this
.
Graphics
.
m_oCoordTransform
.
tx
,
this
.
Graphics
.
m_oCoordTransform
.
ty
);
this
.
m_oOverlay
.
m_oContext
.
scale
(
2
,
2
);
this
.
m_oOverlay
.
m_oContext
.
translate
(
-
this
.
Graphics
.
m_oCoordTransform
.
tx
,
-
this
.
Graphics
.
m_oCoordTransform
.
ty
);
}
// с самого начала нужно понять, есть ли поворот. Потому что если его нет, то можно
// (и нужно!) рисовать все по-умному
var
overlay
=
this
.
m_oOverlay
;
...
...
@@ -1261,11 +1285,13 @@ CAutoshapeTrack.prototype =
var
_px
=
Math
.
cos
(
_angle
);
var
_py
=
Math
.
sin
(
_angle
);
ctx
.
save
();
ctx
.
translate
(
_xI
,
_yI
);
ctx
.
transform
(
_px
,
_py
,
-
_py
,
_px
,
0
,
0
);
ctx
.
drawImage
(
_image_track_rotate
,
-
_w2
,
-
_w2
,
_w
,
_w
);
overlay
.
SetBaseTransform
();
ctx
.
restore
();
overlay
.
CheckRect
(
_xI
-
_w2
,
_yI
-
_w2
,
_w
,
_w
);
}
...
...
@@ -1620,11 +1646,13 @@ CAutoshapeTrack.prototype =
var
_px
=
Math
.
cos
(
_angle
);
var
_py
=
Math
.
sin
(
_angle
);
ctx
.
save
();
ctx
.
translate
(
_xI
,
_yI
);
ctx
.
transform
(
_px
,
_py
,
-
_py
,
_px
,
0
,
0
);
ctx
.
drawImage
(
_image_track_rotate
,
-
_w2
,
-
_w2
,
_w
,
_w
);
overlay
.
SetBaseTransform
();
ctx
.
restore
();
overlay
.
CheckRect
(
_xI
-
_w2
,
_yI
-
_w2
,
_w
,
_w
);
}
...
...
@@ -1894,10 +1922,14 @@ CAutoshapeTrack.prototype =
var
_w
=
IMAGE_ROTATE_TRACK_W
;
var
_w2
=
IMAGE_ROTATE_TRACK_W
/
2
;
overlay
.
SetTransform
(
ex1
,
ey1
,
-
ey1
,
ex1
,
_xI
,
_yI
);
ctx
.
save
();
overlay
.
transform
(
ex1
,
ey1
,
-
ey1
,
ex1
,
_xI
,
_yI
);
ctx
.
drawImage
(
_image_track_rotate
,
-
_w2
,
-
_w2
,
_w
,
_w
);
overlay
.
SetBaseTransform
();
ctx
.
restore
();
overlay
.
CheckRect
(
_xI
-
_w2
,
_yI
-
_w2
,
_w
,
_w
);
}
}
...
...
@@ -1948,6 +1980,18 @@ CAutoshapeTrack.prototype =
}
ctx
.
globalAlpha
=
_oldGlobalAlpha
;
if
(
!
_retina
&&
this
.
m_oOverlay
.
IsCellEditor
&&
AscCommon
.
AscBrowser
.
isRetina
)
{
this
.
m_oOverlay
.
IsRetina
=
false
;
this
.
m_oOverlay
.
SetBaseTransform
();
if
(
matrix
)
{
matrix
.
tx
*=
2
;
matrix
.
ty
*=
2
;
}
}
},
DrawTrackSelectShapes
:
function
(
x
,
y
,
w
,
h
)
...
...
@@ -2229,6 +2273,10 @@ CAutoshapeTrack.prototype =
var
ctx
=
overlay
.
m_oContext
;
var
dist
=
TRACK_ADJUSTMENT_SIZE
/
2
;
if
(
!
overlay
.
IsRetina
&&
overlay
.
IsCellEditor
&&
AscCommon
.
AscBrowser
.
isRetina
)
dist
*=
2
;
ctx
.
moveTo
(
cx
-
dist
,
cy
);
ctx
.
lineTo
(
cx
,
cy
-
dist
);
ctx
.
lineTo
(
cx
+
dist
,
cy
);
...
...
slide/Drawing/mobileTouchManager.js
View file @
f44f33aa
...
...
@@ -45,6 +45,7 @@
*/
function
CMobileDelegateEditorPresentation
(
_manager
)
{
this
.
Name
=
"
slide
"
;
CMobileDelegateEditorPresentation
.
superclass
.
constructor
.
call
(
this
,
_manager
);
}
AscCommon
.
extendClass
(
CMobileDelegateEditorPresentation
,
AscCommon
.
CMobileDelegateEditor
);
...
...
word/Drawing/mobileTouchManager.js
View file @
f44f33aa
...
...
@@ -45,6 +45,7 @@
*/
function
CMobileTouchManager
(
_config
)
{
this
.
Name
=
"
word
"
;
CMobileTouchManager
.
superclass
.
constructor
.
call
(
this
,
_config
||
{});
}
AscCommon
.
extendClass
(
CMobileTouchManager
,
AscCommon
.
CMobileTouchManagerBase
);
...
...
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