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
9c979e7b
Commit
9c979e7b
authored
Apr 12, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Добавлено объединение ячеек в билдер.
parent
a478385d
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
358 additions
and
62 deletions
+358
-62
word/Editor/Document.js
word/Editor/Document.js
+6
-0
word/Editor/Sections.js
word/Editor/Sections.js
+27
-24
word/Editor/Table.js
word/Editor/Table.js
+44
-22
word/apiBuilder.js
word/apiBuilder.js
+281
-16
No files found.
word/Editor/Document.js
View file @
9c979e7b
...
...
@@ -11216,6 +11216,12 @@ CDocument.prototype =
bUpdateSelection
=
false
;
bRetValue
=
keydownresult_PreventAll
;
}
else
if
(
e
.
KeyCode
===
113
)
{
// Для теста
TEST_BUILDER
();
bRetValue
=
keydownresult_PreventAll
;
}
else
if
(
e
.
KeyCode
==
121
&&
true
===
e
.
ShiftKey
)
// Shift + F10 - контекстное меню
{
var
X_abs
,
Y_abs
,
oPosition
,
ConvertedPos
;
...
...
word/Editor/Sections.js
View file @
9c979e7b
...
...
@@ -86,6 +86,9 @@ CSectionPr.prototype =
Copy
:
function
(
Other
,
CopyHdrFtr
)
{
if
(
!
Other
)
return
;
// Тип
this
.
Set_Type
(
Other
.
Type
);
...
...
word/Editor/Table.js
View file @
9c979e7b
...
...
@@ -9770,18 +9770,21 @@ CTable.prototype =
return
{
Grid_start
:
Grid_start
,
Grid_end
:
Grid_end
,
RowsInfo
:
RowsInfo
,
bCanMerge
:
bCanMerge
};
},
// Объединяем заселекченные ячейки
Cell_Merge
:
function
()
/**
* Объединяем выделенные ячейки таблицы.
* @param isClearMerge - используем или нет рассчетные данные (true - не используем, false - default value)
*/
Cell_Merge
:
function
(
isClearMerge
)
{
var
bApplyToInnerTable
=
false
;
if
(
false
===
this
.
Selection
.
Use
||
(
true
===
this
.
Selection
.
Use
&&
table_Selection_Text
===
this
.
Selection
.
Type
)
)
bApplyToInnerTable
=
this
.
CurCell
.
Content
.
Table_MergeCells
();
if
(
true
===
bApplyToInnerTable
)
return
;
return
false
;
if
(
true
!=
this
.
Selection
.
Use
||
table_Selection_Cell
!=
this
.
Selection
.
Type
||
this
.
Selection
.
Data
.
length
<=
1
)
return
;
return
false
;
// В массиве this.Selection.Data идет список ячеек по строкам (без разрывов)
// Перед объединением мы должны проверить совпадают ли начальная и конечная колонки
...
...
@@ -9793,7 +9796,7 @@ CTable.prototype =
var
RowsInfo
=
Temp
.
RowsInfo
;
if
(
false
===
bCanMerge
)
return
;
return
false
;
// Объединяем содержимое всех ячеек в левую верхнюю ячейку. (Все выделенные
// ячейки идут у нас последовательно, начиная с левой верхней), и объединяем
...
...
@@ -9816,6 +9819,8 @@ CTable.prototype =
}
}
if
(
true
!==
isClearMerge
)
{
// Выставим ширину результируещей ячейки
var
SumW
=
0
;
for
(
var
CurGridCol
=
Grid_start
;
CurGridCol
<=
Grid_end
;
CurGridCol
++
)
...
...
@@ -9823,6 +9828,7 @@ CTable.prototype =
SumW
+=
this
.
TableGridCalc
[
CurGridCol
];
}
Cell_tl
.
Set_W
(
new
CTableMeasurement
(
tblwidth_Mm
,
SumW
));
}
// Теперь нам надо удалить лишние ячейки и добавить ячейки с
// вертикальным объединением.
...
...
@@ -9856,16 +9862,9 @@ CTable.prototype =
}
}
// У ряда, который содержит полученную ячейку мы выставляем минимальную высоту
// сумму высот объединенных строк.
//var Summary_VMerge = this.Internal_GetVertMergeCount( Pos_tl.Row, Grid_start, Grid_end - Grid_start + 1 );
//var Summary_Height = this.RowsInfo[Pos_tl.Row + Summary_VMerge - 1].H + this.RowsInfo[Pos_tl.Row + Summary_VMerge - 1].Y - this.RowsInfo[Pos_tl.Row].Y;
// Удаляем лишние строки
this
.
Internal_Check_TableRows
(
true
);
var
PageNum
=
0
;
for
(
PageNum
=
0
;
PageNum
<
this
.
Pages
.
length
-
1
;
PageNum
++
)
this
.
Internal_Check_TableRows
(
true
!==
isClearMerge
?
true
:
false
);
for
(
var
PageNum
=
0
;
PageNum
<
this
.
Pages
.
length
-
1
;
PageNum
++
)
{
if
(
Pos_tl
.
Row
<=
this
.
Pages
[
PageNum
+
1
].
FirstRow
)
break
;
...
...
@@ -9880,8 +9879,13 @@ CTable.prototype =
this
.
CurCell
=
Cell_tl
;
if
(
true
!==
isClearMerge
)
{
// Запускаем пересчет
this
.
Internal_Recalculate_1
();
}
return
true
;
},
// Разделяем текущую ячейку
...
...
@@ -13316,6 +13320,24 @@ CTable.prototype.Is_TableFirstRowOnNewPage = function(CurRow)
return
false
;
};
CTable
.
prototype
.
private_UpdateCellsGrid
=
function
()
{
for
(
var
nCurRow
=
0
,
nRowsCount
=
this
.
Content
.
length
;
nCurRow
<
nRowsCount
;
++
nCurRow
)
{
var
Row
=
this
.
Content
[
nCurRow
];
var
BeforeInfo
=
Row
.
Get_Before
();
var
CurGridCol
=
BeforeInfo
.
GridBefore
;
for
(
var
nCurCell
=
0
,
nCellsCount
=
Row
.
Get_CellsCount
();
nCurCell
<
nCellsCount
;
++
nCurCell
)
{
var
Cell
=
Row
.
Get_Cell
(
nCurCell
);
var
GridSpan
=
Cell
.
Get_GridSpan
();
Cell
.
Set_Metrics
(
CurGridCol
,
0
,
0
,
0
,
0
,
0
,
0
);
Row
.
Update_CellInfo
(
nCurCell
);
CurGridCol
+=
GridSpan
;
}
}
};
//----------------------------------------------------------------------------------------------------------------------
// Класс CTableLook
//----------------------------------------------------------------------------------------------------------------------
...
...
word/apiBuilder.js
View file @
9c979e7b
This diff is collapsed.
Click to expand it.
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