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
95cb8f9c
Commit
95cb8f9c
authored
Dec 08, 2016
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
592c1687
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
79 additions
and
55 deletions
+79
-55
common/Scrolls/mobileTouchManagerBase.js
common/Scrolls/mobileTouchManagerBase.js
+32
-34
word/Drawing/DrawingDocument.js
word/Drawing/DrawingDocument.js
+14
-3
word/Drawing/HtmlPage.js
word/Drawing/HtmlPage.js
+1
-1
word/Drawing/mobileTouchManager.js
word/Drawing/mobileTouchManager.js
+31
-16
word/api.js
word/api.js
+1
-1
No files found.
common/Scrolls/mobileTouchManagerBase.js
View file @
95cb8f9c
...
...
@@ -86,11 +86,11 @@
this
.
Manager
.
iScroll
.
on
(
'
scroll
'
,
function
()
{
this
.
ScrollTo
(
this
);
this
.
manager
.
delegate
.
ScrollTo
(
this
);
});
this
.
Manager
.
iScroll
.
on
(
'
scrollEnd
'
,
function
()
{
this
.
ScrollEnd
(
this
);
this
.
manager
.
delegate
.
ScrollEnd
(
this
);
});
};
...
...
@@ -165,13 +165,13 @@
/**
* @extends {CMobileDelegateSimple}
*/
function
CMobileDelegateEditor
(
_
api
)
function
CMobileDelegateEditor
(
_
manager
)
{
CMobileDelegateEditor
.
superclass
.
constructor
.
call
(
this
,
_
api
);
CMobileDelegateEditor
.
superclass
.
constructor
.
call
(
this
,
_
manager
);
this
.
HtmlPage
=
_a
pi
.
WordControl
;
this
.
LogicDocument
=
_a
pi
.
WordControl
.
m_oLogicDocument
;
this
.
DrawingDocument
=
_a
pi
.
WordControl
.
m_oDrawingDocument
;
this
.
HtmlPage
=
this
.
A
pi
.
WordControl
;
this
.
LogicDocument
=
this
.
A
pi
.
WordControl
.
m_oLogicDocument
;
this
.
DrawingDocument
=
this
.
A
pi
.
WordControl
.
m_oDrawingDocument
;
}
AscCommon
.
extendClass
(
CMobileDelegateEditor
,
CMobileDelegateSimple
);
...
...
@@ -179,9 +179,9 @@
{
return
this
.
DrawingDocument
.
SelectionMatrix
;
};
CMobileDelegateEditor
.
prototype
.
ConvertCoordsToCursor
=
function
(
x
,
y
,
page
)
CMobileDelegateEditor
.
prototype
.
ConvertCoordsToCursor
=
function
(
x
,
y
,
page
,
isGlobal
)
{
return
this
.
DrawingDocument
.
ConvertCoordsToCursor
(
x
,
y
,
page
);
return
this
.
DrawingDocument
.
ConvertCoordsToCursor
3
(
x
,
y
,
page
,
(
isGlobal
!==
false
)
);
};
CMobileDelegateEditor
.
prototype
.
ConvertCoordsFromCursor
=
function
(
x
,
y
)
{
...
...
@@ -395,15 +395,15 @@
};
CMobileDelegateEditor
.
prototype
.
Logic_OnMouseDown
=
function
(
e
,
x
,
y
,
page
)
{
return
this
.
LogicDocument
.
OnMouseDown
(
global_mouseEvent
,
x
,
y
,
page
);
return
this
.
LogicDocument
.
OnMouseDown
(
e
,
x
,
y
,
page
);
};
CMobileDelegateEditor
.
prototype
.
Logic_OnMouseMove
=
function
()
CMobileDelegateEditor
.
prototype
.
Logic_OnMouseMove
=
function
(
e
,
x
,
y
,
page
)
{
return
this
.
LogicDocument
.
OnMouseMove
(
global_mouseEvent
,
x
,
y
,
page
);
return
this
.
LogicDocument
.
OnMouseMove
(
e
,
x
,
y
,
page
);
};
CMobileDelegateEditor
.
prototype
.
Logic_OnMouseUp
=
function
()
CMobileDelegateEditor
.
prototype
.
Logic_OnMouseUp
=
function
(
e
,
x
,
y
,
page
)
{
return
this
.
LogicDocument
.
OnMouseUp
(
global_mouseEvent
,
x
,
y
,
page
);
return
this
.
LogicDocument
.
OnMouseUp
(
e
,
x
,
y
,
page
);
};
CMobileDelegateEditor
.
prototype
.
Drawing_OnMouseDown
=
function
(
e
)
{
...
...
@@ -473,12 +473,13 @@
/* scroll object */
this
.
iScroll
=
null
;
this
.
iScrollElement
=
"
mobile_scroller_id
"
;
/* delegate */
this
.
delegate
=
null
;
}
CMobileTouchManagerBase
.
prototype
.
CreateScrollerDiv
=
function
(
_wrapper
,
_id
)
CMobileTouchManagerBase
.
prototype
.
CreateScrollerDiv
=
function
(
_wrapper
)
{
var
_scroller
=
document
.
createElement
(
'
div
'
);
var
_style
=
"
position: absolute; z-index: 0; margin: 0; padding: 0; -webkit-tap-highlight-color: rgba(0,0,0,0); width: 100%; heigth: 100%; display: block;
"
;
...
...
@@ -487,7 +488,7 @@
_style
+=
"
-webkit-text-size-adjust: none; -moz-text-size-adjust: none; -ms-text-size-adjust: none; -o-text-size-adjust: none; text-size-adjust: none;
"
;
_scroller
.
setAttribute
(
"
style
"
,
_style
);
_scroller
.
id
=
_id
;
_scroller
.
id
=
this
.
iScrollElement
;
_wrapper
.
appendChild
(
_scroller
);
};
...
...
@@ -554,8 +555,6 @@
if
(
!
this
.
TableTrackEnabled
)
return
false
;
var
_offset
=
this
.
delegate
.
GetElementOffset
();
var
_eps
=
this
.
TrackTargetEps
;
var
bIsTable
=
false
;
...
...
@@ -567,8 +566,8 @@
if
(
!
_Transform
||
global_MatrixTransformer
.
IsIdentity
(
_Transform
))
{
var
_x
=
global_mouseEvent
.
X
-
_offset
.
X
;
var
_y
=
global_mouseEvent
.
Y
-
_offset
.
Y
;
var
_x
=
global_mouseEvent
.
X
;
var
_y
=
global_mouseEvent
.
Y
;
var
posLT
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
TableMovePoint
.
X
,
this
.
TableMovePoint
.
Y
,
_PageNum
);
var
_offset
=
this
.
TableRulersRectSize
+
this
.
TableRulersRectOffset
;
...
...
@@ -858,7 +857,7 @@
CMobileTouchManagerBase
.
prototype
.
Destroy
=
function
()
{
var
_scroller
=
document
.
getElementById
(
"
mobile_scroller_id
"
);
var
_scroller
=
document
.
getElementById
(
this
.
iScrollElement
);
this
.
delegate
.
GetScrollerParent
().
removeChild
(
_scroller
);
if
(
this
.
iScroll
!=
null
)
...
...
@@ -964,11 +963,11 @@
if
(
!
_matrix
||
global_MatrixTransformer
.
IsIdentity
(
_matrix
))
{
var
pos1
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect1
.
x
,
this
.
RectSelect1
.
y
,
this
.
PageSelect1
);
var
pos2
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect1
.
x
,
this
.
RectSelect1
.
y
+
this
.
RectSelect1
.
h
,
this
.
PageSelect1
);
var
pos1
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect1
.
x
,
this
.
RectSelect1
.
y
,
this
.
PageSelect1
,
false
);
var
pos2
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect1
.
x
,
this
.
RectSelect1
.
y
+
this
.
RectSelect1
.
h
,
this
.
PageSelect1
,
false
);
var
pos3
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
,
this
.
PageSelect2
);
var
pos4
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
+
this
.
RectSelect2
.
h
,
this
.
PageSelect2
);
var
pos3
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
,
this
.
PageSelect2
,
false
);
var
pos4
=
this
.
delegate
.
ConvertCoordsToCursor
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
+
this
.
RectSelect2
.
h
,
this
.
PageSelect2
,
false
);
ctx
.
beginPath
();
...
...
@@ -1003,11 +1002,11 @@
var
_xx22
=
_matrix
.
TransformPointX
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
+
this
.
RectSelect2
.
h
);
var
_yy22
=
_matrix
.
TransformPointY
(
this
.
RectSelect2
.
x
+
this
.
RectSelect2
.
w
,
this
.
RectSelect2
.
y
+
this
.
RectSelect2
.
h
);
var
pos1
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx11
,
_yy11
,
this
.
PageSelect1
);
var
pos2
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx12
,
_yy12
,
this
.
PageSelect1
);
var
pos1
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx11
,
_yy11
,
this
.
PageSelect1
,
false
);
var
pos2
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx12
,
_yy12
,
this
.
PageSelect1
,
false
);
var
pos3
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx21
,
_yy21
,
this
.
PageSelect2
);
var
pos4
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx22
,
_yy22
,
this
.
PageSelect2
);
var
pos3
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx21
,
_yy21
,
this
.
PageSelect2
,
false
);
var
pos4
=
this
.
delegate
.
ConvertCoordsToCursor
(
_xx22
,
_yy22
,
this
.
PageSelect2
,
false
);
ctx
.
beginPath
();
...
...
@@ -1078,7 +1077,7 @@
if
(
_table_markup
.
Rows
.
length
==
0
)
return
;
this
.
HtmlPage
.
CheckShowOverlay
();
HtmlPage
.
CheckShowOverlay
();
var
_epsRects
=
this
.
TableRulersRectOffset
;
var
_rectWidth
=
this
.
TableRulersRectSize
;
...
...
@@ -1098,8 +1097,8 @@
{
this
.
TableMovePoint
=
{
X
:
_tableOutline
.
X
,
Y
:
_tableOutline
.
Y
};
var
pos1
=
rawingDocument
.
ConvertCoordsToCursorWR
(
_tableOutline
.
X
,
_tableOutline
.
Y
,
_tableOutline
.
PageNum
);
var
pos2
=
rawingDocument
.
ConvertCoordsToCursorWR
(
_tableOutline
.
X
+
_tableW
,
_tableOutline
.
Y
,
_tableOutline
.
PageNum
);
var
pos1
=
D
rawingDocument
.
ConvertCoordsToCursorWR
(
_tableOutline
.
X
,
_tableOutline
.
Y
,
_tableOutline
.
PageNum
);
var
pos2
=
D
rawingDocument
.
ConvertCoordsToCursorWR
(
_tableOutline
.
X
+
_tableW
,
_tableOutline
.
Y
,
_tableOutline
.
PageNum
);
ctx
.
beginPath
();
...
...
@@ -1525,13 +1524,12 @@
/* simple click */
CMobileTouchManagerBase
.
prototype
.
MoveCursorToPoint
=
function
(
isHalfHeight
)
{
AscCommon
.
check_MouseMoveEvent
(
e
);
var
pos
=
this
.
delegate
.
ConvertCoordsFromCursor
(
global_mouseEvent
.
X
,
global_mouseEvent
.
Y
);
var
old_click_count
=
global_mouseEvent
.
ClickCount
;
global_mouseEvent
.
ClickCount
=
1
;
var
nearPos
=
this
.
delegate
.
Logic_GetNearestPos
(
pos
.
Page
,
pos
.
X
,
pos
.
Y
);
var
nearPos
=
this
.
delegate
.
Logic_GetNearestPos
(
pos
.
X
,
pos
.
Y
,
pos
.
Page
);
this
.
delegate
.
DrawingDocument
.
NeedScrollToTargetFlag
=
true
;
var
y
=
nearPos
.
Y
;
...
...
word/Drawing/DrawingDocument.js
View file @
95cb8f9c
...
...
@@ -2972,7 +2972,7 @@ function CDrawingDocument()
return
{
X
:
x_pix
,
Y
:
y_pix
,
Error
:
false
};
}
this
.
ConvertCoordsToCursor3
=
function
(
x
,
y
,
pageIndex
)
this
.
ConvertCoordsToCursor3
=
function
(
x
,
y
,
pageIndex
,
isGlobal
)
{
// теперь крутить всякие циклы нет смысла
if
(
pageIndex
<
0
||
pageIndex
>=
this
.
m_lPagesCount
)
...
...
@@ -2982,8 +2982,19 @@ function CDrawingDocument()
var
dKoef
=
(
this
.
m_oWordControl
.
m_nZoomValue
*
g_dKoef_mm_to_pix
/
100
);
var
_x
=
this
.
m_oWordControl
.
X
;
var
_y
=
this
.
m_oWordControl
.
Y
;
var
_x
=
0
;
var
_y
=
0
;
if
(
isGlobal
)
{
_x
=
this
.
m_oWordControl
.
X
;
_y
=
this
.
m_oWordControl
.
Y
;
if
(
true
==
this
.
m_oWordControl
.
m_bIsRuler
)
{
_x
+=
5
*
g_dKoef_mm_to_pix
;
_y
+=
7
*
g_dKoef_mm_to_pix
;
}
}
var
x_pix
=
(
this
.
m_arrPages
[
pageIndex
].
drawingPage
.
left
+
x
*
dKoef
+
_x
+
0.5
)
>>
0
;
var
y_pix
=
(
this
.
m_arrPages
[
pageIndex
].
drawingPage
.
top
+
y
*
dKoef
+
_y
+
0.5
)
>>
0
;
...
...
word/Drawing/HtmlPage.js
View file @
95cb8f9c
...
...
@@ -445,7 +445,7 @@ function CEditorPage(api)
if
(
this
.
m_oApi
.
isMobileVersion
)
{
this
.
MobileTouchManager
=
new
AscCommon
.
CMobileTouchManager
({});
this
.
MobileTouchManager
.
Init
(
this
);
this
.
MobileTouchManager
.
Init
(
this
.
m_oApi
);
}
this
.
checkNeedRules
();
...
...
word/Drawing/mobileTouchManager.js
View file @
95cb8f9c
...
...
@@ -56,7 +56,7 @@
// создаем делегата. инициализация его - ПОСЛЕ создания iScroll
this
.
delegate
=
new
AscCommon
.
CMobileDelegateEditor
(
this
);
var
_element
=
this
.
delegate
.
GetScrollerParent
();
this
.
CreateScrollerDiv
(
_element
,
"
mobile_scroller_id
"
);
this
.
CreateScrollerDiv
(
_element
);
this
.
iScroll
=
new
window
.
IScroll
(
_element
,
{
scrollbars
:
true
,
...
...
@@ -65,7 +65,7 @@
shrinkScrollbars
:
'
scale
'
,
fadeScrollbars
:
true
,
scrollX
:
true
,
scroller_id
:
"
mobile_scroller_id
"
,
scroller_id
:
this
.
iScrollElement
,
bounce
:
false
});
...
...
@@ -112,6 +112,26 @@
this
.
Mode
=
AscCommon
.
MobileTouchMode
.
Zoom
;
}
// если не используем этот моус даун - то уменьшаем количество кликов
switch
(
this
.
Mode
)
{
case
AscCommon
.
MobileTouchMode
.
None
:
case
AscCommon
.
MobileTouchMode
.
Scroll
:
case
AscCommon
.
MobileTouchMode
.
InlineObj
:
case
AscCommon
.
MobileTouchMode
.
FlowObj
:
case
AscCommon
.
MobileTouchMode
.
Zoom
:
case
AscCommon
.
MobileTouchMode
.
Cursor
:
case
AscCommon
.
MobileTouchMode
.
TableMove
:
{
// так как был уже check, нужно уменьшить количество кликов
if
(
global_mouseEvent
.
ClickCount
>
0
)
global_mouseEvent
.
ClickCount
--
;
break
;
}
default
:
break
;
}
switch
(
this
.
Mode
)
{
case
AscCommon
.
MobileTouchMode
.
None
:
...
...
@@ -192,10 +212,6 @@
}
case
AscCommon
.
MobileTouchMode
.
FlowObj
:
{
// так как был уже check, нужно уменьшить количество кликов
if
(
global_mouseEvent
.
ClickCount
>
0
)
global_mouseEvent
.
ClickCount
--
;
if
(
bIsKoefPixToMM
)
{
global_mouseEvent
.
KoefPixToMM
=
5
;
...
...
@@ -206,7 +222,7 @@
}
case
AscCommon
.
MobileTouchMode
.
Zoom
:
{
this
.
HtmlPage
.
NoneRepaintPages
=
true
;
this
.
delegate
.
HtmlPage
.
NoneRepaintPages
=
true
;
var
_x1
=
(
e
.
touches
[
0
].
pageX
!==
undefined
)
?
e
.
touches
[
0
].
pageX
:
e
.
touches
[
0
].
clientX
;
var
_y1
=
(
e
.
touches
[
0
].
pageY
!==
undefined
)
?
e
.
touches
[
0
].
pageY
:
e
.
touches
[
0
].
clientY
;
...
...
@@ -227,15 +243,12 @@
}
case
AscCommon
.
MobileTouchMode
.
TableMove
:
{
// так как был уже check, нужно уменьшить количество кликов
if
(
global_mouseEvent
.
ClickCount
>
0
)
global_mouseEvent
.
ClickCount
--
;
this
.
delegate
.
Drawing_OnMouseDown
(
e
.
touches
?
e
.
touches
[
0
]
:
e
);
break
;
}
case
AscCommon
.
MobileTouchMode
.
TableRuler
:
{
this
.
HtmlPage
.
OnUpdateOverlay
();
this
.
delegate
.
HtmlPage
.
OnUpdateOverlay
();
break
;
}
}
...
...
@@ -251,7 +264,7 @@
};
CMobileTouchManager
.
prototype
.
onTouchMove
=
function
(
e
)
{
if
(
null
!=
this
.
delegate
.
IsReader
())
if
(
this
.
delegate
.
IsReader
())
return
this
.
onTouchMove_renderer
(
e
);
if
(
this
.
Mode
!=
AscCommon
.
MobileTouchMode
.
FlowObj
&&
this
.
Mode
!=
AscCommon
.
MobileTouchMode
.
TableMove
)
...
...
@@ -409,12 +422,13 @@
{
this
.
IsTouching
=
false
;
if
(
null
!=
this
.
delegate
.
IsReader
())
if
(
this
.
delegate
.
IsReader
())
return
this
.
onTouchEnd_renderer
(
e
);
var
_e
=
e
.
changedTouches
?
e
.
changedTouches
[
0
]
:
e
;
if
(
this
.
Mode
!=
AscCommon
.
MobileTouchMode
.
FlowObj
&&
this
.
Mode
!=
AscCommon
.
MobileTouchMode
.
TableMove
)
{
AscCommon
.
check_MouseUpEvent
(
e
.
changedTouches
?
e
.
changedTouches
[
0
]
:
e
);
AscCommon
.
check_MouseUpEvent
(
_
e
);
}
var
isCheckContextMenuMode
=
true
;
...
...
@@ -432,7 +446,8 @@
if
(
!
this
.
MoveAfterDown
)
{
global_mouseEvent
.
Button
=
0
;
this
.
MoveCursorToPoint
(
false
);
this
.
delegate
.
Drawing_OnMouseDown
(
_e
);
this
.
delegate
.
Drawing_OnMouseUp
(
_e
);
this
.
Api
.
sendEvent
(
"
asc_onTapEvent
"
,
e
);
}
else
...
...
@@ -565,7 +580,7 @@
var
_markup
=
HtmlPage
.
m_oHorRuler
.
m_oTableMarkup
;
_markup
.
Rows
[
this
.
TableCurrentMovePos
].
H
+=
(
this
.
TableCurrentMoveValue
-
this
.
TableCurrentMoveValueOld
);
if
(
false
===
this
.
HtmlPage
.
m_oLogicDocument
.
Document_Is_SelectionLocked
(
AscCommon
.
changestype_Table_Properties
)
)
if
(
false
===
this
.
delegate
.
HtmlPage
.
m_oLogicDocument
.
Document_Is_SelectionLocked
(
AscCommon
.
changestype_Table_Properties
)
)
{
HtmlPage
.
m_oLogicDocument
.
Create_NewHistoryPoint
(
AscDFH
.
historydescription_Document_SetTableMarkup_Hor
);
_markup
.
Table
.
Update_TableMarkupFromRuler
(
_markup
,
false
,
this
.
TableCurrentMovePos
+
1
);
...
...
word/api.js
View file @
95cb8f9c
...
...
@@ -822,7 +822,7 @@ background-repeat: no-repeat;\
this
.
WordControl
.
m_oLogicDocument
.
TurnOff_CheckSpelling
();
if
(
this
.
WordControl
.
MobileTouchManager
)
this
.
WordControl
.
MobileTouchManager
.
LogicDocument
=
this
.
WordControl
.
m_oLogicDocument
;
this
.
WordControl
.
MobileTouchManager
.
delegate
.
LogicDocument
=
this
.
WordControl
.
m_oLogicDocument
;
};
asc_docs_api
.
prototype
.
InitViewer
=
function
()
...
...
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