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
05b4fa7c
Commit
05b4fa7c
authored
Sep 13, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handled the situation when a footnote must be moved to the next page.
parent
5f60818c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
65 deletions
+70
-65
word/Editor/Footnotes.js
word/Editor/Footnotes.js
+2
-0
word/Editor/Paragraph_Recalculate.js
word/Editor/Paragraph_Recalculate.js
+68
-65
No files found.
word/Editor/Footnotes.js
View file @
05b4fa7c
...
...
@@ -306,6 +306,8 @@ CFootnotesController.prototype.RecalculateFootnotes = function(nPageAbs, nColumn
break
;
}
oColumn
.
Height
=
Math
.
min
(
_YLimit
,
oColumn
.
Height
);
return
true
;
};
/**
...
...
word/Editor/Paragraph_Recalculate.js
View file @
05b4fa7c
...
...
@@ -970,7 +970,7 @@ Paragraph.prototype.private_RecalculateLine = function(CurLine, CurPa
//-------------------------------------------------------------------------------------------------------------
// 14. Проверяем Последние проверки
//-------------------------------------------------------------------------------------------------------------
if
(
false
===
this
.
private_RecalculateLineCheckFootnotes
(
CurLine
,
CurPage
,
PRS
))
if
(
false
===
this
.
private_RecalculateLineCheckFootnotes
(
CurLine
,
CurPage
,
PRS
,
ParaPr
))
return
;
};
...
...
@@ -1388,63 +1388,9 @@ Paragraph.prototype.private_RecalculateLineBottomBound = function(CurLine, CurPa
// Перенос не делаем, если это первая строка на новой странице
if
(
true
===
this
.
Use_YLimit
()
&&
(
Top
>
YLimit
||
Bottom2
>
YLimit
)
&&
(
CurLine
!=
this
.
Pages
[
CurPage
].
FirstLine
||
false
===
bNoFootnotes
||
(
0
===
RealCurPage
&&
(
null
!=
this
.
Get_DocumentPrev
()
||
(
true
===
this
.
Parent
.
Is_TableCellContent
()
&&
true
!==
this
.
Parent
.
Is_TableFirstRowOnNewPage
()))))
&&
false
===
BreakPageLineEmpty
)
{
// TODO: Неразрывные абзацы и висячие строки внутри колонок вместе с плавающими объектами пока не обсчитываем
var
bSkipWidowAndKeepLines
=
this
.
private_CheckSkipKeepLinesAndWidowControl
(
CurPage
);
// Проверим висячую строку
if
(
this
.
Parent
instanceof
CDocument
&&
false
===
bSkipWidowAndKeepLines
&&
true
===
this
.
Parent
.
RecalcInfo
.
Can_RecalcWidowControl
()
&&
true
===
ParaPr
.
WidowControl
&&
CurLine
-
this
.
Pages
[
CurPage
].
StartLine
<=
1
&&
CurLine
>=
1
&&
true
!=
PRS
.
BreakPageLine
&&
(
0
===
CurPage
&&
null
!=
this
.
Get_DocumentPrev
()
)
)
{
// Вызываем данную функцию для удаления картинок с предыдущей страницы
this
.
Recalculate_Drawing_AddPageBreak
(
0
,
0
,
true
);
// TODO: Здесь перенос нужно делать сразу же, если в строке не было объектов с обтеканием
this
.
Parent
.
RecalcInfo
.
Set_WidowControl
(
this
,
CurLine
-
1
);
PRS
.
RecalcResult
=
recalcresult_CurPage
|
recalcresultflags_Column
;
this
.
private_RecalculateMoveLineToNextPage
(
CurLine
,
CurPage
,
PRS
,
ParaPr
);
return
false
;
}
else
{
// Учитываем неразрывные абзацы:
// 1. В Word2010 (версия <= 14) просто проверяем, если параграф разбивается на 2 страницы, тогда
// переносим его с новой страницы. Также не учитываем неразрывные параграфы внутри таблиц.
// 2. В Word2016 (версия >= 15) в добавок к предыдущему ориентируемся на колонки: пытаемся текущую
// страницу параграфа разместить в какой либо колонке (пересчитывая их по очереди), если параграф
// все равно не рассчитан до конца, тогда размещаем его в первой колонке и делаем перенос на следующую
// страницу.
if
(
true
===
ParaPr
.
KeepLines
&&
this
.
LogicDocument
&&
false
===
bSkipWidowAndKeepLines
)
{
var
CompatibilityMode
=
this
.
LogicDocument
.
Get_CompatibilityMode
();
if
(
CompatibilityMode
<=
document_compatibility_mode_Word14
)
{
if
(
null
!=
this
.
Get_DocumentPrev
()
&&
true
!=
this
.
Parent
.
Is_TableCellContent
()
&&
0
===
CurPage
)
CurLine
=
0
;
}
else
if
(
CompatibilityMode
>=
document_compatibility_mode_Word15
)
{
// TODO: Разобраться с 2016 вордом
if
(
null
!=
this
.
Get_DocumentPrev
()
&&
0
===
CurPage
)
CurLine
=
0
;
}
}
// Восстанавливаем позицию нижней границы предыдущей страницы
this
.
Pages
[
CurPage
].
Bounds
.
Bottom
=
PRS
.
LinePrevBottom
;
this
.
Pages
[
CurPage
].
Set_EndLine
(
CurLine
-
1
);
if
(
0
===
CurLine
)
this
.
Lines
[
-
1
]
=
new
CParaLine
(
0
);
// Добавляем разрыв страницы
PRS
.
RecalcResult
=
recalcresult_NextPage
;
return
false
;
}
}
return
true
;
};
...
...
@@ -1866,7 +1812,7 @@ Paragraph.prototype.private_RecalculateLineAlign = function(CurLine, CurPa
return
PRSA
.
RecalcResult
;
};
Paragraph
.
prototype
.
private_RecalculateLineCheckFootnotes
=
function
(
CurLine
,
CurPage
,
PRS
)
Paragraph
.
prototype
.
private_RecalculateLineCheckFootnotes
=
function
(
CurLine
,
CurPage
,
PRS
,
ParaPr
)
{
if
(
!
((
PRS
.
RecalcResult
&
recalcresult_NextElement
)
||
(
PRS
.
RecalcResult
&
recalcresult_NextLine
)))
return
false
;
...
...
@@ -1890,13 +1836,10 @@ Paragraph.prototype.private_RecalculateLineCheckFootnotes = function(CurLine, Cu
if
(
oTopDocument
instanceof
CDocument
)
{
if
(
oTopDocument
.
Footnotes
.
RecalculateFootnotes
(
PRS
.
PageAbs
,
PRS
.
ColumnAbs
,
this
.
Pages
[
CurPage
].
Y
+
this
.
Lines
[
CurLine
].
Bottom
,
arrFootnotes
))
if
(
!
oTopDocument
.
Footnotes
.
RecalculateFootnotes
(
PRS
.
PageAbs
,
PRS
.
ColumnAbs
,
this
.
Pages
[
CurPage
].
Y
+
this
.
Lines
[
CurLine
].
Bottom
,
arrFootnotes
))
{
// Все нормально
}
else
{
console
.
log
(
"
Данную строчку нужно перенести на новую строку
"
);
this
.
private_RecalculateMoveLineToNextPage
(
CurLine
,
CurPage
,
PRS
,
ParaPr
);
return
false
;
}
}
...
...
@@ -2130,6 +2073,66 @@ Paragraph.prototype.private_CheckColumnBreak = function(CurPage)
}
};
Paragraph
.
prototype
.
private_RecalculateMoveLineToNextPage
=
function
(
CurLine
,
CurPage
,
PRS
,
ParaPr
)
{
// TODO: Неразрывные абзацы и висячие строки внутри колонок вместе с плавающими объектами пока не обсчитываем
var
bSkipWidowAndKeepLines
=
this
.
private_CheckSkipKeepLinesAndWidowControl
(
CurPage
);
// Проверим висячую строку
if
(
this
.
Parent
instanceof
CDocument
&&
false
===
bSkipWidowAndKeepLines
&&
true
===
this
.
Parent
.
RecalcInfo
.
Can_RecalcWidowControl
()
&&
true
===
ParaPr
.
WidowControl
&&
CurLine
-
this
.
Pages
[
CurPage
].
StartLine
<=
1
&&
CurLine
>=
1
&&
true
!=
PRS
.
BreakPageLine
&&
(
0
===
CurPage
&&
null
!=
this
.
Get_DocumentPrev
()
)
)
{
// Вызываем данную функцию для удаления картинок с предыдущей страницы
this
.
Recalculate_Drawing_AddPageBreak
(
0
,
0
,
true
);
// TODO: Здесь перенос нужно делать сразу же, если в строке не было объектов с обтеканием
this
.
Parent
.
RecalcInfo
.
Set_WidowControl
(
this
,
CurLine
-
1
);
PRS
.
RecalcResult
=
recalcresult_CurPage
|
recalcresultflags_Column
;
return
false
;
}
else
{
// Учитываем неразрывные абзацы:
// 1. В Word2010 (версия <= 14) просто проверяем, если параграф разбивается на 2 страницы, тогда
// переносим его с новой страницы. Также не учитываем неразрывные параграфы внутри таблиц.
// 2. В Word2016 (версия >= 15) в добавок к предыдущему ориентируемся на колонки: пытаемся текущую
// страницу параграфа разместить в какой либо колонке (пересчитывая их по очереди), если параграф
// все равно не рассчитан до конца, тогда размещаем его в первой колонке и делаем перенос на следующую
// страницу.
if
(
true
===
ParaPr
.
KeepLines
&&
this
.
LogicDocument
&&
false
===
bSkipWidowAndKeepLines
)
{
var
CompatibilityMode
=
this
.
LogicDocument
.
Get_CompatibilityMode
();
if
(
CompatibilityMode
<=
document_compatibility_mode_Word14
)
{
if
(
null
!=
this
.
Get_DocumentPrev
()
&&
true
!=
this
.
Parent
.
Is_TableCellContent
()
&&
0
===
CurPage
)
CurLine
=
0
;
}
else
if
(
CompatibilityMode
>=
document_compatibility_mode_Word15
)
{
// TODO: Разобраться с 2016 вордом
if
(
null
!=
this
.
Get_DocumentPrev
()
&&
0
===
CurPage
)
CurLine
=
0
;
}
}
// Восстанавливаем позицию нижней границы предыдущей страницы
this
.
Pages
[
CurPage
].
Bounds
.
Bottom
=
PRS
.
LinePrevBottom
;
this
.
Pages
[
CurPage
].
Set_EndLine
(
CurLine
-
1
);
if
(
0
===
CurLine
)
this
.
Lines
[
-
1
]
=
new
CParaLine
(
0
);
// Добавляем разрыв страницы
PRS
.
RecalcResult
=
recalcresult_NextPage
;
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