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
20f00f63
Commit
20f00f63
authored
Jan 17, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem with calculating spacing before paragraph.
parent
b4391d3b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
10 deletions
+52
-10
word/Editor/Document.js
word/Editor/Document.js
+13
-0
word/Editor/Paragraph_Recalculate.js
word/Editor/Paragraph_Recalculate.js
+39
-10
No files found.
word/Editor/Document.js
View file @
20f00f63
...
...
@@ -9385,6 +9385,19 @@ CDocument.prototype.GetCurrentSectionPr = function()
return
oSectPr
;
};
CDocument
.
prototype
.
GetFirstElementInSection
=
function
(
SectionIndex
)
{
if
(
SectionIndex
<=
0
)
return
this
.
Content
[
0
]
?
this
.
Content
[
0
]
:
null
;
var
nElementPos
=
this
.
SectionsInfo
.
Get_SectPr2
(
SectionIndex
-
1
).
Index
+
1
;
return
this
.
Content
[
nElementPos
]
?
this
.
Content
[
nElementPos
]
:
null
;
};
CDocument
.
prototype
.
GetSectionIndexByElementIndex
=
function
(
ElementIndex
)
{
return
this
.
SectionsInfo
.
Get_Index
(
ElementIndex
);
};
/**
* Определяем использовать ли заливку текста в особых случаях, когда вызывается заливка параграфа.
* @param bUse
...
...
word/Editor/Paragraph_Recalculate.js
View file @
20f00f63
...
...
@@ -38,8 +38,8 @@ var g_oTextMeasurer = AscCommon.g_oTextMeasurer;
// TODO: В колонтитулах быстрые пересчеты отключены. Надо реализовать.
/**
* Здесь мы пытаемся быстро пересчитать текущий параграф. Если быстрый пересчет срабатывает, тогда возвращаются
страницы,
* которые нужно перерисовать, в противном случае возвращается пустой массив.
* Здесь мы пытаемся быстро пересчитать текущий параграф. Если быстрый пересчет срабатывает, тогда возвращаются
*
страницы,
которые нужно перерисовать, в противном случае возвращается пустой массив.
* @returns {*}
*/
Paragraph
.
prototype
.
Recalculate_FastWholeParagraph
=
function
()
...
...
@@ -908,7 +908,7 @@ Paragraph.prototype.private_RecalculateLine = function(CurLine, CurPa
//-------------------------------------------------------------------------------------------------------------
// 2. Проверяем, является ли данная строка висячей
//-------------------------------------------------------------------------------------------------------------
if
(
false
===
this
.
private_RecalculateLineWidow
(
CurLine
,
CurPage
,
PRS
,
ParaPr
))
if
(
false
===
this
.
private_RecalculateLineWidow
(
CurLine
,
CurPage
,
PRS
,
ParaPr
))
return
;
//-------------------------------------------------------------------------------------------------------------
...
...
@@ -1201,7 +1201,7 @@ Paragraph.prototype.private_RecalculateLinePosition = function(CurLine, CurPa
if
(
0
===
CurLine
)
{
// Добавляем расстояние до параграфа (Pr.Spacing.Before)
if
(
0
===
CurPage
||
true
===
this
.
Parent
.
Is_TableCellContent
()
||
true
===
ParaPr
.
PageBreakBefore
)
if
(
this
.
private_CheckNeedBeforeSpacing
(
CurPage
,
PRS
)
)
BaseLineOffset
+=
ParaPr
.
Spacing
.
Before
;
// Добавляем толщину границы параграфа (если граница задана)
...
...
@@ -1213,8 +1213,13 @@ Paragraph.prototype.private_RecalculateLinePosition = function(CurLine, CurPa
PRS
.
BaseLineOffset
=
BaseLineOffset
;
}
else
{
if
(
this
.
Lines
[
CurLine
].
Info
&
paralineinfo_RangeY
)
PRS
.
BaseLineOffset
=
this
.
Lines
[
CurLine
].
Metrics
.
Ascent
;
else
BaseLineOffset
=
PRS
.
BaseLineOffset
;
}
var
Top
,
Bottom
;
var
Top2
,
Bottom2
;
// верх и низ без Pr.Spacing
...
...
@@ -1228,7 +1233,7 @@ Paragraph.prototype.private_RecalculateLinePosition = function(CurLine, CurPa
if
(
0
===
CurLine
)
{
if
(
0
===
CurPage
||
true
===
this
.
Parent
.
Is_TableCellContent
()
)
if
(
this
.
private_CheckNeedBeforeSpacing
(
CurPage
,
PRS
)
)
{
Top2
=
Top
+
ParaPr
.
Spacing
.
Before
;
Bottom2
=
Top
+
ParaPr
.
Spacing
.
Before
+
this
.
Lines
[
0
].
Metrics
.
Ascent
+
this
.
Lines
[
0
].
Metrics
.
Descent
;
...
...
@@ -1283,7 +1288,7 @@ Paragraph.prototype.private_RecalculateLinePosition = function(CurLine, CurPa
Top
=
PRS
.
Y
;
Top2
=
PRS
.
Y
;
if
(
0
===
CurPage
||
true
===
this
.
Parent
.
Is_TableCellContent
()
||
true
===
ParaPr
.
PageBreakBefore
)
if
(
this
.
private_CheckNeedBeforeSpacing
(
CurPage
,
PRS
)
)
{
Top2
=
Top
+
ParaPr
.
Spacing
.
Before
;
Bottom2
=
Top
+
ParaPr
.
Spacing
.
Before
+
this
.
Lines
[
0
].
Metrics
.
Ascent
+
this
.
Lines
[
0
].
Metrics
.
Descent
;
...
...
@@ -1458,7 +1463,6 @@ Paragraph.prototype.private_RecalculateLineBaseLine = function(CurLine, CurPa
if
(
this
.
Lines
[
CurLine
].
Info
&
paralineinfo_RangeY
)
{
this
.
Lines
[
CurLine
].
Y
=
PRS
.
Y
-
this
.
Pages
[
CurPage
].
Y
;
PRS
.
BaseLineOffset
=
this
.
Lines
[
CurLine
].
Metrics
.
Ascent
;
}
else
{
...
...
@@ -2145,6 +2149,31 @@ Paragraph.prototype.private_RecalculateMoveLineToNextPage = function(CurLine, Cu
}
};
Paragraph
.
prototype
.
private_CheckNeedBeforeSpacing
=
function
(
CurPage
,
PRS
)
{
if
(
CurPage
<=
0
)
return
true
;
if
(
!
this
.
Check_FirstPage
(
CurPage
))
return
false
;
if
(
!
(
PRS
.
Parent
instanceof
CDocument
))
return
true
;
// Если дошли до этого места, то тут все зависит от того на какой мы странице. Если на первой странице данной секции
// тогда добавляем расстояние, а если нет - нет. Но подсчет первой страницы здесь не совпадает с тем, как она
// считается для нумерации. Если разрыв секции идет на текущей странице, то первой считается сразу данная страница.
var
LogicDocument
=
PRS
.
Parent
;
var
SectionIndex
=
LogicDocument
.
GetSectionIndexByElementIndex
(
this
.
Get_Index
());
var
FirstElement
=
LogicDocument
.
GetFirstElementInSection
(
SectionIndex
);
if
(
!
FirstElement
||
FirstElement
.
Get_AbsolutePage
(
0
)
===
PRS
.
GetPageAbs
())
return
true
;
return
false
;
};
var
ERecalcPageType
=
{
START
:
0x00
,
// начать заново пересчет, с начала страницы
...
...
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