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
625c45a3
Commit
625c45a3
authored
Jul 29, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #32833
parent
4365cbbc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
27 deletions
+81
-27
word/Editor/Document.js
word/Editor/Document.js
+65
-27
word/Editor/DocumentContent.js
word/Editor/DocumentContent.js
+13
-0
word/Editor/Paragraph.js
word/Editor/Paragraph.js
+3
-0
No files found.
word/Editor/Document.js
View file @
625c45a3
...
...
@@ -1359,6 +1359,7 @@ function CDocument(DrawingDocument, isMainLogicDocument)
Flag
:
selectionflag_Common
,
Data
:
null
,
UpdateOnRecalc
:
false
,
WordSelected
:
false
,
DragDrop
:
{
Flag
:
0
,
Data
:
null
}
// 0 - не drag-n-drop, и мы его проверяем, 1 - drag-n-drop, -1 - не проверять drag-n-drop
};
...
...
@@ -1589,6 +1590,7 @@ CDocument.prototype.Set_CurrentElement = function(Index, bUpdateStat
this
.
Set_DocPosType
(
docpostype_Content
);
this
.
CurPos
.
ContentPos
=
Math
.
max
(
0
,
Math
.
min
(
this
.
Content
.
length
-
1
,
Index
));
this
.
Reset_WordSelection
();
if
(
true
===
this
.
Content
[
ContentPos
].
Is_SelectionUse
())
{
this
.
Selection
.
Flag
=
selectionflag_Common
;
...
...
@@ -4107,6 +4109,7 @@ CDocument.prototype.Cursor_GetPos = function()
};
CDocument
.
prototype
.
Cursor_MoveToStartPos
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToStartPos
(
AddToSelect
);
...
...
@@ -4115,6 +4118,7 @@ CDocument.prototype.Cursor_MoveToStartPos = function(AddToSelect)
};
CDocument
.
prototype
.
Cursor_MoveToEndPos
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToEndPos
(
AddToSelect
);
...
...
@@ -4123,6 +4127,7 @@ CDocument.prototype.Cursor_MoveToEndPos = function(AddToSelect)
};
CDocument
.
prototype
.
Cursor_MoveLeft
=
function
(
AddToSelect
,
Word
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
if
(
undefined
===
Word
||
null
===
Word
)
...
...
@@ -4136,6 +4141,7 @@ CDocument.prototype.Cursor_MoveLeft = function(AddToSelect, Word)
};
CDocument
.
prototype
.
Cursor_MoveRight
=
function
(
AddToSelect
,
Word
,
FromPaste
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
if
(
undefined
===
Word
||
null
===
Word
)
...
...
@@ -4149,16 +4155,19 @@ CDocument.prototype.Cursor_MoveRight = function(AddToSelect, Word, FromPaste)
};
CDocument
.
prototype
.
Cursor_MoveUp
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorUp
(
AddToSelect
);
};
CDocument
.
prototype
.
Cursor_MoveDown
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorDown
(
AddToSelect
);
};
CDocument
.
prototype
.
Cursor_MoveEndOfLine
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToEndOfLine
(
AddToSelect
);
...
...
@@ -4168,6 +4177,7 @@ CDocument.prototype.Cursor_MoveEndOfLine = function(AddToSelect)
};
CDocument
.
prototype
.
Cursor_MoveStartOfLine
=
function
(
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToStartOfLine
(
AddToSelect
);
...
...
@@ -4177,11 +4187,13 @@ CDocument.prototype.Cursor_MoveStartOfLine = function(AddToSelect)
};
CDocument
.
prototype
.
Cursor_MoveAt
=
function
(
X
,
Y
,
AddToSelect
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToXY
(
X
,
Y
,
this
.
CurPage
,
AddToSelect
);
};
CDocument
.
prototype
.
Cursor_MoveToCell
=
function
(
bNext
)
{
this
.
Reset_WordSelection
();
this
.
private_UpdateTargetForCollaboration
();
this
.
Controller
.
MoveCursorToCell
(
bNext
);
};
...
...
@@ -4778,6 +4790,7 @@ CDocument.prototype.Internal_GetContentPosByXY = function(X, Y, PageNum, Columns
};
CDocument
.
prototype
.
Selection_Remove
=
function
(
bNoCheckDrawing
)
{
this
.
Reset_WordSelection
();
this
.
Controller
.
RemoveSelection
(
bNoCheckDrawing
);
};
CDocument
.
prototype
.
Selection_IsEmpty
=
function
(
bCheckHidden
)
...
...
@@ -4800,6 +4813,8 @@ CDocument.prototype.Selection_Clear = function()
};
CDocument
.
prototype
.
Selection_SetStart
=
function
(
X
,
Y
,
MouseEvent
)
{
this
.
Reset_WordSelection
();
var
bInText
=
(
null
===
this
.
Is_InText
(
X
,
Y
,
this
.
CurPage
)
?
false
:
true
);
var
bTableBorder
=
(
null
===
this
.
Is_TableBorder
(
X
,
Y
,
this
.
CurPage
)
?
false
:
true
);
var
nInDrawing
=
this
.
DrawingObjects
.
isPointInDrawingObjects
(
X
,
Y
,
this
.
CurPage
,
this
);
...
...
@@ -4987,6 +5002,8 @@ CDocument.prototype.Selection_SetStart = function(X, Y, MouseEvent)
*/
CDocument
.
prototype
.
Selection_SetEnd
=
function
(
X
,
Y
,
MouseEvent
)
{
this
.
Reset_WordSelection
();
// Работаем с колонтитулом
if
(
docpostype_HdrFtr
===
this
.
CurPos
.
Type
)
{
...
...
@@ -5292,6 +5309,7 @@ CDocument.prototype.Select_All = function()
{
this
.
private_UpdateTargetForCollaboration
();
this
.
Reset_WordSelection
();
this
.
Controller
.
SelectAll
();
// TODO: Пока делаем Start = true, чтобы при Ctrl+A не происходил переход к концу селекта, надо будет
...
...
@@ -9906,6 +9924,18 @@ CDocument.prototype.private_ProcessTemplateReplacement = function(TemplateReplac
this
.
SearchEngine
.
Replace_All
(
TemplateReplacementData
[
Id
],
false
);
}
};
CDocument
.
prototype
.
Reset_WordSelection
=
function
()
{
this
.
Selection
.
WordSelected
=
false
;
};
CDocument
.
prototype
.
Set_WordSelection
=
function
()
{
this
.
Selection
.
WordSelected
=
true
;
};
CDocument
.
prototype
.
Is_WordSelection
=
function
()
{
return
this
.
Selection
.
WordSelected
;
};
CDocument
.
prototype
.
Get_EditingType
=
function
()
{
return
this
.
EditingType
;
...
...
@@ -11640,6 +11670,8 @@ CDocument.prototype.controller_AddToParagraph = function(ParaItem, bRecalculate)
{
if
(
true
===
this
.
Selection
.
Use
)
{
var
bAddSpace
=
this
.
Is_WordSelection
();
var
Type
=
ParaItem
.
Get_Type
();
switch
(
Type
)
{
...
...
@@ -11658,6 +11690,12 @@ CDocument.prototype.controller_AddToParagraph = function(ParaItem, bRecalculate)
// Если у нас что-то заселекчено и мы вводим текст или пробел
// и т.д., тогда сначала удаляем весь селект.
this
.
Remove
(
1
,
true
,
false
,
true
);
if
(
true
===
bAddSpace
)
{
this
.
Paragraph_Add
(
new
ParaSpace
());
this
.
Cursor_MoveLeft
(
false
,
false
);
}
break
;
}
case
para_TextPr
:
...
...
word/Editor/DocumentContent.js
View file @
625c45a3
...
...
@@ -2546,6 +2546,7 @@ CDocumentContent.prototype.Paragraph_Add = function(ParaIte
{
if
(
true
===
this
.
Selection
.
Use
)
{
var
bAddSpace
=
this
.
LogicDocument
?
this
.
LogicDocument
.
Is_WordSelection
()
:
false
;
var
Type
=
ParaItem
.
Get_Type
();
switch
(
Type
)
{
...
...
@@ -2555,10 +2556,22 @@ CDocumentContent.prototype.Paragraph_Add = function(ParaIte
case
para_Space
:
case
para_Tab
:
case
para_PageNum
:
case
para_Field
:
case
para_FootnoteReference
:
case
para_FootnoteRef
:
case
para_Separator
:
case
para_ContinuationSeparator
:
{
// Если у нас что-то заселекчено и мы вводим текст или пробел
// и т.д., тогда сначала удаляем весь селект.
this
.
Remove
(
1
,
true
,
false
,
true
);
if
(
true
===
bAddSpace
)
{
this
.
Paragraph_Add
(
new
ParaSpace
());
this
.
Cursor_MoveLeft
(
false
,
false
);
}
break
;
}
case
para_TextPr
:
...
...
word/Editor/Paragraph.js
View file @
625c45a3
...
...
@@ -6221,6 +6221,9 @@ Paragraph.prototype =
this
.
Selection
.
Use
=
true
;
this
.
Set_SelectionContentPos
(
StartPos
,
EndPos
);
if
(
this
.
LogicDocument
)
this
.
LogicDocument
.
Set_WordSelection
();
}
else
// ( 1 == ClickCounter % 2 )
{
...
...
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