5075 lines
178 KiB
JavaScript
5075 lines
178 KiB
JavaScript
|
/*
|
|||
|
* (c) Copyright Ascensio System SIA 2010-2014
|
|||
|
*
|
|||
|
* This program is a free software product. You can redistribute it and/or
|
|||
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|||
|
* version 3 as published by the Free Software Foundation. In accordance with
|
|||
|
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
|||
|
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
|||
|
* of any third-party rights.
|
|||
|
*
|
|||
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|||
|
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
|||
|
*
|
|||
|
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
|||
|
* EU, LV-1021.
|
|||
|
*
|
|||
|
* The interactive user interfaces in modified source and object code versions
|
|||
|
* of the Program must display Appropriate Legal Notices, as required under
|
|||
|
* Section 5 of the GNU AGPL version 3.
|
|||
|
*
|
|||
|
* Pursuant to Section 7(b) of the License you must retain the original Product
|
|||
|
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
|||
|
* grant you any rights under trademark law for use of our trademarks.
|
|||
|
*
|
|||
|
* All the Product's GUI elements, including illustrations and icon sets, as
|
|||
|
* well as technical writing content are licensed under the terms of the
|
|||
|
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
|||
|
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|||
|
*
|
|||
|
*/
|
|||
|
var Default_Tab_Stop = 12.5;
|
|||
|
var Default_Heading_Font = "Arial";
|
|||
|
var styles_Paragraph = 1;
|
|||
|
var styles_Numbering = 2;
|
|||
|
var styles_Table = 3;
|
|||
|
var styles_Character = 4;
|
|||
|
var tblwidth_Auto = 0;
|
|||
|
var tblwidth_Mm = 1;
|
|||
|
var tblwidth_Nil = 2;
|
|||
|
var tblwidth_Pct = 3;
|
|||
|
var tbllayout_Fixed = 0;
|
|||
|
var tbllayout_AutoFit = 1;
|
|||
|
var align_Right = 0;
|
|||
|
var align_Left = 1;
|
|||
|
var align_Center = 2;
|
|||
|
var align_Justify = 3;
|
|||
|
var vertalign_Baseline = 0;
|
|||
|
var vertalign_SuperScript = 1;
|
|||
|
var vertalign_SubScript = 2;
|
|||
|
var highlight_None = -1;
|
|||
|
var shd_Clear = 0;
|
|||
|
var shd_Nil = 1;
|
|||
|
var smallcaps_Koef = 0.8;
|
|||
|
var vertalign_Koef_Size = 0.65;
|
|||
|
var vertalign_Koef_Super = 0.35;
|
|||
|
var vertalign_Koef_Sub = -0.141;
|
|||
|
var g_dKoef_pt_to_mm = 25.4 / 72;
|
|||
|
var g_dKoef_pc_to_mm = g_dKoef_pt_to_mm / 12;
|
|||
|
var g_dKoef_in_to_mm = 25.4;
|
|||
|
var g_dKoef_mm_to_pt = 1 / g_dKoef_pt_to_mm;
|
|||
|
var tblwidth_Auto = 0;
|
|||
|
var tblwidth_Mm = 1;
|
|||
|
var tblwidth_Nil = 2;
|
|||
|
var tblwidth_Pct = 3;
|
|||
|
var border_None = 0;
|
|||
|
var border_Single = 1;
|
|||
|
var heightrule_AtLeast = 0;
|
|||
|
var heightrule_Auto = 1;
|
|||
|
var heightrule_Exact = 2;
|
|||
|
var vertalignjc_Top = 0;
|
|||
|
var vertalignjc_Center = 1;
|
|||
|
var vertalignjc_Bottom = 2;
|
|||
|
var vmerge_Restart = 1;
|
|||
|
var vmerge_Continue = 2;
|
|||
|
var spacing_Auto = -1;
|
|||
|
var styletype_Character = 1;
|
|||
|
var styletype_Numbering = 2;
|
|||
|
var styletype_Paragraph = 3;
|
|||
|
var styletype_Table = 4;
|
|||
|
function isRealObject(obj) {
|
|||
|
return obj !== null && typeof obj === "object";
|
|||
|
}
|
|||
|
function CTableStylePr() {
|
|||
|
this.TextPr = new CTextPr();
|
|||
|
this.ParaPr = new CParaPr();
|
|||
|
this.TablePr = new CTablePr();
|
|||
|
this.TableRowPr = new CTableRowPr();
|
|||
|
this.TableCellPr = new CTableCellPr();
|
|||
|
}
|
|||
|
CTableStylePr.prototype = {
|
|||
|
Merge: function (TableStylePr) {
|
|||
|
this.TextPr.Merge(TableStylePr.TextPr);
|
|||
|
this.ParaPr.Merge(TableStylePr.ParaPr);
|
|||
|
this.TablePr.Merge(TableStylePr.TablePr);
|
|||
|
this.TableRowPr.Merge(TableStylePr.TableRowPr);
|
|||
|
this.TableCellPr.Merge(TableStylePr.TableCellPr);
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var TableStylePr = new CTableStylePr();
|
|||
|
TableStylePr.TextPr = this.TextPr.Copy();
|
|||
|
TableStylePr.ParaPr = this.ParaPr.Copy();
|
|||
|
TableStylePr.TablePr = this.TablePr.Copy();
|
|||
|
TableStylePr.TableRowPr = this.TableRowPr.Copy();
|
|||
|
TableStylePr.TableCellPr = this.TableCellPr.Copy();
|
|||
|
return TableStylePr;
|
|||
|
}
|
|||
|
};
|
|||
|
function CStyle(Name, BasedOnId, NextId, type) {
|
|||
|
this.Name = Name;
|
|||
|
this.BasedOn = BasedOnId;
|
|||
|
this.Next = NextId;
|
|||
|
if (null != type) {
|
|||
|
this.Type = type;
|
|||
|
} else {
|
|||
|
this.Type = styletype_Paragraph;
|
|||
|
}
|
|||
|
this.qFormat = null;
|
|||
|
this.uiPriority = null;
|
|||
|
this.hidden = null;
|
|||
|
this.semiHidden = null;
|
|||
|
this.unhideWhenUsed = null;
|
|||
|
this.TextPr = new CTextPr();
|
|||
|
this.ParaPr = new CParaPr();
|
|||
|
if (styletype_Table === this.Type) {
|
|||
|
this.TablePr = new CTablePr();
|
|||
|
this.TableRowPr = new CTableRowPr();
|
|||
|
this.TableCellPr = new CTableCellPr();
|
|||
|
this.TableBand1Horz = new CTableStylePr();
|
|||
|
this.TableBand1Vert = new CTableStylePr();
|
|||
|
this.TableBand2Horz = new CTableStylePr();
|
|||
|
this.TableBand2Vert = new CTableStylePr();
|
|||
|
this.TableFirstCol = new CTableStylePr();
|
|||
|
this.TableFirstRow = new CTableStylePr();
|
|||
|
this.TableLastCol = new CTableStylePr();
|
|||
|
this.TableLastRow = new CTableStylePr();
|
|||
|
this.TableTLCell = new CTableStylePr();
|
|||
|
this.TableTRCell = new CTableStylePr();
|
|||
|
this.TableBLCell = new CTableStylePr();
|
|||
|
this.TableBRCell = new CTableStylePr();
|
|||
|
this.TableWholeTable = new CTableStylePr();
|
|||
|
}
|
|||
|
this.stylesId = ++editor.tableStylesIdCounter + "";
|
|||
|
}
|
|||
|
CStyle.prototype = {
|
|||
|
isEmptyTableStyle: function () {},
|
|||
|
Set_Type: function (Type) {
|
|||
|
this.Type = Type;
|
|||
|
if (styletype_Table === this.Type) {
|
|||
|
if (undefined === this.TablePr) {
|
|||
|
this.TablePr = new CTablePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableRowPr) {
|
|||
|
this.TableRowPr = new CTableRowPr();
|
|||
|
}
|
|||
|
if (undefined === this.TableCellPr) {
|
|||
|
this.TableCellPr = new CTableCellPr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBand1Horz) {
|
|||
|
this.TableBand1Horz = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBand1Vert) {
|
|||
|
this.TableBand1Vert = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBand2Horz) {
|
|||
|
this.TableBand2Horz = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBand2Vert) {
|
|||
|
this.TableBand2Vert = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableFirstCol) {
|
|||
|
this.TableFirstCol = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableFirstRow) {
|
|||
|
this.TableFirstRow = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableLastCol) {
|
|||
|
this.TableLastCol = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableLastRow) {
|
|||
|
this.TableLastRow = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableTLCell) {
|
|||
|
this.TableTLCell = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableTRCell) {
|
|||
|
this.TableTRCell = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBLCell) {
|
|||
|
this.TableBLCell = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableBRCell) {
|
|||
|
this.TableBRCell = new CTableStylePr();
|
|||
|
}
|
|||
|
if (undefined === this.TableWholeTable) {
|
|||
|
this.TableWholeTable = new CTableStylePr();
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Create_Default_Paragraph: function () {
|
|||
|
this.qFormat = true;
|
|||
|
var TextPr = {
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Default_Character: function () {
|
|||
|
this.uiPriority = 1;
|
|||
|
this.semiHidden = true;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
},
|
|||
|
Create_Default_Numbering: function () {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.semiHidden = true;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
},
|
|||
|
Create_Heading1: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 24 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 0
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 24,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading2: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 1
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 20,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading3: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 2
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 18,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Italic: true,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading4: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 3
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 16,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 35,
|
|||
|
g: 35,
|
|||
|
b: 35
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading5: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 4
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 14,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 68,
|
|||
|
g: 68,
|
|||
|
b: 68
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading6: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 5
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 14,
|
|||
|
Italic: true,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 35,
|
|||
|
g: 35,
|
|||
|
b: 35
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading7: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 6
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 12,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 96,
|
|||
|
g: 96,
|
|||
|
b: 96
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading8: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 7
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 12,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 68,
|
|||
|
g: 68,
|
|||
|
b: 68
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Heading9: function () {
|
|||
|
this.qFormat = true;
|
|||
|
this.uiPriority = 9;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
KeepNext: true,
|
|||
|
KeepLines: true,
|
|||
|
Spacing: {
|
|||
|
Before: 10 * g_dKoef_pt_to_mm,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
OutlineLvl: 8
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 11.5,
|
|||
|
FontFamily: {
|
|||
|
Name: Default_Heading_Font,
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Italic: true,
|
|||
|
Color: {
|
|||
|
r: 68,
|
|||
|
g: 68,
|
|||
|
b: 68
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_ListParagraph: function () {
|
|||
|
this.uiPriority = 34;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Ind: {
|
|||
|
Left: 36 * g_dKoef_pt_to_mm
|
|||
|
},
|
|||
|
ContextualSpacing: true
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
},
|
|||
|
Create_NoSpacing: function () {
|
|||
|
this.uiPriority = 1;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto,
|
|||
|
After: 0
|
|||
|
},
|
|||
|
Ind: {
|
|||
|
FirstLine: 10
|
|||
|
}
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Header: function () {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 10,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Footer: function () {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 10,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_NormalTable: function () {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.semiHidden = true;
|
|||
|
this.unhideWhenUsed = true;
|
|||
|
var TablePr = {
|
|||
|
TableInd: 0,
|
|||
|
TableCellMar: {
|
|||
|
Top: {
|
|||
|
W: 1.27,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Left: {
|
|||
|
W: 2.54,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
W: 1.27,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Right: {
|
|||
|
W: 2.54,
|
|||
|
Type: tblwidth_Mm
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TablePr.Set_FromObject(TablePr);
|
|||
|
},
|
|||
|
Create_TableGrid: function () {
|
|||
|
this.uiPriority = 59;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
};
|
|||
|
var TablePr = {
|
|||
|
TableInd: 0,
|
|||
|
TableBorders: {
|
|||
|
Top: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
InsideH: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
InsideV: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellMar: {
|
|||
|
Top: {
|
|||
|
W: 1.27,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Left: {
|
|||
|
W: 2.54,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
W: 1.27,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Right: {
|
|||
|
W: 2.54,
|
|||
|
Type: tblwidth_Mm
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TablePr.Set_FromObject(TablePr);
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
},
|
|||
|
Create_Quote: function () {
|
|||
|
this.uiPriority = 29;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Ind: {
|
|||
|
Left: 60
|
|||
|
},
|
|||
|
Brd: {
|
|||
|
Bottom: {
|
|||
|
Color: {
|
|||
|
r: 166,
|
|||
|
g: 166,
|
|||
|
b: 166
|
|||
|
},
|
|||
|
Space: 1,
|
|||
|
Size: 1.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Color: {
|
|||
|
r: 166,
|
|||
|
g: 166,
|
|||
|
b: 166
|
|||
|
},
|
|||
|
Space: 4,
|
|||
|
Size: 1.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 9,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Italic: true,
|
|||
|
Color: {
|
|||
|
r: 55,
|
|||
|
g: 55,
|
|||
|
b: 55
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Subtitle: function () {
|
|||
|
this.uiPriority = 11;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
},
|
|||
|
OutlineLvl: 0
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 26,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Italic: true,
|
|||
|
Color: {
|
|||
|
r: 68,
|
|||
|
g: 68,
|
|||
|
b: 68
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_IntenseQuote: function () {
|
|||
|
this.uiPriority = 30;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Ind: {
|
|||
|
Left: 10,
|
|||
|
Right: 10
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
Color: {
|
|||
|
r: 217,
|
|||
|
g: 217,
|
|||
|
b: 217
|
|||
|
}
|
|||
|
},
|
|||
|
Brd: {
|
|||
|
Bottom: {
|
|||
|
Color: {
|
|||
|
r: 128,
|
|||
|
g: 128,
|
|||
|
b: 128
|
|||
|
},
|
|||
|
Space: 1,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Color: {
|
|||
|
r: 128,
|
|||
|
g: 128,
|
|||
|
b: 128
|
|||
|
},
|
|||
|
Space: 4,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Color: {
|
|||
|
r: 128,
|
|||
|
g: 128,
|
|||
|
b: 128
|
|||
|
},
|
|||
|
Space: 4,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
},
|
|||
|
Top: {
|
|||
|
Color: {
|
|||
|
r: 128,
|
|||
|
g: 128,
|
|||
|
b: 128
|
|||
|
},
|
|||
|
Space: 1,
|
|||
|
Size: 0.5 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 9.5,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Italic: true,
|
|||
|
Color: {
|
|||
|
r: 96,
|
|||
|
g: 96,
|
|||
|
b: 96
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Title: function () {
|
|||
|
this.uiPriority = 10;
|
|||
|
this.qFormat = true;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto,
|
|||
|
Before: 15 * g_dKoef_pt_to_mm,
|
|||
|
After: 4 * g_dKoef_pt_to_mm
|
|||
|
},
|
|||
|
Brd: {
|
|||
|
Bottom: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 3 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
},
|
|||
|
OutlineLvl: 0
|
|||
|
};
|
|||
|
var TextPr = {
|
|||
|
FontSize: 36,
|
|||
|
FontFamily: {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
},
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
},
|
|||
|
Create_Table_LightShading: function () {
|
|||
|
this.uiPriority = 60;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
var TablePr = {
|
|||
|
TableStyleColBandSize: 1,
|
|||
|
TableStyleRowBandSize: 1,
|
|||
|
TableInd: 0,
|
|||
|
TableBorders: {
|
|||
|
Top: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0)
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0)
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellMar: {
|
|||
|
Top: {
|
|||
|
W: 0,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Left: {
|
|||
|
W: 5.75 * g_dKoef_pt_to_mm,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
W: 0,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Right: {
|
|||
|
W: 5.75 * g_dKoef_pt_to_mm,
|
|||
|
Type: tblwidth_Mm
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TablePr.Set_FromObject(TablePr);
|
|||
|
var TableFirstRow = {
|
|||
|
TextPr: {
|
|||
|
Bold: true,
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
ParaPr: {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Before: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Top: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(79, 129, 189),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableFirstRow.TextPr.Set_FromObject(TableFirstRow.TextPr);
|
|||
|
this.TableFirstRow.ParaPr.Set_FromObject(TableFirstRow.ParaPr);
|
|||
|
this.TableFirstRow.TableCellPr.Set_FromObject(TableFirstRow.TableCellPr);
|
|||
|
var TableLastRow = {
|
|||
|
TextPr: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0)
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Top: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 12 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableLastRow.TextPr.Set_FromObject(TableLastRow.TextPr);
|
|||
|
this.TableLastRow.TableCellPr.Set_FromObject(TableLastRow.TableCellPr);
|
|||
|
var TableFirstCol = {
|
|||
|
TextPr: {
|
|||
|
Bold: true,
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255)
|
|||
|
},
|
|||
|
ParaPr: {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Before: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorder: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Top: {
|
|||
|
Value: border_None
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(79, 129, 189),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableFirstCol.TextPr.Set_FromObject(TableFirstCol.TextPr);
|
|||
|
this.TableFirstCol.ParaPr.Set_FromObject(TableFirstCol.ParaPr);
|
|||
|
this.TableFirstCol.TableCellPr.Set_FromObject(TableFirstCol.TableCellPr);
|
|||
|
var TableLastCol = {
|
|||
|
TextPr: {
|
|||
|
Bold: true,
|
|||
|
unifill: CreteSolidFillRGB(79, 129, 189),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(79, 129, 189),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableLastCol.TextPr.Set_FromObject(TableLastCol.TextPr);
|
|||
|
this.TableLastCol.TableCellPr.Set_FromObject(TableLastCol.TableCellPr);
|
|||
|
var TableBand1Vert = {
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(216, 216, 216),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableBand1Vert.TableCellPr.Set_FromObject(TableBand1Vert.TableCellPr);
|
|||
|
var TableBand1Horz = {
|
|||
|
TableCellPr: {
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(216, 216, 216),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableBand1Horz.TableCellPr.Set_FromObject(TableBand1Horz.TableCellPr);
|
|||
|
var TableTRCell = {
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Top: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(0, 255, 0),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 255,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableTRCell.TableCellPr.Set_FromObject(TableTRCell.TableCellPr);
|
|||
|
var TableTLCell = {
|
|||
|
TextPr: {
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255)
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Top: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Space: 0,
|
|||
|
Size: 18 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single,
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(255, 0, 0),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableTLCell.TextPr.Set_FromObject(TableTLCell.TextPr);
|
|||
|
this.TableTLCell.TableCellPr.Set_FromObject(TableTLCell.TableCellPr);
|
|||
|
this.TableWholeTable.TablePr.Set_FromObject(this.TablePr);
|
|||
|
},
|
|||
|
Create_Table_ColorfulListAccent6: function () {
|
|||
|
this.uiPriority = 72;
|
|||
|
var ParaPr = {
|
|||
|
Spacing: {
|
|||
|
After: 0,
|
|||
|
Line: 1,
|
|||
|
LineRule: linerule_Auto
|
|||
|
}
|
|||
|
};
|
|||
|
this.ParaPr.Set_FromObject(ParaPr);
|
|||
|
var TextPr = {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0)
|
|||
|
};
|
|||
|
this.TextPr.Set_FromObject(TextPr);
|
|||
|
var TablePr = {
|
|||
|
TableStyleColBandSize: 1,
|
|||
|
TableStyleRowBandSize: 1,
|
|||
|
TableInd: 0,
|
|||
|
TableCellMar: {
|
|||
|
TableCellMar: {
|
|||
|
Top: {
|
|||
|
W: 0,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Left: {
|
|||
|
W: 5.75 * g_dKoef_pt_to_mm,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
W: 0,
|
|||
|
Type: tblwidth_Mm
|
|||
|
},
|
|||
|
Right: {
|
|||
|
W: 5.75 * g_dKoef_pt_to_mm,
|
|||
|
Type: tblwidth_Mm
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TablePr.Set_FromObject(TablePr);
|
|||
|
var TableCellPr = {
|
|||
|
Shd: {
|
|||
|
Value: shd_Clear,
|
|||
|
unifill: CreteSolidFillRGB(254, 244, 236),
|
|||
|
Color: {
|
|||
|
r: 254,
|
|||
|
g: 244,
|
|||
|
b: 236
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableCellPr.Set_FromObject(TableCellPr);
|
|||
|
var TableFirstRow = {
|
|||
|
TextPr: {
|
|||
|
Bold: true,
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255),
|
|||
|
Color: {
|
|||
|
r: 255,
|
|||
|
g: 255,
|
|||
|
b: 255
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Bottom: {
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255),
|
|||
|
Color: {
|
|||
|
r: 255,
|
|||
|
g: 255,
|
|||
|
b: 255
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 12 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
unifill: CreteSolidFillRGB(52, 141, 165),
|
|||
|
Value: shd_Clear,
|
|||
|
Color: {
|
|||
|
r: 52,
|
|||
|
g: 141,
|
|||
|
b: 165
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableFirstRow.TextPr.Set_FromObject(TableFirstRow.TextPr);
|
|||
|
this.TableFirstRow.TableCellPr.Set_FromObject(TableFirstRow.TableCellPr);
|
|||
|
var TableLastRow = {
|
|||
|
TextPr: {
|
|||
|
unifill: CreteSolidFillRGB(52, 141, 165),
|
|||
|
Bold: true,
|
|||
|
Color: {
|
|||
|
r: 52,
|
|||
|
g: 141,
|
|||
|
b: 165
|
|||
|
}
|
|||
|
},
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Top: {
|
|||
|
unifill: CreteSolidFillRGB(0, 0, 0),
|
|||
|
Color: {
|
|||
|
r: 0,
|
|||
|
g: 0,
|
|||
|
b: 0
|
|||
|
},
|
|||
|
Space: 0,
|
|||
|
Size: 12 / 8 * g_dKoef_pt_to_mm,
|
|||
|
Value: border_Single
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
unifill: CreteSolidFillRGB(255, 255, 255),
|
|||
|
Value: shd_Clear,
|
|||
|
Color: {
|
|||
|
r: 255,
|
|||
|
g: 255,
|
|||
|
b: 255
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableLastRow.TextPr.Set_FromObject(TableLastRow.TextPr);
|
|||
|
this.TableLastRow.TableCellPr.Set_FromObject(TableLastRow.TableCellPr);
|
|||
|
var TableFirstCol = {
|
|||
|
TextPr: {
|
|||
|
Bold: true
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableFirstCol.TextPr.Set_FromObject(TableFirstCol.TextPr);
|
|||
|
var TableLastCol = {
|
|||
|
TextPr: {
|
|||
|
Bold: true
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableLastCol.TextPr.Set_FromObject(TableLastCol.TextPr);
|
|||
|
var TableBand1Vert = {
|
|||
|
TableCellPr: {
|
|||
|
TableCellBorders: {
|
|||
|
Top: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Left: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Bottom: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
Right: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
InsideH: {
|
|||
|
Value: border_None
|
|||
|
},
|
|||
|
InsideV: {
|
|||
|
Value: border_None
|
|||
|
}
|
|||
|
},
|
|||
|
Shd: {
|
|||
|
unifill: CreteSolidFillRGB(253, 228, 208),
|
|||
|
Value: shd_Clear,
|
|||
|
Color: {
|
|||
|
r: 253,
|
|||
|
g: 228,
|
|||
|
b: 208
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableBand1Vert.TableCellPr.Set_FromObject(TableBand1Vert.TableCellPr);
|
|||
|
var TableBand1Horz = {
|
|||
|
TableCellPr: {
|
|||
|
Shd: {
|
|||
|
unifill: CreteSolidFillRGB(253, 233, 217),
|
|||
|
Value: shd_Clear,
|
|||
|
Color: {
|
|||
|
r: 253,
|
|||
|
g: 233,
|
|||
|
b: 217
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
this.TableBand1Horz.TableCellPr.Set_FromObject(TableBand1Horz.TableCellPr);
|
|||
|
this.TableWholeTable.TablePr.Set_FromObject(this.TablePr);
|
|||
|
},
|
|||
|
Create_Table_Lined: function (Color1, Color2) {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.ParaPr.Spacing.After = 0;
|
|||
|
this.ParaPr.Spacing.Line = 1;
|
|||
|
this.ParaPr.Spacing.LineRule = linerule_Auto;
|
|||
|
this.TablePr.TableStyleColBandSize = 1;
|
|||
|
this.TablePr.TableStyleRowBandSize = 1;
|
|||
|
this.TablePr.TableInd = 0;
|
|||
|
this.TablePr.TableCellMar.Top = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Left = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TablePr.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Right = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TableFirstRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableFirstRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableFirstRow.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TableFirstRow.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableLastRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableLastRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableLastRow.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TableLastRow.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableFirstCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableFirstCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableFirstCol.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TableFirstCol.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableLastCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableLastCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableLastCol.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TableLastCol.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableBand2Vert.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableBand2Horz.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableWholeTable.TablePr.Set_FromObject(this.TablePr);
|
|||
|
},
|
|||
|
Create_Table_Bordered: function (Color1, Color2) {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.ParaPr.Spacing.After = 0;
|
|||
|
this.ParaPr.Spacing.Line = 1;
|
|||
|
this.ParaPr.Spacing.LineRule = linerule_Auto;
|
|||
|
this.TablePr.TableInd = 0;
|
|||
|
this.TablePr.TableBorders.Top = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Top.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Top.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Top.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Top.Space = 0;
|
|||
|
this.TablePr.TableBorders.Left = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Left.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Left.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Left.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Left.Space = 0;
|
|||
|
this.TablePr.TableBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Bottom.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Bottom.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Bottom.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Bottom.Space = 0;
|
|||
|
this.TablePr.TableBorders.Right = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Right.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Right.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Right.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Right.Space = 0;
|
|||
|
this.TablePr.TableBorders.InsideH = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.InsideH.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.InsideH.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.InsideH.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.InsideH.Space = 0;
|
|||
|
this.TablePr.TableBorders.InsideV = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.InsideV.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.InsideV.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.InsideV.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.InsideV.Space = 0;
|
|||
|
this.TablePr.TableCellMar.Top = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Left = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TablePr.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Right = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TableFirstRow.TableCellPr.TableCellBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableFirstRow.TableCellPr.TableCellBorders.Bottom.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableFirstRow.TableCellPr.TableCellBorders.Bottom.Value = border_Single;
|
|||
|
this.TableFirstRow.TableCellPr.TableCellBorders.Bottom.Size = 2.25 * g_dKoef_pt_to_mm;
|
|||
|
this.TableFirstRow.TableCellPr.TableCellBorders.Bottom.Space = 0;
|
|||
|
this.TableLastRow.TableCellPr.TableCellBorders.Top = new CDocumentBorder();
|
|||
|
this.TableLastRow.TableCellPr.TableCellBorders.Top.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableLastRow.TableCellPr.TableCellBorders.Top.Value = border_Single;
|
|||
|
this.TableLastRow.TableCellPr.TableCellBorders.Top.Size = 2.25 * g_dKoef_pt_to_mm;
|
|||
|
this.TableLastRow.TableCellPr.TableCellBorders.Top.Space = 0;
|
|||
|
this.TableFirstCol.TableCellPr.TableCellBorders.Right = new CDocumentBorder();
|
|||
|
this.TableFirstCol.TableCellPr.TableCellBorders.Right.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableFirstCol.TableCellPr.TableCellBorders.Right.Value = border_Single;
|
|||
|
this.TableFirstCol.TableCellPr.TableCellBorders.Right.Size = 2.25 * g_dKoef_pt_to_mm;
|
|||
|
this.TableFirstCol.TableCellPr.TableCellBorders.Right.Space = 0;
|
|||
|
this.TableLastCol.TableCellPr.TableCellBorders.Left = new CDocumentBorder();
|
|||
|
this.TableLastCol.TableCellPr.TableCellBorders.Left.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableLastCol.TableCellPr.TableCellBorders.Left.Value = border_Single;
|
|||
|
this.TableLastCol.TableCellPr.TableCellBorders.Left.Size = 2.25 * g_dKoef_pt_to_mm;
|
|||
|
this.TableLastCol.TableCellPr.TableCellBorders.Left.Space = 0;
|
|||
|
this.TableWholeTable.TablePr.Set_FromObject(this.TablePr);
|
|||
|
},
|
|||
|
Create_Table_BorderedAndLined: function (Color1, Color2, Color3) {
|
|||
|
this.uiPriority = 99;
|
|||
|
this.ParaPr.Spacing.After = 0;
|
|||
|
this.ParaPr.Spacing.Line = 1;
|
|||
|
this.ParaPr.Spacing.LineRule = linerule_Auto;
|
|||
|
this.TablePr.TableStyleColBandSize = 1;
|
|||
|
this.TablePr.TableStyleRowBandSize = 1;
|
|||
|
this.TablePr.TableInd = 0;
|
|||
|
this.TablePr.TableCellMar.Top = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Left = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TablePr.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TablePr.TableCellMar.Right = new CTableMeasurement(tblwidth_Auto, 5.4 * g_dKoef_pt_to_mm);
|
|||
|
this.TablePr.TableBorders.Top = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Top.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Top.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Top.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Top.Space = 0;
|
|||
|
this.TablePr.TableBorders.Left = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Left.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Left.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Left.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Left.Space = 0;
|
|||
|
this.TablePr.TableBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Bottom.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Bottom.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Bottom.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Bottom.Space = 0;
|
|||
|
this.TablePr.TableBorders.Right = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.Right.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.Right.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.Right.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.Right.Space = 0;
|
|||
|
this.TablePr.TableBorders.InsideH = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.InsideH.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.InsideH.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.InsideH.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.InsideH.Space = 0;
|
|||
|
this.TablePr.TableBorders.InsideV = new CDocumentBorder();
|
|||
|
this.TablePr.TableBorders.InsideV.unifill = CreteSolidFillRGB(Color1.r, Color1.g, Color1.b);
|
|||
|
this.TablePr.TableBorders.InsideV.Value = border_Single;
|
|||
|
this.TablePr.TableBorders.InsideV.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.TablePr.TableBorders.InsideV.Space = 0;
|
|||
|
this.TableFirstRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableFirstRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableFirstRow.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableFirstRow.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableLastRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableLastRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableLastRow.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableLastRow.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableFirstCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableFirstCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableFirstCol.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableFirstCol.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableLastCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableLastCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableLastCol.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color2.r, Color2.g, Color2.b);
|
|||
|
this.TableLastCol.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableBand2Vert.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color3.r, Color3.g, Color3.b);
|
|||
|
this.TableBand2Vert.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableBand2Horz.TableCellPr.Shd = new CDocumentShd();
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.unifill = CreteSolidFillRGB(Color3.r, Color3.g, Color3.b);
|
|||
|
this.TableBand2Horz.TableCellPr.Shd.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.TableWholeTable.TablePr.Set_FromObject(this.TablePr);
|
|||
|
}
|
|||
|
};
|
|||
|
function CreateDefaultStylesForTables() {
|
|||
|
var _table_styles = new CStyles();
|
|||
|
var _default_table_style = new CStyle("defaultTableStyle", null, null, styletype_Table);
|
|||
|
var _font_ref = new FontRef();
|
|||
|
_font_ref.idx = fntStyleInd_minor;
|
|||
|
_font_ref.Color = new CUniColor();
|
|||
|
_font_ref.Color.color = new CPrstColor();
|
|||
|
_font_ref.Color.color.id = "black";
|
|||
|
var _font_fill = new CUniFill();
|
|||
|
_font_fill.fill = new CSolidFill();
|
|||
|
_font_fill.fill.color.color = new CSchemeColor();
|
|||
|
_font_fill.fill.color.color.id = 8;
|
|||
|
_default_table_style.TableWholeTable.TextPr.fontRef = _font_ref;
|
|||
|
_default_table_style.TableWholeTable.TextPr.unifill = _font_fill;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Left = new CDocumentBorder();
|
|||
|
var _border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Left.unifill = _border_fill;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Left.Size = 127 / 360;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Left.Value = border_Single;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Top = new CDocumentBorder();
|
|||
|
_border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Top.unifill = _border_fill;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Top.Size = 127 / 360;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Top.Value = border_Single;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Right = new CDocumentBorder();
|
|||
|
_border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Right.unifill = _border_fill;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Right.Size = 127 / 360;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Right.Value = border_Single;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Bottom = new CDocumentBorder();
|
|||
|
_border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Bottom.unifill = _border_fill;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Bottom.Size = 127 / 360;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.TableCellBorders.Bottom.Value = border_Single;
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
var _cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_cell_fill.fill.color.Mods.Mods.push({
|
|||
|
name: "tint",
|
|||
|
val: 20000
|
|||
|
});
|
|||
|
_default_table_style.TableWholeTable.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableBand1Horz.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableBand1Horz.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_cell_fill.fill.color.Mods.Mods.push({
|
|||
|
name: "tint",
|
|||
|
val: 40000
|
|||
|
});
|
|||
|
_default_table_style.TableBand1Horz.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableBand1Vert.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableBand1Vert.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_cell_fill.fill.color.Mods.Mods.push({
|
|||
|
name: "tint",
|
|||
|
val: 40000
|
|||
|
});
|
|||
|
_default_table_style.TableBand1Vert.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableLastCol.TextPr.Bold = true;
|
|||
|
_font_fill = new CUniFill();
|
|||
|
_font_fill.fill = new CSolidFill();
|
|||
|
_font_fill.fill.color.color = new CSchemeColor();
|
|||
|
_font_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableLastCol.TextPr.unifill = _font_fill;
|
|||
|
_font_ref = new FontRef();
|
|||
|
_font_ref.idx = fntStyleInd_minor;
|
|||
|
_font_ref.Color = new CUniColor();
|
|||
|
_font_ref.Color.color = new CPrstColor();
|
|||
|
_font_ref.Color.color.id = "black";
|
|||
|
_default_table_style.TableLastCol.TextPr.fontRef = _font_ref;
|
|||
|
_default_table_style.TableLastCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableLastCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_default_table_style.TableLastCol.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableFirstCol.TextPr.Bold = true;
|
|||
|
_font_fill = new CUniFill();
|
|||
|
_font_fill.fill = new CSolidFill();
|
|||
|
_font_fill.fill.color.color = new CSchemeColor();
|
|||
|
_font_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableFirstCol.TextPr.unifill = _font_fill;
|
|||
|
_font_ref = new FontRef();
|
|||
|
_font_ref.idx = fntStyleInd_minor;
|
|||
|
_font_ref.Color = new CUniColor();
|
|||
|
_font_ref.Color.color = new CPrstColor();
|
|||
|
_font_ref.Color.color.id = "black";
|
|||
|
_default_table_style.TableFirstCol.TextPr.fontRef = _font_ref;
|
|||
|
_default_table_style.TableFirstCol.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableFirstCol.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_default_table_style.TableFirstCol.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableLastRow.TextPr.Bold = true;
|
|||
|
_font_fill = new CUniFill();
|
|||
|
_font_fill.fill = new CSolidFill();
|
|||
|
_font_fill.fill.color.color = new CSchemeColor();
|
|||
|
_font_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableLastRow.TextPr.unifill = _font_fill;
|
|||
|
_font_ref = new FontRef();
|
|||
|
_font_ref.idx = fntStyleInd_minor;
|
|||
|
_font_ref.Color = new CUniColor();
|
|||
|
_font_ref.Color.color = new CPrstColor();
|
|||
|
_font_ref.Color.color.id = "black";
|
|||
|
_default_table_style.TableLastRow.TextPr.fontRef = _font_ref;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.TableCellBorders.Top = new CDocumentBorder();
|
|||
|
_border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.TableCellBorders.Top.unifill = _border_fill;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.TableCellBorders.Top.Size = 381 / 360;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.TableCellBorders.Top.Value = border_Single;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableLastRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_default_table_style.TableLastRow.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_default_table_style.TableFirstRow.TextPr.Bold = true;
|
|||
|
_font_fill = new CUniFill();
|
|||
|
_font_fill.fill = new CSolidFill();
|
|||
|
_font_fill.fill.color.color = new CSchemeColor();
|
|||
|
_font_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableFirstRow.TextPr.unifill = _font_fill;
|
|||
|
_font_ref = new FontRef();
|
|||
|
_font_ref.idx = fntStyleInd_minor;
|
|||
|
_font_ref.Color = new CUniColor();
|
|||
|
_font_ref.Color.color = new CPrstColor();
|
|||
|
_font_ref.Color.color.id = "black";
|
|||
|
_default_table_style.TableFirstRow.TextPr.fontRef = _font_ref;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.TableCellBorders.Bottom = new CDocumentBorder();
|
|||
|
_border_fill = new CUniFill();
|
|||
|
_border_fill.fill = new CSolidFill();
|
|||
|
_border_fill.fill.color.color = new CSchemeColor();
|
|||
|
_border_fill.fill.color.color.id = 12;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.TableCellBorders.Bottom.unifill = _border_fill;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.TableCellBorders.Bottom.Size = 381 / 360;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.TableCellBorders.Bottom.Value = border_Single;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.Shd = new CDocumentShd();
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.Shd.Value = shd_Clear;
|
|||
|
_cell_fill = new CUniFill();
|
|||
|
_cell_fill.fill = new CSolidFill();
|
|||
|
_cell_fill.fill.color.color = new CSchemeColor();
|
|||
|
_cell_fill.fill.color.color.id = 0;
|
|||
|
_default_table_style.TableFirstRow.TableCellPr.Shd.unifill = _cell_fill;
|
|||
|
_table_styles.Style.push(_default_table_style);
|
|||
|
_table_styles.Id++;
|
|||
|
return _default_table_style;
|
|||
|
}
|
|||
|
function CStyles() {
|
|||
|
this.Default = {
|
|||
|
ParaPr: new CParaPr(),
|
|||
|
TextPr: new CTextPr(),
|
|||
|
TablePr: new CTablePr(),
|
|||
|
TableRowPr: new CTableRowPr(),
|
|||
|
TableCellPr: new CTableCellPr(),
|
|||
|
Paragraph: null,
|
|||
|
Character: null,
|
|||
|
Numbering: null,
|
|||
|
Table: null,
|
|||
|
TableGrid: null,
|
|||
|
Headings: [],
|
|||
|
ParaList: null,
|
|||
|
Header: null,
|
|||
|
Footer: null
|
|||
|
};
|
|||
|
this.Default.ParaPr.Init_Default();
|
|||
|
this.Default.TextPr.Init_Default();
|
|||
|
this.Default.TablePr.Init_Default();
|
|||
|
this.Default.TableRowPr.Init_Default();
|
|||
|
this.Default.TableCellPr.Init_Default();
|
|||
|
this.Id = 0;
|
|||
|
this.Style = new Array();
|
|||
|
var Style_Para_Def = new CStyle("Normal", null, null, styletype_Paragraph);
|
|||
|
Style_Para_Def.Create_Default_Paragraph();
|
|||
|
this.Style[this.Id] = Style_Para_Def;
|
|||
|
this.Default.Paragraph = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Char_Def = new CStyle("Default Paragraph Font", null, null, styletype_Character);
|
|||
|
Style_Char_Def.Create_Default_Character();
|
|||
|
this.Style[this.Id] = Style_Char_Def;
|
|||
|
this.Default.Character = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Num_Def = new CStyle("No List", null, null, styletype_Numbering);
|
|||
|
Style_Num_Def.Create_Default_Numbering();
|
|||
|
this.Style[this.Id] = Style_Num_Def;
|
|||
|
this.Default.Numbering = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H1 = new CStyle("Heading 1", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H1.Create_Heading1();
|
|||
|
this.Style[this.Id] = Style_H1;
|
|||
|
this.Default.Headings[0] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H2 = new CStyle("Heading 2", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H2.Create_Heading2();
|
|||
|
this.Style[this.Id] = Style_H2;
|
|||
|
this.Default.Headings[1] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H3 = new CStyle("Heading 3", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H3.Create_Heading3();
|
|||
|
this.Style[this.Id] = Style_H3;
|
|||
|
this.Default.Headings[2] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H4 = new CStyle("Heading 4", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H4.Create_Heading4();
|
|||
|
this.Style[this.Id] = Style_H4;
|
|||
|
this.Default.Headings[3] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H5 = new CStyle("Heading 5", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H5.Create_Heading5();
|
|||
|
this.Style[this.Id] = Style_H5;
|
|||
|
this.Default.Headings[4] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H6 = new CStyle("Heading 6", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H6.Create_Heading6();
|
|||
|
this.Style[this.Id] = Style_H6;
|
|||
|
this.Default.Headings[5] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H7 = new CStyle("Heading 7", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H7.Create_Heading7();
|
|||
|
this.Style[this.Id] = Style_H7;
|
|||
|
this.Default.Headings[6] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H8 = new CStyle("Heading 8", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H8.Create_Heading8();
|
|||
|
this.Style[this.Id] = Style_H8;
|
|||
|
this.Default.Headings[7] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_H9 = new CStyle("Heading 9", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_H9.Create_Heading9();
|
|||
|
this.Style[this.Id] = Style_H9;
|
|||
|
this.Default.Headings[8] = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Para_List = new CStyle("List Paragraph", this.Default.Paragraph, null, styletype_Paragraph);
|
|||
|
Style_Para_List.Create_ListParagraph();
|
|||
|
this.Style[this.Id] = Style_Para_List;
|
|||
|
this.Default.ParaList = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Table = new CStyle("Normal Table", null, null, styletype_Table);
|
|||
|
Style_Table.Create_NormalTable();
|
|||
|
this.Style[this.Id] = Style_Table;
|
|||
|
this.Default.Table = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_NoSpacing = new CStyle("No Spacing", null, null, styletype_Paragraph);
|
|||
|
Style_NoSpacing.Create_NoSpacing();
|
|||
|
this.Style[this.Id] = Style_NoSpacing;
|
|||
|
this.Id++;
|
|||
|
var Style_Title = new CStyle("Title", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_Title.Create_Title();
|
|||
|
this.Style[this.Id] = Style_Title;
|
|||
|
this.Id++;
|
|||
|
var Style_Subtitle = new CStyle("Subtitle", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_Subtitle.Create_Subtitle();
|
|||
|
this.Style[this.Id] = Style_Subtitle;
|
|||
|
this.Id++;
|
|||
|
var Style_Quote = new CStyle("Quote", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_Quote.Create_Quote();
|
|||
|
this.Style[this.Id] = Style_Quote;
|
|||
|
this.Id++;
|
|||
|
var Style_IntenseQuote = new CStyle("Intense Quote", this.Default.Paragraph, this.Default.Paragraph, styletype_Paragraph);
|
|||
|
Style_IntenseQuote.Create_IntenseQuote();
|
|||
|
this.Style[this.Id] = Style_IntenseQuote;
|
|||
|
this.Id++;
|
|||
|
var Style_Header = new CStyle("Header", this.Default.Paragraph, null, styletype_Paragraph);
|
|||
|
Style_Header.Create_Header();
|
|||
|
this.Style[this.Id] = Style_Header;
|
|||
|
this.Default.Header = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Footer = new CStyle("Footer", this.Default.Paragraph, null, styletype_Paragraph);
|
|||
|
Style_Footer.Create_Footer();
|
|||
|
this.Style[this.Id] = Style_Footer;
|
|||
|
this.Default.Footer = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_TableGrid = new CStyle("Table Grid", this.Default.Table, null, styletype_Table);
|
|||
|
Style_TableGrid.Create_TableGrid();
|
|||
|
this.Style[this.Id] = Style_TableGrid;
|
|||
|
this.Default.TableGrid = this.Id;
|
|||
|
this.Id++;
|
|||
|
var Style_Table = new CStyle("LightShading", this.Default.Table, null, styletype_Table);
|
|||
|
Style_Table.Create_Table_LightShading();
|
|||
|
this.Style[this.Id] = Style_Table;
|
|||
|
this.Id++;
|
|||
|
var Style_Table = new CStyle("ColorfulListAccent6", this.Default.Table, null, styletype_Table);
|
|||
|
Style_Table.Create_Table_ColorfulListAccent6();
|
|||
|
this.Style[this.Id] = Style_Table;
|
|||
|
this.Id++;
|
|||
|
}
|
|||
|
CStyles.prototype = {
|
|||
|
Get_AllTableStyles: function () {
|
|||
|
var TableStyles = new Array();
|
|||
|
for (var Id in this.Style) {
|
|||
|
var Style = this.Style[Id];
|
|||
|
if (styletype_Table === Style.Type) {
|
|||
|
TableStyles.push(Id);
|
|||
|
}
|
|||
|
}
|
|||
|
return TableStyles;
|
|||
|
},
|
|||
|
Get_Pr: function (StyleId, Type, TableStyle) {
|
|||
|
var Pr = {};
|
|||
|
switch (Type) {
|
|||
|
case styles_Paragraph:
|
|||
|
if (null != TableStyle) {
|
|||
|
Pr.TextPr = TableStyle.TextPr.Copy();
|
|||
|
Pr.ParaPr = TableStyle.ParaPr.Copy();
|
|||
|
} else {
|
|||
|
Pr.TextPr = this.Default.TextPr.Copy();
|
|||
|
Pr.ParaPr = this.Default.ParaPr.Copy();
|
|||
|
}
|
|||
|
break;
|
|||
|
case styles_Table:
|
|||
|
Pr.TextPr = this.Default.TextPr.Copy();
|
|||
|
Pr.ParaPr = this.Default.ParaPr.Copy();
|
|||
|
Pr.TablePr = this.Default.TablePr.Copy();
|
|||
|
Pr.TableRowPr = this.Default.TableRowPr.Copy();
|
|||
|
Pr.TableCellPr = this.Default.TableCellPr.Copy();
|
|||
|
Pr.TableFirstCol = new CTableStylePr();
|
|||
|
Pr.TableFirstRow = new CTableStylePr();
|
|||
|
Pr.TableLastCol = new CTableStylePr();
|
|||
|
Pr.TableLastRow = new CTableStylePr();
|
|||
|
Pr.TableBand1Horz = new CTableStylePr();
|
|||
|
Pr.TableBand1Vert = new CTableStylePr();
|
|||
|
Pr.TableBand2Horz = new CTableStylePr();
|
|||
|
Pr.TableBand2Vert = new CTableStylePr();
|
|||
|
Pr.TableTLCell = new CTableStylePr();
|
|||
|
Pr.TableTRCell = new CTableStylePr();
|
|||
|
Pr.TableBLCell = new CTableStylePr();
|
|||
|
Pr.TableBRCell = new CTableStylePr();
|
|||
|
Pr.TableWholeTable = new CTableStylePr();
|
|||
|
break;
|
|||
|
case styles_Character:
|
|||
|
if (null != TableStyle) {
|
|||
|
Pr.TextPr = TableStyle.TextPr.Copy();
|
|||
|
} else {
|
|||
|
Pr.TextPr = this.Default.TextPr.Copy();
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
this.Internal_Get_Pr(Pr, StyleId, Type, (null === TableStyle ? true : false));
|
|||
|
if (styles_Table === Type) {
|
|||
|
Pr.ParaPr.Merge(Pr.TableWholeTable.ParaPr);
|
|||
|
Pr.TextPr.Merge(Pr.TableWholeTable.TextPr);
|
|||
|
Pr.TablePr.Merge(Pr.TableWholeTable.TablePr);
|
|||
|
Pr.TableRowPr.Merge(Pr.TableWholeTable.TableRowPr);
|
|||
|
Pr.TableCellPr.Merge(Pr.TableWholeTable.TableCellPr);
|
|||
|
delete Pr.TableWholeTable;
|
|||
|
}
|
|||
|
return Pr;
|
|||
|
},
|
|||
|
Get_Next: function (StyleId) {
|
|||
|
return this.Style[StyleId].Next;
|
|||
|
},
|
|||
|
Get_Name: function (StyleId) {
|
|||
|
if (undefined != this.Style[StyleId]) {
|
|||
|
return this.Style[StyleId].Name;
|
|||
|
}
|
|||
|
return "";
|
|||
|
},
|
|||
|
Get_Default_Paragraph: function () {
|
|||
|
return this.Default.Paragraph;
|
|||
|
},
|
|||
|
Get_Default_Character: function () {
|
|||
|
return this.Default.Character;
|
|||
|
},
|
|||
|
Get_Default_Numbering: function () {
|
|||
|
return this.Default.Numbering;
|
|||
|
},
|
|||
|
Get_Default_Table: function () {
|
|||
|
return this.Default.Table;
|
|||
|
},
|
|||
|
Get_Default_TableGrid: function () {
|
|||
|
return this.Default.TableGrid;
|
|||
|
},
|
|||
|
Get_Default_Heading: function (Lvl) {
|
|||
|
Lvl = Math.max(Math.min(Lvl, 8), 0);
|
|||
|
return this.Default.Headings[Lvl];
|
|||
|
},
|
|||
|
Get_Default_ParaList: function () {
|
|||
|
return this.Default.ParaList;
|
|||
|
},
|
|||
|
Get_Default_Header: function () {
|
|||
|
return this.Default.Header;
|
|||
|
},
|
|||
|
Get_Default_Footer: function () {
|
|||
|
return this.Default.Footer;
|
|||
|
},
|
|||
|
Get_StyleIdByName: function (Name) {
|
|||
|
for (var Id in this.Style) {
|
|||
|
var Style = this.Style[Id];
|
|||
|
if (Style.Name === Name) {
|
|||
|
return Id;
|
|||
|
}
|
|||
|
}
|
|||
|
return this.Default.Paragraph;
|
|||
|
},
|
|||
|
Internal_Get_Pr: function (Pr, StyleId, Type, bUseDefault) {
|
|||
|
var Style = this.Style[StyleId];
|
|||
|
if (undefined == StyleId || undefined === Style) {
|
|||
|
if (true === bUseDefault) {
|
|||
|
switch (Type) {
|
|||
|
case styles_Paragraph:
|
|||
|
var DefId = this.Default.Paragraph;
|
|||
|
Pr.ParaPr.Merge(this.Style[DefId].ParaPr);
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
break;
|
|||
|
case styles_Numbering:
|
|||
|
var DefId = this.Default.Numbering;
|
|||
|
break;
|
|||
|
case styles_Table:
|
|||
|
var DefId = this.Default.Table;
|
|||
|
Pr.ParaPr.Merge(this.Style[DefId].ParaPr);
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
Pr.TablePr.Merge(this.Style[DefId].TablePr);
|
|||
|
Pr.TableRowPr.Merge(this.Style[DefId].TableRowPr);
|
|||
|
Pr.TableCellPr.Merge(this.Style[DefId].TableCellPr);
|
|||
|
break;
|
|||
|
case styles_Character:
|
|||
|
var DefId = this.Default.Character;
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
return;
|
|||
|
}
|
|||
|
if (null === Style.BasedOn) {
|
|||
|
if (true === bUseDefault) {
|
|||
|
switch (Type) {
|
|||
|
case styles_Paragraph:
|
|||
|
var DefId = this.Default.Paragraph;
|
|||
|
Pr.ParaPr.Merge(this.Style[DefId].ParaPr);
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
break;
|
|||
|
case styles_Numbering:
|
|||
|
var DefId = this.Default.Numbering;
|
|||
|
break;
|
|||
|
case styles_Table:
|
|||
|
var DefId = this.Default.Table;
|
|||
|
Pr.ParaPr.Merge(this.Style[DefId].ParaPr);
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
Pr.TablePr.Merge(this.Style[DefId].TablePr);
|
|||
|
Pr.TableRowPr.Merge(this.Style[DefId].TableRowPr);
|
|||
|
Pr.TableCellPr.Merge(this.Style[DefId].TableCellPr);
|
|||
|
break;
|
|||
|
case styles_Character:
|
|||
|
var DefId = this.Default.Character;
|
|||
|
Pr.TextPr.Merge(this.Style[DefId].TextPr);
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
switch (Type) {
|
|||
|
case styles_Paragraph:
|
|||
|
Pr.ParaPr.Merge(Style.ParaPr);
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
break;
|
|||
|
case styles_Numbering:
|
|||
|
break;
|
|||
|
case styles_Table:
|
|||
|
Pr.ParaPr.Merge(Style.ParaPr);
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
Pr.TablePr.Merge(Style.TablePr);
|
|||
|
Pr.TableRowPr.Merge(Style.TableRowPr);
|
|||
|
Pr.TableCellPr.Merge(Style.TableCellPr);
|
|||
|
Pr.TableBand1Horz.Merge(Style.TableBand1Horz);
|
|||
|
Pr.TableBand1Vert.Merge(Style.TableBand1Vert);
|
|||
|
Pr.TableBand2Horz.Merge(Style.TableBand2Horz);
|
|||
|
Pr.TableBand2Vert.Merge(Style.TableBand2Vert);
|
|||
|
Pr.TableFirstCol.Merge(Style.TableFirstCol);
|
|||
|
Pr.TableFirstRow.Merge(Style.TableFirstRow);
|
|||
|
Pr.TableLastCol.Merge(Style.TableLastCol);
|
|||
|
Pr.TableLastRow.Merge(Style.TableLastRow);
|
|||
|
Pr.TableTLCell.Merge(Style.TableTLCell);
|
|||
|
Pr.TableTRCell.Merge(Style.TableTRCell);
|
|||
|
Pr.TableBLCell.Merge(Style.TableBLCell);
|
|||
|
Pr.TableBRCell.Merge(Style.TableBRCell);
|
|||
|
Pr.TableWholeTable.Merge(Style.TableWholeTable);
|
|||
|
break;
|
|||
|
case styles_Character:
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
break;
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.Internal_Get_Pr(Pr, Style.BasedOn, Type);
|
|||
|
switch (Type) {
|
|||
|
case styles_Paragraph:
|
|||
|
Pr.ParaPr.Merge(Style.ParaPr);
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
break;
|
|||
|
case styles_Numbering:
|
|||
|
break;
|
|||
|
case styles_Table:
|
|||
|
Pr.ParaPr.Merge(Style.ParaPr);
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
Pr.TablePr.Merge(Style.TablePr);
|
|||
|
Pr.TableRowPr.Merge(Style.TableRowPr);
|
|||
|
Pr.TableCellPr.Merge(Style.TableCellPr);
|
|||
|
Pr.TableBand1Horz.Merge(Style.TableBand1Horz);
|
|||
|
Pr.TableBand1Vert.Merge(Style.TableBand1Vert);
|
|||
|
Pr.TableBand2Horz.Merge(Style.TableBand2Horz);
|
|||
|
Pr.TableBand2Vert.Merge(Style.TableBand2Vert);
|
|||
|
Pr.TableFirstCol.Merge(Style.TableFirstCol);
|
|||
|
Pr.TableFirstRow.Merge(Style.TableFirstRow);
|
|||
|
Pr.TableLastCol.Merge(Style.TableLastCol);
|
|||
|
Pr.TableLastRow.Merge(Style.TableLastRow);
|
|||
|
Pr.TableTLCell.Merge(Style.TableTLCell);
|
|||
|
Pr.TableTRCell.Merge(Style.TableTRCell);
|
|||
|
Pr.TableBLCell.Merge(Style.TableBLCell);
|
|||
|
Pr.TableBRCell.Merge(Style.TableBRCell);
|
|||
|
Pr.TableWholeTable.Merge(Style.TableWholeTable);
|
|||
|
break;
|
|||
|
case styles_Character:
|
|||
|
Pr.TextPr.Merge(Style.TextPr);
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CDocumentColor(r, g, b) {
|
|||
|
this.r = r;
|
|||
|
this.g = g;
|
|||
|
this.b = b;
|
|||
|
}
|
|||
|
CDocumentColor.prototype = {
|
|||
|
Copy: function () {
|
|||
|
return new CDocumentColor(this.r, this.g, this.b);
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
Writer.WriteByte(this.r);
|
|||
|
Writer.WriteByte(this.g);
|
|||
|
Writer.WriteByte(this.b);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
this.r = Reader.GetByte();
|
|||
|
this.g = Reader.GetByte();
|
|||
|
this.b = Reader.GetByte();
|
|||
|
},
|
|||
|
Set: function (r, g, b) {
|
|||
|
this.r = r;
|
|||
|
this.g = g;
|
|||
|
this.b = b;
|
|||
|
},
|
|||
|
Compare: function (Color) {
|
|||
|
if (this.r === Color.r && this.g === Color.g && this.b === Color.b) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
};
|
|||
|
function CDocumentShd() {
|
|||
|
this.Value = shd_Nil;
|
|||
|
this.Color = new CDocumentColor(255, 255, 255);
|
|||
|
this.unifill = null;
|
|||
|
this.fillRef = null;
|
|||
|
}
|
|||
|
CDocumentShd.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var Shd = new CDocumentShd();
|
|||
|
Shd.Value = this.Value;
|
|||
|
Shd.Color.Set(this.Color.r, this.Color.g, this.Color.b);
|
|||
|
if (this.unifill !== null && typeof this.unifill === "object" && typeof this.unifill.createDuplicate === "function") {
|
|||
|
Shd.unifill = this.unifill.createDuplicate();
|
|||
|
}
|
|||
|
if (this.fillRef !== null && typeof this.fillRef === "object" && typeof this.fillRef.createDuplicate === "function") {
|
|||
|
Shd.fillRef = this.fillRef.createDuplicate();
|
|||
|
}
|
|||
|
return Shd;
|
|||
|
},
|
|||
|
Compare: function (Shd) {
|
|||
|
if (this.Value === Shd.Value) {
|
|||
|
switch (this.Value) {
|
|||
|
case shd_Nil:
|
|||
|
return true;
|
|||
|
case shd_Clear:
|
|||
|
if (this.unifill == null && Shd.unifill != null) {
|
|||
|
return false;
|
|||
|
} else {
|
|||
|
if (this.unifill != null && this.unifill.IsIdentical(Shd.unifill) == false) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
if (this.fillRef == null && Shd.fillRef != null) {
|
|||
|
return false;
|
|||
|
} else {
|
|||
|
if (this.fillRef != null && this.fillRef.isIdentical(Shd.fillRef) == false) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
return false;
|
|||
|
},
|
|||
|
Set_FromObject: function (Shd) {
|
|||
|
this.Value = Shd.Value;
|
|||
|
this.Color.Set(Shd.Color.r, Shd.Color.g, Shd.Color.b);
|
|||
|
if (Shd.unifill instanceof CUniFill) {
|
|||
|
this.unifill = Shd.unifill.createDuplicate();
|
|||
|
}
|
|||
|
if (Shd.fillRef instanceof StyleRef) {
|
|||
|
this.fillRef = Shd.fillRef.createDuplicate();
|
|||
|
}
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
Writer.WriteByte(this.Value);
|
|||
|
if (shd_Clear === this.Value) {
|
|||
|
this.Color.Write_ToBinary(Writer);
|
|||
|
}
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
this.Value = Reader.GetByte();
|
|||
|
if (shd_Clear === this.Value) {
|
|||
|
this.Color.Read_FromBinary(Reader);
|
|||
|
} else {
|
|||
|
this.Color.Set(0, 0, 0);
|
|||
|
}
|
|||
|
},
|
|||
|
writeToBinaryCollaborative: function (w) {
|
|||
|
w.WriteByte(this.Value);
|
|||
|
w.WriteBool(isRealObject(this.unifill));
|
|||
|
if (isRealObject(this.unifill)) {
|
|||
|
this.unifill.Write_ToBinary2(w);
|
|||
|
}
|
|||
|
w.WriteBool(isRealObject(this.fillRef));
|
|||
|
if (isRealObject(this.fillRef)) {
|
|||
|
this.fillRef.Write_ToBinary2(w);
|
|||
|
}
|
|||
|
},
|
|||
|
readFromBinaryCollaborative: function (r) {
|
|||
|
this.Value = r.GetByte();
|
|||
|
if (r.GetBool()) {
|
|||
|
this.unifill = new CUniFill();
|
|||
|
this.unifill.Read_FromBinary2(r);
|
|||
|
} else {
|
|||
|
this.unifill = null;
|
|||
|
}
|
|||
|
if (r.GetBool()) {
|
|||
|
this.fillRef = new StyleRef();
|
|||
|
this.fillRef.Read_FromBinary2(r);
|
|||
|
} else {
|
|||
|
this.fillRef = null;
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CDocumentBorder() {
|
|||
|
this.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.Space = 0;
|
|||
|
this.Size = 0.5 * g_dKoef_pt_to_mm;
|
|||
|
this.Value = border_None;
|
|||
|
this.unifill = null;
|
|||
|
this.lnRef = null;
|
|||
|
}
|
|||
|
CDocumentBorder.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var Border = new CDocumentBorder();
|
|||
|
if (undefined === this.Color) {
|
|||
|
Border.Color = undefined;
|
|||
|
} else {
|
|||
|
Border.Color.Set(this.Color.r, this.Color.g, this.Color.b);
|
|||
|
}
|
|||
|
if (undefined === this.Space) {
|
|||
|
Border.Space = undefined;
|
|||
|
} else {
|
|||
|
Border.Space = this.Space;
|
|||
|
}
|
|||
|
if (undefined === this.Size) {
|
|||
|
Border.Size = undefined;
|
|||
|
} else {
|
|||
|
Border.Size = this.Size;
|
|||
|
}
|
|||
|
if (undefined === this.Value) {
|
|||
|
Border.Value = undefined;
|
|||
|
} else {
|
|||
|
Border.Value = this.Value;
|
|||
|
}
|
|||
|
if (this.unifill !== null && typeof this.unifill === "object" && typeof this.unifill.createDuplicate === "function") {
|
|||
|
Border.unifill = this.unifill.createDuplicate();
|
|||
|
}
|
|||
|
if (this.lnRef !== null && typeof this.lnRef === "object" && typeof this.lnRef.createDuplicate === "function") {
|
|||
|
Border.lnRef = this.lnRef.createDuplicate();
|
|||
|
}
|
|||
|
return Border;
|
|||
|
},
|
|||
|
Compare: function (Border) {
|
|||
|
if (false === this.Color.Compare(Border.Color)) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (Math.abs(this.Size - Border.Size) > 0.001) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (Math.abs(this.Space - Border.Space) > 0.001) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (this.Value != Border.Value) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (this.unifill == null && Border.unifill != null) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (this.unifill != null) {
|
|||
|
if (CompareUniFill(this.unifill, Border.unifill) === false) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
},
|
|||
|
Set_FromObject: function (Border) {
|
|||
|
this.Space = Border.Space;
|
|||
|
this.Size = Border.Size;
|
|||
|
this.Value = Border.Value;
|
|||
|
if (undefined != Border.Color) {
|
|||
|
this.Color = new CDocumentColor(Border.Color.r, Border.Color.g, Border.Color.b);
|
|||
|
} else {
|
|||
|
this.Color = undefined;
|
|||
|
}
|
|||
|
if (Border.unifill instanceof CUniFill) {
|
|||
|
this.unifill = Border.unifill.createDuplicate();
|
|||
|
} else {
|
|||
|
this.unifill = null;
|
|||
|
}
|
|||
|
if (Border.lnRef instanceof StyleRef) {
|
|||
|
this.lnRef = Border.lnRef.createDuplicate();
|
|||
|
} else {
|
|||
|
this.lnRef = null;
|
|||
|
}
|
|||
|
},
|
|||
|
Check_Null: function () {
|
|||
|
if (undefined === this.Space || undefined === this.Size || undefined === this.Value || undefined === this.Color) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
Writer.WriteDouble(this.Size);
|
|||
|
Writer.WriteLong(this.Space);
|
|||
|
Writer.WriteByte(this.Value);
|
|||
|
this.Color.Write_ToBinary(Writer);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
this.Size = Reader.GetDouble();
|
|||
|
this.Space = Reader.GetLong();
|
|||
|
this.Value = Reader.GetByte();
|
|||
|
this.Color.Read_FromBinary(Reader);
|
|||
|
},
|
|||
|
writeToBinaryCollaborative: function (w) {
|
|||
|
this.Color.Write_ToBinary(w);
|
|||
|
w.WriteLong(this.Space);
|
|||
|
w.WriteDouble(this.Size);
|
|||
|
w.WriteByte(this.Value);
|
|||
|
w.WriteBool(isRealObject(this.unifill));
|
|||
|
if (isRealObject(this.unifill)) {
|
|||
|
this.unifill.Write_ToBinary2(w);
|
|||
|
}
|
|||
|
w.WriteBool(isRealObject(this.lnRef));
|
|||
|
if (isRealObject(this.lnRef)) {
|
|||
|
this.lnRef.Write_ToBinary2(w);
|
|||
|
}
|
|||
|
},
|
|||
|
readFromBinaryCollaborative: function (r) {
|
|||
|
this.Color.Read_FromBinary(r);
|
|||
|
this.Space = r.GetLong();
|
|||
|
this.Size = r.GetDouble();
|
|||
|
this.Value = r.GetByte();
|
|||
|
if (r.GetBool()) {
|
|||
|
this.unifill = new CUniFill();
|
|||
|
this.unifill.Read_FromBinary2(r);
|
|||
|
} else {
|
|||
|
this.unifill = null;
|
|||
|
}
|
|||
|
if (r.GetBool()) {
|
|||
|
this.lnRef = new StyleRef();
|
|||
|
this.lnRef.Read_FromBinary2(r);
|
|||
|
} else {
|
|||
|
this.lnRef = null;
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CTableMeasurement(Type, W) {
|
|||
|
this.Type = Type;
|
|||
|
this.W = W;
|
|||
|
}
|
|||
|
CTableMeasurement.prototype = {
|
|||
|
Copy: function () {
|
|||
|
return new CTableMeasurement(this.Type, this.W);
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
Writer.WriteDouble(this.W);
|
|||
|
Writer.WriteLong(this.Type);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
this.W = Reader.GetDouble();
|
|||
|
this.Type = Reader.GetLong();
|
|||
|
}
|
|||
|
};
|
|||
|
function CTablePr() {
|
|||
|
this.TableStyleColBandSize = undefined;
|
|||
|
this.TableStyleRowBandSize = undefined;
|
|||
|
this.Jc = undefined;
|
|||
|
this.Shd = undefined;
|
|||
|
this.TableBorders = {
|
|||
|
Bottom: undefined,
|
|||
|
Left: undefined,
|
|||
|
Right: undefined,
|
|||
|
Top: undefined,
|
|||
|
InsideH: undefined,
|
|||
|
InsideV: undefined
|
|||
|
};
|
|||
|
this.TableCellMar = {
|
|||
|
Bottom: undefined,
|
|||
|
Left: undefined,
|
|||
|
Right: undefined,
|
|||
|
Top: undefined
|
|||
|
};
|
|||
|
this.TableCellSpacing = undefined;
|
|||
|
this.TableInd = undefined;
|
|||
|
this.TableW = undefined;
|
|||
|
}
|
|||
|
CTablePr.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var TablePr = new CTablePr();
|
|||
|
TablePr.TableStyleColBandSize = this.TableStyleColBandSize;
|
|||
|
TablePr.TableStyleRowBandSize = this.TableStyleRowBandSize;
|
|||
|
TablePr.Jc = this.Jc;
|
|||
|
if (undefined != this.Shd) {
|
|||
|
TablePr.Shd = this.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Bottom) {
|
|||
|
TablePr.TableBorders.Bottom = this.TableBorders.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Left) {
|
|||
|
TablePr.TableBorders.Left = this.TableBorders.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Right) {
|
|||
|
TablePr.TableBorders.Right = this.TableBorders.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Top) {
|
|||
|
TablePr.TableBorders.Top = this.TableBorders.Top.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.InsideH) {
|
|||
|
TablePr.TableBorders.InsideH = this.TableBorders.InsideH.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.InsideV) {
|
|||
|
TablePr.TableBorders.InsideV = this.TableBorders.InsideV.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Bottom) {
|
|||
|
TablePr.TableCellMar.Bottom = this.TableCellMar.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Left) {
|
|||
|
TablePr.TableCellMar.Left = this.TableCellMar.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Right) {
|
|||
|
TablePr.TableCellMar.Right = this.TableCellMar.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Top) {
|
|||
|
TablePr.TableCellMar.Top = this.TableCellMar.Top.Copy();
|
|||
|
}
|
|||
|
TablePr.TableCellSpacing = this.TableCellSpacing;
|
|||
|
TablePr.TableInd = this.TableInd;
|
|||
|
if (undefined != this.TableW) {
|
|||
|
TablePr.TableW = this.TableW.Copy();
|
|||
|
}
|
|||
|
return TablePr;
|
|||
|
},
|
|||
|
Merge: function (TablePr) {
|
|||
|
if (undefined != TablePr.TableStyleColBandSize) {
|
|||
|
this.TableStyleColBandSize = TablePr.TableStyleColBandSize;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableStyleRowBandSize) {
|
|||
|
this.TableStyleRowBandSize = TablePr.TableStyleRowBandSize;
|
|||
|
}
|
|||
|
if (undefined != TablePr.Jc) {
|
|||
|
this.Jc = TablePr.Jc;
|
|||
|
}
|
|||
|
if (undefined != TablePr.Shd) {
|
|||
|
this.Shd = TablePr.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Bottom) {
|
|||
|
this.TableBorders.Bottom = TablePr.TableBorders.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Left) {
|
|||
|
this.TableBorders.Left = TablePr.TableBorders.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Right) {
|
|||
|
this.TableBorders.Right = TablePr.TableBorders.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Top) {
|
|||
|
this.TableBorders.Top = TablePr.TableBorders.Top.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.InsideH) {
|
|||
|
this.TableBorders.InsideH = TablePr.TableBorders.InsideH.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.InsideV) {
|
|||
|
this.TableBorders.InsideV = TablePr.TableBorders.InsideV.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom = TablePr.TableCellMar.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left = TablePr.TableCellMar.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right = TablePr.TableCellMar.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top = TablePr.TableCellMar.Top.Copy();
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar) {
|
|||
|
this.TableCellSpacing = TablePr.TableCellSpacing;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableInd) {
|
|||
|
this.TableInd = TablePr.TableInd;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableW) {
|
|||
|
this.TableW = TablePr.TableW.Copy();
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.TableStyleColBandSize = 1;
|
|||
|
this.TableStyleRowBandSize = 1;
|
|||
|
this.Jc = align_Left;
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.TableBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableBorders.Left = new CDocumentBorder();
|
|||
|
this.TableBorders.Right = new CDocumentBorder();
|
|||
|
this.TableBorders.Top = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideH = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideV = new CDocumentBorder();
|
|||
|
this.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Mm, 0);
|
|||
|
this.TableCellMar.Left = new CTableMeasurement(tblwidth_Mm, 5.75 * g_dKoef_pt_to_mm);
|
|||
|
this.TableCellMar.Right = new CTableMeasurement(tblwidth_Mm, 5.75 * g_dKoef_pt_to_mm);
|
|||
|
this.TableCellMar.Top = new CTableMeasurement(tblwidth_Mm, 0);
|
|||
|
this.TableCellSpacing = null;
|
|||
|
this.TableInd = 0;
|
|||
|
this.TableW = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
},
|
|||
|
Set_FromObject: function (TablePr) {
|
|||
|
this.TableStyleColBandSize = TablePr.TableStyleColBandSize;
|
|||
|
this.TableStyleRowBandSize = TablePr.TableStyleRowBandSize;
|
|||
|
this.Jc = TablePr.Jc;
|
|||
|
if (undefined != TablePr.Shd) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Set_FromObject(TablePr.Shd);
|
|||
|
} else {
|
|||
|
this.Shd = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders) {
|
|||
|
if (undefined != TablePr.TableBorders.Bottom) {
|
|||
|
this.TableBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableBorders.Bottom.Set_FromObject(TablePr.TableBorders.Bottom);
|
|||
|
} else {
|
|||
|
this.TableBorders.Bottom = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Left) {
|
|||
|
this.TableBorders.Left = new CDocumentBorder();
|
|||
|
this.TableBorders.Left.Set_FromObject(TablePr.TableBorders.Left);
|
|||
|
} else {
|
|||
|
this.TableBorders.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Right) {
|
|||
|
this.TableBorders.Right = new CDocumentBorder();
|
|||
|
this.TableBorders.Right.Set_FromObject(TablePr.TableBorders.Right);
|
|||
|
} else {
|
|||
|
this.TableBorders.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.Top) {
|
|||
|
this.TableBorders.Top = new CDocumentBorder();
|
|||
|
this.TableBorders.Top.Set_FromObject(TablePr.TableBorders.Top);
|
|||
|
} else {
|
|||
|
this.TableBorders.Top = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.InsideH) {
|
|||
|
this.TableBorders.InsideH = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideH.Set_FromObject(TablePr.TableBorders.InsideH);
|
|||
|
} else {
|
|||
|
this.TableBorders.InsideH = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableBorders.InsideV) {
|
|||
|
this.TableBorders.InsideV = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideV.Set_FromObject(TablePr.TableBorders.InsideV);
|
|||
|
} else {
|
|||
|
this.TableBorders.InsideV = undefined;
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.TableBorders.Bottom = undefined;
|
|||
|
this.TableBorders.Left = undefined;
|
|||
|
this.TableBorders.Right = undefined;
|
|||
|
this.TableBorders.Top = undefined;
|
|||
|
this.TableBorders.InsideH = undefined;
|
|||
|
this.TableBorders.InsideV = undefined;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar) {
|
|||
|
if (undefined != TablePr.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom = new CTableMeasurement(TablePr.TableCellMar.Bottom.Type, TablePr.TableCellMar.Bottom.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Bottom = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left = new CTableMeasurement(TablePr.TableCellMar.Left.Type, TablePr.TableCellMar.Left.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right = new CTableMeasurement(TablePr.TableCellMar.Right.Type, TablePr.TableCellMar.Right.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != TablePr.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top = new CTableMeasurement(TablePr.TableCellMar.Top.Type, TablePr.TableCellMar.Top.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Top = undefined;
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.TableCellMar.Bottom = undefined;
|
|||
|
this.TableCellMar.Left = undefined;
|
|||
|
this.TableCellMar.Right = undefined;
|
|||
|
this.TableCellMar.Top = undefined;
|
|||
|
}
|
|||
|
this.TableCellSpacing = TablePr.TableCellSpacing;
|
|||
|
this.TableInd = TablePr.TableInd;
|
|||
|
if (undefined != TablePr.TableW) {
|
|||
|
this.TableW = new CTableMeasurement(TablePr.TableW.Type, TablePr.TableW.W);
|
|||
|
} else {
|
|||
|
this.TableW = undefined;
|
|||
|
}
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.TableStyleColBandSize) {
|
|||
|
Writer.WriteLong(this.TableStyleColBandSize);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.TableStyleRowBandSize) {
|
|||
|
Writer.WriteLong(this.TableStyleRowBandSize);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.Jc) {
|
|||
|
Writer.WriteLong(this.Jc);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.Shd) {
|
|||
|
this.Shd.Write_ToBinary(Writer);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Bottom) {
|
|||
|
this.TableBorders.Bottom.Write_ToBinary(Writer);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Left) {
|
|||
|
this.TableBorders.Left.Write_ToBinary(Writer);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Right) {
|
|||
|
this.TableBorders.Right.Write_ToBinary(Writer);
|
|||
|
Flags |= 64;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.Top) {
|
|||
|
this.TableBorders.Top.Write_ToBinary(Writer);
|
|||
|
Flags |= 128;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.InsideH) {
|
|||
|
this.TableBorders.InsideH.Write_ToBinary(Writer);
|
|||
|
Flags |= 256;
|
|||
|
}
|
|||
|
if (undefined != this.TableBorders.InsideV) {
|
|||
|
this.TableBorders.InsideV.Write_ToBinary(Writer);
|
|||
|
Flags |= 512;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom.Write_ToBinary(Writer);
|
|||
|
Flags |= 1024;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left.Write_ToBinary(Writer);
|
|||
|
Flags |= 2048;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right.Write_ToBinary(Writer);
|
|||
|
Flags |= 4096;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top.Write_ToBinary(Writer);
|
|||
|
Flags |= 8192;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellSpacing) {
|
|||
|
if (null === this.TableCellSpacing) {
|
|||
|
Writer.WriteBool(true);
|
|||
|
} else {
|
|||
|
Writer.WriteBool(false);
|
|||
|
Writer.WriteDouble(this.TableCellSpacing);
|
|||
|
}
|
|||
|
Flags |= 16384;
|
|||
|
}
|
|||
|
if (undefined != this.TableInd) {
|
|||
|
Writer.WriteDouble(this.TableInd);
|
|||
|
Flags |= 32768;
|
|||
|
}
|
|||
|
if (undefined != this.TableW) {
|
|||
|
this.TableW.Write_ToBinary(Writer);
|
|||
|
Flags |= 65536;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (1 & Flags) {
|
|||
|
this.TableStyleColBandSize = Reader.GetLong();
|
|||
|
}
|
|||
|
if (2 & Flags) {
|
|||
|
this.TableStyleRowBandSize = Reader.GetLong();
|
|||
|
}
|
|||
|
if (4 & Flags) {
|
|||
|
this.Jc = Reader.GetLong();
|
|||
|
}
|
|||
|
if (8 & Flags) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (16 & Flags) {
|
|||
|
this.TableBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableBorders.Bottom.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (32 & Flags) {
|
|||
|
this.TableBorders.Left = new CDocumentBorder();
|
|||
|
this.TableBorders.Left.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (64 & Flags) {
|
|||
|
this.TableBorders.Right = new CDocumentBorder();
|
|||
|
this.TableBorders.Right.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (128 & Flags) {
|
|||
|
this.TableBorders.Top = new CDocumentBorder();
|
|||
|
this.TableBorders.Top.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (256 & Flags) {
|
|||
|
this.TableBorders.InsideH = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideH.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (512 & Flags) {
|
|||
|
this.TableBorders.InsideV = new CDocumentBorder();
|
|||
|
this.TableBorders.InsideV.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (1024 & Flags) {
|
|||
|
this.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Bottom.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (2048 & Flags) {
|
|||
|
this.TableCellMar.Left = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Left.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (4096 & Flags) {
|
|||
|
this.TableCellMar.Right = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Right.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (8192 & Flags) {
|
|||
|
this.TableCellMar.Top = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Top.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (16384 & Flags) {
|
|||
|
if (true === Reader.GetBool()) {
|
|||
|
this.TableCellSpacing = null;
|
|||
|
} else {
|
|||
|
this.TableCellSpacing = Reader.GetDouble();
|
|||
|
}
|
|||
|
}
|
|||
|
if (32768 & Flags) {
|
|||
|
this.TableInd = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (65536 & Flags) {
|
|||
|
this.TableW = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableW.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CTableRowHeight(Value, HRule) {
|
|||
|
this.Value = Value;
|
|||
|
this.HRule = HRule;
|
|||
|
}
|
|||
|
CTableRowHeight.prototype = {
|
|||
|
Copy: function () {
|
|||
|
return new CTableRowHeight(this.Value, this.HRule);
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
Writer.WriteDouble(this.Value);
|
|||
|
Writer.WriteLong(this.HRule);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
this.Value = Reader.GetDouble();
|
|||
|
this.HRule = Reader.GetLong();
|
|||
|
}
|
|||
|
};
|
|||
|
function CTableRowPr() {
|
|||
|
this.CantSplit = undefined;
|
|||
|
this.GridAfter = undefined;
|
|||
|
this.GridBefore = undefined;
|
|||
|
this.Jc = undefined;
|
|||
|
this.TableCellSpacing = undefined;
|
|||
|
this.Height = undefined;
|
|||
|
this.WAfter = undefined;
|
|||
|
this.WBefore = undefined;
|
|||
|
}
|
|||
|
CTableRowPr.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var RowPr = new CTableRowPr();
|
|||
|
RowPr.CantSplit = this.CantSplit;
|
|||
|
RowPr.GridAfter = this.GridAfter;
|
|||
|
RowPr.GridBefore = this.GridBefore;
|
|||
|
RowPr.Jc = this.Jc;
|
|||
|
RowPr.TableCellSpacing = this.TableCellSpacing;
|
|||
|
if (undefined != this.Height) {
|
|||
|
RowPr.Height = this.Height.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.WAfter) {
|
|||
|
RowPr.WAfter = this.WAfter.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.WBefore) {
|
|||
|
RowPr.WBefore = this.WBefore.Copy();
|
|||
|
}
|
|||
|
return RowPr;
|
|||
|
},
|
|||
|
Merge: function (RowPr) {
|
|||
|
if (undefined != RowPr.CantSplit) {
|
|||
|
this.CantSplit = RowPr.CantSplit;
|
|||
|
}
|
|||
|
if (undefined != RowPr.GridAfter) {
|
|||
|
this.GridAfter = RowPr.GridAfter;
|
|||
|
}
|
|||
|
if (undefined != RowPr.GridBefore) {
|
|||
|
this.GridBefore = RowPr.GridBefore;
|
|||
|
}
|
|||
|
if (undefined != RowPr.Jc) {
|
|||
|
this.Jc = RowPr.Jc;
|
|||
|
}
|
|||
|
if (undefined != RowPr.TableCellSpacing) {
|
|||
|
this.TableCellSpacing = RowPr.TableCellSpacing;
|
|||
|
}
|
|||
|
if (undefined != RowPr.Height) {
|
|||
|
this.Height = RowPr.Height.Copy();
|
|||
|
}
|
|||
|
if (undefined != RowPr.WAfter) {
|
|||
|
this.WAfter = RowPr.WAfter.Copy();
|
|||
|
}
|
|||
|
if (undefined != RowPr.WBefore) {
|
|||
|
this.WBefore = RowPr.WBefore.Copy();
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.CantSplit = false;
|
|||
|
this.GridAfter = 0;
|
|||
|
this.GridBefore = 0;
|
|||
|
this.Jc = align_Left;
|
|||
|
this.TableCellSpacing = null;
|
|||
|
this.Height = new CTableRowHeight(0, heightrule_Auto);
|
|||
|
this.WAfter = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.WBefore = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
},
|
|||
|
Set_FromObject: function (RowPr) {
|
|||
|
this.CantSplit = RowPr.CantSplit;
|
|||
|
this.GridAfter = RowPr.GridAfter;
|
|||
|
this.GridBefore = RowPr.GridBefore;
|
|||
|
this.Jc = RowPr.Jc;
|
|||
|
this.TableCellSpacing = RowPr.TableCellSpacing;
|
|||
|
if (undefined != RowPr.Height) {
|
|||
|
this.Height = new CTableRowHeight(RowPr.Height.Value, RowPr.Height.HRule);
|
|||
|
} else {
|
|||
|
this.Height = undefined;
|
|||
|
}
|
|||
|
if (undefined != RowPr.WAfter) {
|
|||
|
this.WAfter = new CTableMeasurement(RowPr.WAfter.Type, RowPr.WAfter.W);
|
|||
|
} else {
|
|||
|
this.WAfter = undefined;
|
|||
|
}
|
|||
|
if (undefined != RowPr.WBefore) {
|
|||
|
this.WBefore = new CTableMeasurement(RowPr.WBefore.Type, RowPr.WBefore.W);
|
|||
|
} else {
|
|||
|
this.WBefore = undefined;
|
|||
|
}
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.CantSplit) {
|
|||
|
Writer.WriteBool(this.CantSplit);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.GridAfter) {
|
|||
|
Writer.WriteLong(this.GridAfter);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.GridBefore) {
|
|||
|
Writer.WriteLong(this.GridBefore);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.Jc) {
|
|||
|
Writer.WriteLong(this.Jc);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellSpacing) {
|
|||
|
if (null === this.TableCellSpacing) {
|
|||
|
Writer.WriteBool(true);
|
|||
|
} else {
|
|||
|
Writer.WriteBool(false);
|
|||
|
Writer.WriteDouble(this.TableCellSpacing);
|
|||
|
}
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.Height) {
|
|||
|
this.Height.Write_ToBinary(Writer);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
if (undefined != this.WAfter) {
|
|||
|
this.WAfter.Write_ToBinary(Writer);
|
|||
|
Flags |= 64;
|
|||
|
}
|
|||
|
if (undefined != this.WBefore) {
|
|||
|
this.WBefore.Write_ToBinary(Writer);
|
|||
|
Flags |= 128;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (1 & Flags) {
|
|||
|
this.CantSplit = Reader.GetBool();
|
|||
|
}
|
|||
|
if (2 & Flags) {
|
|||
|
this.GridAfter = Reader.GetLong();
|
|||
|
}
|
|||
|
if (4 & Flags) {
|
|||
|
this.GridBefore = Reader.GetLong();
|
|||
|
}
|
|||
|
if (8 & Flags) {
|
|||
|
this.Jc = Reader.GetLong();
|
|||
|
}
|
|||
|
if (16 & Flags) {
|
|||
|
if (true === Reader.GetBool()) {
|
|||
|
this.TableCellSpacing = Reader.GetLong();
|
|||
|
} else {
|
|||
|
this.TableCellSpacing = Reader.GetDouble();
|
|||
|
}
|
|||
|
}
|
|||
|
if (32 & Flags) {
|
|||
|
this.Height = new CTableRowHeight(0, heightrule_Auto);
|
|||
|
this.Height.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (64 & Flags) {
|
|||
|
this.WAfter = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.WAfter.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (128 & Flags) {
|
|||
|
this.WBefore = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.WBefore.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CTableCellPr() {
|
|||
|
this.GridSpan = undefined;
|
|||
|
this.Shd = undefined;
|
|||
|
this.TableCellMar = undefined;
|
|||
|
this.TableCellBorders = {
|
|||
|
Bottom: undefined,
|
|||
|
Left: undefined,
|
|||
|
Right: undefined,
|
|||
|
Top: undefined
|
|||
|
};
|
|||
|
this.TableCellW = undefined;
|
|||
|
this.VAlign = undefined;
|
|||
|
this.VMerge = undefined;
|
|||
|
}
|
|||
|
CTableCellPr.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var CellPr = new CTableCellPr();
|
|||
|
CellPr.GridSpan = this.GridSpan;
|
|||
|
if (undefined != this.Shd) {
|
|||
|
CellPr.Shd = this.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined === this.TableCellMar) {
|
|||
|
CellPr.TableCellMar = undefined;
|
|||
|
} else {
|
|||
|
if (null === this.TableCellMar) {
|
|||
|
CellPr.TableCellMar = null;
|
|||
|
} else {
|
|||
|
CellPr.TableCellMar = new Object();
|
|||
|
CellPr.TableCellMar.Bottom = this.TableCellMar.Bottom.Copy();
|
|||
|
CellPr.TableCellMar.Left = this.TableCellMar.Left.Copy();
|
|||
|
CellPr.TableCellMar.Right = this.TableCellMar.Right.Copy();
|
|||
|
CellPr.TableCellMar.Top = this.TableCellMar.Top.Copy();
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Bottom) {
|
|||
|
CellPr.TableCellBorders.Bottom = this.TableCellBorders.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Left) {
|
|||
|
CellPr.TableCellBorders.Left = this.TableCellBorders.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Right) {
|
|||
|
CellPr.TableCellBorders.Right = this.TableCellBorders.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Top) {
|
|||
|
CellPr.TableCellBorders.Top = this.TableCellBorders.Top.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.TableCellW) {
|
|||
|
CellPr.TableCellW = this.TableCellW.Copy();
|
|||
|
}
|
|||
|
CellPr.VAlign = this.VAlign;
|
|||
|
CellPr.VMerge = this.VMerge;
|
|||
|
return CellPr;
|
|||
|
},
|
|||
|
Merge: function (CellPr) {
|
|||
|
if (undefined != CellPr.GridSpan) {
|
|||
|
this.GridSpan = CellPr.GridSpan;
|
|||
|
}
|
|||
|
if (undefined != CellPr.Shd) {
|
|||
|
this.Shd = CellPr.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined === CellPr.TableCellMar) {} else {
|
|||
|
if (null === CellPr.TableCellMar) {
|
|||
|
this.TableCellMar = null;
|
|||
|
} else {
|
|||
|
this.TableCellMar = new Object();
|
|||
|
if (CellPr.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom = CellPr.TableCellMar.Bottom.Copy();
|
|||
|
}
|
|||
|
if (CellPr.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left = CellPr.TableCellMar.Left.Copy();
|
|||
|
}
|
|||
|
if (CellPr.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right = CellPr.TableCellMar.Right.Copy();
|
|||
|
}
|
|||
|
if (CellPr.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top = CellPr.TableCellMar.Top.Copy();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Bottom) {
|
|||
|
this.TableCellBorders.Bottom = CellPr.TableCellBorders.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Left) {
|
|||
|
this.TableCellBorders.Left = CellPr.TableCellBorders.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Right) {
|
|||
|
this.TableCellBorders.Right = CellPr.TableCellBorders.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Top) {
|
|||
|
this.TableCellBorders.Top = CellPr.TableCellBorders.Top.Copy();
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellW) {
|
|||
|
this.TableCellW = CellPr.TableCellW.Copy();
|
|||
|
}
|
|||
|
if (undefined != CellPr.VAlign) {
|
|||
|
this.VAlign = CellPr.VAlign;
|
|||
|
}
|
|||
|
if (undefined != CellPr.VMerge) {
|
|||
|
this.VMerge = CellPr.VMerge;
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.GridSpan = 1;
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.TableCellMar = null;
|
|||
|
this.TableCellBorders.Bottom = undefined;
|
|||
|
this.TableCellBorders.Left = undefined;
|
|||
|
this.TableCellBorders.Right = undefined;
|
|||
|
this.TableCellBorders.Top = undefined;
|
|||
|
this.TableCellW = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.VAlign = vertalignjc_Top;
|
|||
|
this.VMerge = vmerge_Restart;
|
|||
|
},
|
|||
|
Set_FromObject: function (CellPr) {
|
|||
|
this.GridSpan = CellPr.GridSpan;
|
|||
|
if (undefined != CellPr.Shd) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Set_FromObject(CellPr.Shd);
|
|||
|
} else {
|
|||
|
this.Shd = undefined;
|
|||
|
}
|
|||
|
if (undefined === CellPr.TableCellMar) {
|
|||
|
this.TableCellMar = undefined;
|
|||
|
} else {
|
|||
|
if (null === CellPr.TableCellMar) {
|
|||
|
this.TableCellMar = null;
|
|||
|
} else {
|
|||
|
this.TableCellMar = new Object();
|
|||
|
if (undefined != CellPr.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom = new CTableMeasurement(CellPr.TableCellMar.Bottom.Type, CellPr.TableCellMar.Bottom.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Bottom = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left = new CTableMeasurement(CellPr.TableCellMar.Left.Type, CellPr.TableCellMar.Left.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right = new CTableMeasurement(CellPr.TableCellMar.Right.Type, CellPr.TableCellMar.Right.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top = new CTableMeasurement(CellPr.TableCellMar.Top.Type, CellPr.TableCellMar.Top.W);
|
|||
|
} else {
|
|||
|
this.TableCellMar.Top = undefined;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders) {
|
|||
|
if (undefined != CellPr.TableCellBorders.Bottom) {
|
|||
|
this.TableCellBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Bottom.Set_FromObject(CellPr.TableCellBorders.Bottom);
|
|||
|
} else {
|
|||
|
this.TableCellBorders.Bottom = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Left) {
|
|||
|
this.TableCellBorders.Left = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Left.Set_FromObject(CellPr.TableCellBorders.Left);
|
|||
|
} else {
|
|||
|
this.TableCellBorders.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Right) {
|
|||
|
this.TableCellBorders.Right = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Right.Set_FromObject(CellPr.TableCellBorders.Right);
|
|||
|
} else {
|
|||
|
this.TableCellBorders.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != CellPr.TableCellBorders.Top) {
|
|||
|
this.TableCellBorders.Top = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Top.Set_FromObject(CellPr.TableCellBorders.Top);
|
|||
|
} else {
|
|||
|
this.TableCellBorders.Top = undefined;
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.TableCellBorders.Bottom = undefined;
|
|||
|
this.TableCellBorders.Left = undefined;
|
|||
|
this.TableCellBorders.Right = undefined;
|
|||
|
this.TableCellBorders.Top = undefined;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellW) {
|
|||
|
this.TableCellW = new CTableMeasurement(CellPr.TableCellW.Type, CellPr.TableCellW.W);
|
|||
|
} else {
|
|||
|
this.TableCellW = undefined;
|
|||
|
}
|
|||
|
this.VAlign = CellPr.VAlign;
|
|||
|
this.VMerge = CellPr.VMerge;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.GridSpan) {
|
|||
|
Writer.WriteLong(this.GridSpan);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.Shd) {
|
|||
|
this.Shd.Write_ToBinary(Writer);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar) {
|
|||
|
if (null === this.TableCellMar) {
|
|||
|
Flags |= 4;
|
|||
|
} else {
|
|||
|
if (undefined != this.TableCellMar.Bottom) {
|
|||
|
this.TableCellMar.Bottom.Write_ToBinary(Writer);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Left) {
|
|||
|
this.TableCellMar.Left.Write_ToBinary(Writer);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Right) {
|
|||
|
this.TableCellMar.Right.Write_ToBinary(Writer);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellMar.Top) {
|
|||
|
this.TableCellMar.Top.Write_ToBinary(Writer);
|
|||
|
Flags |= 64;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Bottom) {
|
|||
|
this.TableCellBorders.Bottom.Write_ToBinary(Writer);
|
|||
|
Flags |= 128;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Left) {
|
|||
|
this.TableCellBorders.Left.Write_ToBinary(Writer);
|
|||
|
Flags |= 256;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Right) {
|
|||
|
this.TableCellBorders.Right.Write_ToBinary(Writer);
|
|||
|
Flags |= 512;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellBorders.Top) {
|
|||
|
this.TableCellBorders.Top.Write_ToBinary(Writer);
|
|||
|
Flags |= 1024;
|
|||
|
}
|
|||
|
if (undefined != this.TableCellW) {
|
|||
|
this.TableCellW.Write_ToBinary(Writer);
|
|||
|
Flags |= 2048;
|
|||
|
}
|
|||
|
if (undefined != this.VAlign) {
|
|||
|
Writer.WriteLong(this.VAlign);
|
|||
|
Flags |= 4096;
|
|||
|
}
|
|||
|
if (undefined != this.VMerge) {
|
|||
|
Writer.WriteLong(this.VMerge);
|
|||
|
Flags |= 8192;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (1 & Flags) {
|
|||
|
this.GridSpan = Reader.GetLong();
|
|||
|
}
|
|||
|
if (2 & Flags) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (4 & Flags) {
|
|||
|
this.TableCellMar = null;
|
|||
|
} else {
|
|||
|
this.TableCellMar = new Object();
|
|||
|
if (8 & Flags) {
|
|||
|
this.TableCellMar.Bottom = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Bottom.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (16 & Flags) {
|
|||
|
this.TableCellMar.Left = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Left.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (32 & Flags) {
|
|||
|
this.TableCellMar.Right = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Right.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (64 & Flags) {
|
|||
|
this.TableCellMar.Top = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellMar.Top.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
}
|
|||
|
if (128 & Flags) {
|
|||
|
this.TableCellBorders.Bottom = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Bottom.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (256 & Flags) {
|
|||
|
this.TableCellBorders.Left = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Left.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (512 & Flags) {
|
|||
|
this.TableCellBorders.Right = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Right.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (1024 & Flags) {
|
|||
|
this.TableCellBorders.Top = new CDocumentBorder();
|
|||
|
this.TableCellBorders.Top.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (2048 & Flags) {
|
|||
|
this.TableCellW = new CTableMeasurement(tblwidth_Auto, 0);
|
|||
|
this.TableCellW.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (4096 & Flags) {
|
|||
|
this.VAlign = Reader.GetLong();
|
|||
|
}
|
|||
|
if (8192 & Flags) {
|
|||
|
this.VMerge = Reader.GetLong();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CTextPr() {
|
|||
|
this.Bold = undefined;
|
|||
|
this.Italic = undefined;
|
|||
|
this.Strikeout = undefined;
|
|||
|
this.Underline = undefined;
|
|||
|
this.FontFamily = undefined;
|
|||
|
this.FontSize = undefined;
|
|||
|
this.Color = undefined;
|
|||
|
this.VertAlign = undefined;
|
|||
|
this.HighLight = undefined;
|
|||
|
this.RStyle = undefined;
|
|||
|
this.Spacing = undefined;
|
|||
|
this.DStrikeout = undefined;
|
|||
|
this.Caps = undefined;
|
|||
|
this.SmallCaps = undefined;
|
|||
|
this.Position = undefined;
|
|||
|
this.RFonts = new CRFonts();
|
|||
|
this.BoldCS = undefined;
|
|||
|
this.ItalicCS = undefined;
|
|||
|
this.FontSizeCS = undefined;
|
|||
|
this.CS = undefined;
|
|||
|
this.RTL = undefined;
|
|||
|
this.Lang = new CLang();
|
|||
|
}
|
|||
|
CTextPr.prototype = {
|
|||
|
Clear: function () {
|
|||
|
this.Bold = undefined;
|
|||
|
this.Italic = undefined;
|
|||
|
this.Strikeout = undefined;
|
|||
|
this.Underline = undefined;
|
|||
|
this.FontFamily = undefined;
|
|||
|
this.FontSize = undefined;
|
|||
|
this.Color = undefined;
|
|||
|
this.VertAlign = undefined;
|
|||
|
this.HighLight = undefined;
|
|||
|
this.RStyle = undefined;
|
|||
|
this.Spacing = undefined;
|
|||
|
this.DStrikeout = undefined;
|
|||
|
this.Caps = undefined;
|
|||
|
this.SmallCaps = undefined;
|
|||
|
this.Position = undefined;
|
|||
|
this.RFonts = new CRFonts();
|
|||
|
this.BoldCS = undefined;
|
|||
|
this.ItalicCS = undefined;
|
|||
|
this.FontSizeCS = undefined;
|
|||
|
this.CS = undefined;
|
|||
|
this.RTL = undefined;
|
|||
|
this.Lang = new CLang();
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var TextPr = new CTextPr();
|
|||
|
TextPr.Bold = this.Bold;
|
|||
|
TextPr.Italic = this.Italic;
|
|||
|
TextPr.Strikeout = this.Strikeout;
|
|||
|
TextPr.Underline = this.Underline;
|
|||
|
if (undefined != this.FontFamily) {
|
|||
|
TextPr.FontFamily = new Object();
|
|||
|
TextPr.FontFamily.Name = this.FontFamily.Name;
|
|||
|
TextPr.FontFamily.Index = this.FontFamily.Index;
|
|||
|
}
|
|||
|
TextPr.FontSize = this.FontSize;
|
|||
|
if (undefined != this.Color) {
|
|||
|
TextPr.Color = new CDocumentColor(this.Color.r, this.Color.g, this.Color.b);
|
|||
|
}
|
|||
|
TextPr.VertAlign = this.VertAlign;
|
|||
|
if (undefined === this.HighLight) {
|
|||
|
TextPr.HighLight = undefined;
|
|||
|
} else {
|
|||
|
if (highlight_None === this.HighLight) {
|
|||
|
TextPr.HighLight = highlight_None;
|
|||
|
} else {
|
|||
|
TextPr.HighLight = this.HighLight.Copy();
|
|||
|
}
|
|||
|
}
|
|||
|
TextPr.RStyle = this.RStyle;
|
|||
|
TextPr.Spacing = this.Spacing;
|
|||
|
TextPr.DStrikeout = this.DStrikeout;
|
|||
|
TextPr.Caps = this.Caps;
|
|||
|
TextPr.SmallCaps = this.SmallCaps;
|
|||
|
TextPr.Position = this.Position;
|
|||
|
TextPr.RFonts = this.RFonts.Copy();
|
|||
|
TextPr.BoldCS = this.BoldCS;
|
|||
|
TextPr.ItalicCS = this.ItalicCS;
|
|||
|
TextPr.FontSizeCS = this.FontSizeCS;
|
|||
|
TextPr.CS = this.CS;
|
|||
|
TextPr.RTL = this.RTL;
|
|||
|
TextPr.Lang = this.Lang.Copy();
|
|||
|
if (isRealObject(this.unifill)) {
|
|||
|
TextPr.unifill = this.unifill.createDuplicate();
|
|||
|
}
|
|||
|
return TextPr;
|
|||
|
},
|
|||
|
Merge: function (TextPr) {
|
|||
|
if (undefined != TextPr.Bold) {
|
|||
|
this.Bold = TextPr.Bold;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Italic) {
|
|||
|
this.Italic = TextPr.Italic;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Strikeout) {
|
|||
|
this.Strikeout = TextPr.Strikeout;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Underline) {
|
|||
|
this.Underline = TextPr.Underline;
|
|||
|
}
|
|||
|
if (undefined != TextPr.FontFamily) {
|
|||
|
this.FontFamily = new Object();
|
|||
|
this.FontFamily.Name = TextPr.FontFamily.Name;
|
|||
|
this.FontFamily.Index = TextPr.FontFamily.Index;
|
|||
|
}
|
|||
|
if (undefined != TextPr.FontSize) {
|
|||
|
this.FontSize = TextPr.FontSize;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Color) {
|
|||
|
this.Color = TextPr.Color.Copy();
|
|||
|
}
|
|||
|
if (undefined != TextPr.VertAlign) {
|
|||
|
this.VertAlign = TextPr.VertAlign;
|
|||
|
}
|
|||
|
if (undefined === TextPr.HighLight) {} else {
|
|||
|
if (highlight_None === TextPr.HighLight) {
|
|||
|
this.HighLight = highlight_None;
|
|||
|
} else {
|
|||
|
this.HighLight = TextPr.HighLight.Copy();
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != TextPr.RStyle) {
|
|||
|
this.RStyle = TextPr.RStyle;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Spacing) {
|
|||
|
this.Spacing = TextPr.Spacing;
|
|||
|
}
|
|||
|
if (undefined != TextPr.DStrikeout) {
|
|||
|
this.DStrikeout = TextPr.DStrikeout;
|
|||
|
}
|
|||
|
if (undefined != TextPr.SmallCaps) {
|
|||
|
this.SmallCaps = TextPr.SmallCaps;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Caps) {
|
|||
|
this.Caps = TextPr.Caps;
|
|||
|
}
|
|||
|
if (undefined != TextPr.Position) {
|
|||
|
this.Position = TextPr.Position;
|
|||
|
}
|
|||
|
this.RFonts.Merge(TextPr.RFonts);
|
|||
|
if (undefined != TextPr.BoldCS) {
|
|||
|
this.BoldCS = TextPr.BoldCS;
|
|||
|
}
|
|||
|
if (undefined != TextPr.ItalicCS) {
|
|||
|
this.ItalicCS = TextPr.ItalicCS;
|
|||
|
}
|
|||
|
if (undefined != TextPr.FontSizeCS) {
|
|||
|
this.FontSizeCS = TextPr.FontSizeCS;
|
|||
|
}
|
|||
|
if (undefined != TextPr.CS) {
|
|||
|
this.CS = TextPr.CS;
|
|||
|
}
|
|||
|
if (undefined != TextPr.RTL) {
|
|||
|
this.RTL = TextPr.RTL;
|
|||
|
}
|
|||
|
this.Lang.Merge(TextPr.Lang);
|
|||
|
if (isRealObject(TextPr.unifill) && isRealObject(TextPr.unifill.fill)) {
|
|||
|
this.unifill = TextPr.unifill.createDuplicate();
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.Bold = false;
|
|||
|
this.Italic = false;
|
|||
|
this.Underline = false;
|
|||
|
this.Strikeout = false;
|
|||
|
this.FontFamily = {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
this.FontSize = 11;
|
|||
|
this.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.VertAlign = vertalign_Baseline;
|
|||
|
this.HighLight = highlight_None;
|
|||
|
this.RStyle = undefined;
|
|||
|
this.Spacing = 0;
|
|||
|
this.DStrikeout = false;
|
|||
|
this.SmallCaps = false;
|
|||
|
this.Caps = false;
|
|||
|
this.Position = 0;
|
|||
|
this.RFonts.Init_Default();
|
|||
|
this.BoldCS = false;
|
|||
|
this.ItalicCS = false;
|
|||
|
this.FontSizeCS = 11;
|
|||
|
this.CS = false;
|
|||
|
this.RTL = false;
|
|||
|
this.Lang.Init_Default();
|
|||
|
},
|
|||
|
Set_FromObject: function (TextPr) {
|
|||
|
this.Bold = TextPr.Bold;
|
|||
|
this.Italic = TextPr.Italic;
|
|||
|
this.Strikeout = TextPr.Strikeout;
|
|||
|
this.Underline = TextPr.Underline;
|
|||
|
if (undefined != TextPr.FontFamily) {
|
|||
|
this.FontFamily = new Object();
|
|||
|
this.FontFamily.Name = TextPr.FontFamily.Name;
|
|||
|
this.FontFamily.Index = TextPr.FontFamily.Index;
|
|||
|
} else {
|
|||
|
this.FontFamily = undefined;
|
|||
|
}
|
|||
|
this.FontSize = TextPr.FontSize;
|
|||
|
if (undefined != TextPr.Color) {
|
|||
|
this.Color = new CDocumentColor(TextPr.Color.r, TextPr.Color.g, TextPr.Color.b);
|
|||
|
} else {
|
|||
|
this.Color = undefined;
|
|||
|
}
|
|||
|
this.VertAlign = TextPr.VertAlign;
|
|||
|
if (undefined === TextPr.HighLight) {
|
|||
|
this.HighLight = undefined;
|
|||
|
} else {
|
|||
|
if (highlight_None === TextPr.HighLight) {
|
|||
|
this.HighLight = highlight_None;
|
|||
|
} else {
|
|||
|
this.HighLight = new CDocumentColor(TextPr.HighLight.r, TextPr.HighLight.g, TextPr.HighLight.b);
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != TextPr.RStyle) {
|
|||
|
this.RStyle = TextPr.RStyle;
|
|||
|
}
|
|||
|
this.Spacing = TextPr.Spacing;
|
|||
|
this.DStrikeout = TextPr.DStrikeout;
|
|||
|
this.Caps = TextPr.Caps;
|
|||
|
this.SmallCaps = TextPr.SmallCaps;
|
|||
|
this.Position = TextPr.Position;
|
|||
|
if (undefined != TextPr.RFonts) {
|
|||
|
this.RFonts.Set_FromObject(TextPr.RFonts);
|
|||
|
}
|
|||
|
this.BoldCS = TextPr.BoldCS;
|
|||
|
this.ItalicCS = TextPr.ItalicCS;
|
|||
|
this.FontSizeCS = TextPr.FontSizeCS;
|
|||
|
this.CS = TextPr.CS;
|
|||
|
this.RTL = TextPr.RTL;
|
|||
|
if (undefined != TextPr.Lang) {
|
|||
|
this.Lang.Set_FromObject(TextPr.Lang);
|
|||
|
}
|
|||
|
if (isRealObject(TextPr.unifill)) {
|
|||
|
this.unifill = TextPr.unifill.createDuplicate();
|
|||
|
}
|
|||
|
},
|
|||
|
Compare: function (TextPr) {
|
|||
|
var Result_TextPr = new CTextPr();
|
|||
|
if (this.Bold === TextPr.Bold) {
|
|||
|
Result_TextPr.Bold = TextPr.Bold;
|
|||
|
}
|
|||
|
if (this.Italic === TextPr.Italic) {
|
|||
|
Result_TextPr.Italic = TextPr.Italic;
|
|||
|
}
|
|||
|
if (this.Strikeout === TextPr.Strikeout) {
|
|||
|
Result_TextPr.Strikeout = TextPr.Strikeout;
|
|||
|
}
|
|||
|
if (this.Underline === TextPr.Underline) {
|
|||
|
Result_TextPr.Underline = TextPr.Underline;
|
|||
|
}
|
|||
|
if (undefined != this.FontFamily && undefined != TextPr.FontFamily && this.FontFamily.Name === TextPr.FontFamily.Name) {
|
|||
|
Result_TextPr.FontFamily = {};
|
|||
|
Result_TextPr.FontFamily.Name = TextPr.FontFamily.Name;
|
|||
|
Result_TextPr.FontFamily.Index = -1;
|
|||
|
}
|
|||
|
if (undefined != this.FontSize && undefined != TextPr.FontSize && Math.abs(this.FontSize - TextPr.FontSize) < 0.001) {
|
|||
|
Result_TextPr.FontSize = TextPr.FontSize;
|
|||
|
}
|
|||
|
if (undefined != this.Color && undefined != TextPr.Color && true === this.Color.Compare(TextPr.Color)) {
|
|||
|
Result_TextPr.Color = new CDocumentColor(TextPr.Color.r, TextPr.Color.g, TextPr.Color.b);
|
|||
|
}
|
|||
|
if (this.VertAlign === TextPr.VertAlign) {
|
|||
|
Result_TextPr.VertAlign = TextPr.VertAlign;
|
|||
|
}
|
|||
|
if (undefined != this.HighLight && undefined != TextPr.HighLight) {
|
|||
|
if (highlight_None === this.HighLight && highlight_None === TextPr.HighLight) {
|
|||
|
Result_TextPr.HighLight = highlight_None;
|
|||
|
} else {
|
|||
|
if (highlight_None != this.HighLight && highlight_None != TextPr.HighLight && this.HighLight.Compare(TextPr.HighLight)) {
|
|||
|
Result_TextPr.HighLight = new CDocumentColor(TextPr.HighLight.r, TextPr.HighLight.g, TextPr.HighLight.b);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != this.RStyle && undefined != TextPr.RStyle && this.RStyle === TextPr.RStyle) {
|
|||
|
Result_TextPr.RStyle = TextPr.RStyle;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing && undefined != TextPr.Spacing && Math.abs(this.Spacing - TextPr.Spacing) < 0.001) {
|
|||
|
Result_TextPr.Spacing = TextPr.Spacing;
|
|||
|
}
|
|||
|
if (undefined != this.DStrikeout && undefined != TextPr.DStrikeout && this.DStrikeout === TextPr.DStrikeout) {
|
|||
|
Result_TextPr.DStrikeout = TextPr.DStrikeout;
|
|||
|
}
|
|||
|
if (undefined != this.Caps && undefined != TextPr.Caps && this.Caps === TextPr.Caps) {
|
|||
|
Result_TextPr.Caps = TextPr.Caps;
|
|||
|
}
|
|||
|
if (undefined != this.SmallCaps && undefined != TextPr.SmallCaps && this.SmallCaps === TextPr.SmallCaps) {
|
|||
|
Result_TextPr.SmallCaps = TextPr.SmallCaps;
|
|||
|
}
|
|||
|
if (undefined != this.Position && undefined != TextPr.Position && Math.abs(this.Position - TextPr.Position) < 0.001) {
|
|||
|
Result_TextPr.Position = TextPr.Position;
|
|||
|
}
|
|||
|
Result_TextPr.RFonts = this.RFonts.Compare(TextPr.RFonts);
|
|||
|
if (this.BoldCS === TextPr.BoldCS) {
|
|||
|
Result_TextPr.BoldCS = TextPr.BoldCS;
|
|||
|
}
|
|||
|
if (this.ItalicCS === TextPr.ItalicCS) {
|
|||
|
Result_TextPr.ItalicCS = TextPr.ItalicCS;
|
|||
|
}
|
|||
|
if (undefined != this.FontSizeCS && undefined != TextPr.FontSizeCS && Math.abs(this.FontSizeCS - TextPr.FontSizeCS) < 0.001) {
|
|||
|
Result_TextPr.FontSizeCS = TextPr.FontSizeCS;
|
|||
|
}
|
|||
|
if (this.CS === TextPr.CS) {
|
|||
|
Result_TextPr.CS = TextPr.CS;
|
|||
|
}
|
|||
|
if (this.RTL === TextPr.RTL) {
|
|||
|
Result_TextPr.RTL = TextPr.RTL;
|
|||
|
}
|
|||
|
Result_TextPr.Lang = this.Lang.Compare(TextPr.Lang);
|
|||
|
return Result_TextPr;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.Bold) {
|
|||
|
Writer.WriteBool(this.Bold);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.Italic) {
|
|||
|
Writer.WriteBool(this.Italic);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.Underline) {
|
|||
|
Writer.WriteBool(this.Underline);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.Strikeout) {
|
|||
|
Writer.WriteBool(this.Strikeout);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.FontFamily) {
|
|||
|
Writer.WriteString2(this.FontFamily.Name);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.FontSize) {
|
|||
|
Writer.WriteDouble(this.FontSize);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
if (undefined != this.Color) {
|
|||
|
this.Color.Write_ToBinary(Writer);
|
|||
|
Flags |= 64;
|
|||
|
}
|
|||
|
if (undefined != this.VertAlign) {
|
|||
|
Writer.WriteLong(this.VertAlign);
|
|||
|
Flags |= 128;
|
|||
|
}
|
|||
|
if (undefined != this.HighLight) {
|
|||
|
if (highlight_None === this.HighLight) {
|
|||
|
Writer.WriteLong(highlight_None);
|
|||
|
} else {
|
|||
|
Writer.WriteLong(0);
|
|||
|
this.HighLight.Write_ToBinary(Writer);
|
|||
|
}
|
|||
|
Flags |= 256;
|
|||
|
}
|
|||
|
if (undefined != this.RStyle) {
|
|||
|
Writer.WriteString2(this.RStyle);
|
|||
|
Flags |= 512;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing) {
|
|||
|
Writer.WriteDouble(this.Spacing);
|
|||
|
Flags |= 1024;
|
|||
|
}
|
|||
|
if (undefined != this.DStrikeout) {
|
|||
|
Writer.WriteBool(this.DStrikeout);
|
|||
|
Flags |= 2048;
|
|||
|
}
|
|||
|
if (undefined != this.Caps) {
|
|||
|
Writer.WriteBool(this.Caps);
|
|||
|
Flags |= 4096;
|
|||
|
}
|
|||
|
if (undefined != this.SmallCaps) {
|
|||
|
Writer.WriteBool(this.SmallCaps);
|
|||
|
Flags |= 8192;
|
|||
|
}
|
|||
|
if (undefined != this.Position) {
|
|||
|
Writer.WriteDouble(this.Position);
|
|||
|
Flags |= 16384;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts) {
|
|||
|
this.RFonts.Write_ToBinary(Writer);
|
|||
|
Flags |= 32768;
|
|||
|
}
|
|||
|
if (undefined != this.BoldCS) {
|
|||
|
Writer.WriteBool(this.BoldCS);
|
|||
|
Flags |= 65536;
|
|||
|
}
|
|||
|
if (undefined != this.ItalicCS) {
|
|||
|
Writer.WriteBool(this.ItalicCS);
|
|||
|
Flags |= 131072;
|
|||
|
}
|
|||
|
if (undefined != this.FontSizeCS) {
|
|||
|
Writer.WriteDouble(this.FontSizeCS);
|
|||
|
Flags |= 262144;
|
|||
|
}
|
|||
|
if (undefined != this.CS) {
|
|||
|
Writer.WriteBool(this.CS);
|
|||
|
Flags |= 524288;
|
|||
|
}
|
|||
|
if (undefined != this.RTL) {
|
|||
|
Writer.WriteBool(this.RTL);
|
|||
|
Flags |= 1048576;
|
|||
|
}
|
|||
|
if (undefined != this.Lang) {
|
|||
|
this.Lang.Write_ToBinary(Writer);
|
|||
|
Flags |= 2097152;
|
|||
|
}
|
|||
|
Writer.WriteBool(isRealObject(this.unifill));
|
|||
|
if (isRealObject(this.unifill)) {
|
|||
|
this.unifill.Write_ToBinary2(Writer);
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.Bold = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.Italic = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.Underline = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 8) {
|
|||
|
this.Strikeout = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 16) {
|
|||
|
this.FontFamily = {
|
|||
|
Name: Reader.GetString2(),
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
}
|
|||
|
if (Flags & 32) {
|
|||
|
this.FontSize = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 64) {
|
|||
|
this.Color = new CDocumentColor(0, 0, 0);
|
|||
|
this.Color.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 128) {
|
|||
|
this.VertAlign = Reader.GetLong();
|
|||
|
}
|
|||
|
if (Flags & 256) {
|
|||
|
var HL_type = Reader.GetLong();
|
|||
|
if (highlight_None == HL_type) {
|
|||
|
this.HighLight = highlight_None;
|
|||
|
} else {
|
|||
|
this.HighLight = new CDocumentColor(0, 0, 0);
|
|||
|
this.HighLight.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
}
|
|||
|
if (Flags & 512) {
|
|||
|
this.RStyle = Reader.GetString2();
|
|||
|
}
|
|||
|
if (Flags & 1024) {
|
|||
|
this.Spacing = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 2048) {
|
|||
|
this.DStrikeout = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 4096) {
|
|||
|
this.Caps = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 8192) {
|
|||
|
this.SmallCaps = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 16384) {
|
|||
|
this.Position = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 32768) {
|
|||
|
this.RFonts.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 65536) {
|
|||
|
this.BoldCS = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 131072) {
|
|||
|
this.ItalicCS = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 262144) {
|
|||
|
this.FontSizeCS = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 524288) {
|
|||
|
this.CS = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 1048576) {
|
|||
|
this.RTL = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 2097152) {
|
|||
|
this.Lang.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Reader.GetBool()) {
|
|||
|
this.unifill = new CUniFill();
|
|||
|
this.unifill.Read_FromBinary2(Reader);
|
|||
|
}
|
|||
|
},
|
|||
|
Check_NeedRecalc: function () {
|
|||
|
if (undefined != this.Bold) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.Italic) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.FontFamily) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.FontSize) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.VertAlign) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.Caps) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.SmallCaps) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.Position) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.Ascii) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.EastAsia) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.HAnsi) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.CS) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.RTL || undefined != this.CS || undefined != this.BoldCS || undefined != this.ItalicCS || undefined != this.FontSizeCS) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if (undefined != this.Lang.Val) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
return false;
|
|||
|
},
|
|||
|
Get_FontKoef: function () {
|
|||
|
var dFontKoef = 1;
|
|||
|
switch (this.VertAlign) {
|
|||
|
case vertalign_Baseline:
|
|||
|
dFontKoef = 1;
|
|||
|
break;
|
|||
|
case vertalign_SubScript:
|
|||
|
case vertalign_SuperScript:
|
|||
|
dFontKoef = vertalign_Koef_Size;
|
|||
|
break;
|
|||
|
}
|
|||
|
return dFontKoef;
|
|||
|
},
|
|||
|
Document_Get_AllFontNames: function (AllFonts) {
|
|||
|
if (undefined != this.RFonts.Ascii) {
|
|||
|
AllFonts[this.RFonts.Ascii.Name] = true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.HAnsi) {
|
|||
|
AllFonts[this.RFonts.HAnsi.Name] = true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.EastAsia) {
|
|||
|
AllFonts[this.RFonts.EastAsia.Name] = true;
|
|||
|
}
|
|||
|
if (undefined != this.RFonts.CS) {
|
|||
|
AllFonts[this.RFonts.CS.Name] = true;
|
|||
|
}
|
|||
|
if (this.FontFamily && typeof this.FontFamily.Name === "string") {
|
|||
|
AllFonts[this.FontFamily.Name] = true;
|
|||
|
}
|
|||
|
},
|
|||
|
Document_CreateFontMap: function (FontMap) {
|
|||
|
var Style = (true === this.Bold ? 1 : 0) + (true === this.Italic ? 2 : 0);
|
|||
|
var StyleCS = (true === this.BoldCS ? 1 : 0) + (true === this.ItalicCS ? 2 : 0);
|
|||
|
var Size = this.FontSize;
|
|||
|
var SizeCS = this.FontSizeCS;
|
|||
|
var RFonts = this.RFonts;
|
|||
|
if (undefined != RFonts.Ascii) {
|
|||
|
var Key = "" + RFonts.Ascii.Name + "_" + Style + "_" + Size;
|
|||
|
FontMap[Key] = {
|
|||
|
Name: RFonts.Ascii.Name,
|
|||
|
Style: Style,
|
|||
|
Size: Size
|
|||
|
};
|
|||
|
}
|
|||
|
if (undefined != RFonts.EastAsia) {
|
|||
|
var Key = "" + RFonts.EastAsia.Name + "_" + Style + "_" + Size;
|
|||
|
FontMap[Key] = {
|
|||
|
Name: RFonts.EastAsia.Name,
|
|||
|
Style: Style,
|
|||
|
Size: Size
|
|||
|
};
|
|||
|
}
|
|||
|
if (undefined != RFonts.HAnsi) {
|
|||
|
var Key = "" + RFonts.HAnsi.Name + "_" + Style + "_" + Size;
|
|||
|
FontMap[Key] = {
|
|||
|
Name: RFonts.HAnsi.Name,
|
|||
|
Style: Style,
|
|||
|
Size: Size
|
|||
|
};
|
|||
|
}
|
|||
|
if (undefined != RFonts.CS) {
|
|||
|
var Key = "" + RFonts.CS.Name + "_" + StyleCS + "_" + SizeCS;
|
|||
|
FontMap[Key] = {
|
|||
|
Name: RFonts.CS.Name,
|
|||
|
Style: StyleCS,
|
|||
|
Size: SizeCS
|
|||
|
};
|
|||
|
}
|
|||
|
},
|
|||
|
isEqual: function (TextPrOld, TextPrNew) {
|
|||
|
if (TextPrOld == undefined || TextPrNew == undefined) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
for (var TextPr in TextPrOld) {
|
|||
|
if (typeof TextPrOld[TextPr] == "object") {
|
|||
|
this.isEqual(TextPrOld[TextPr], TextPrNew[TextPr]);
|
|||
|
} else {
|
|||
|
if (typeof TextPrOld[TextPr] == "number" && typeof TextPrNew[TextPr] == "number") {
|
|||
|
if (Math.abs(TextPrOld[TextPr] - TextPrNew[TextPr]) > 0.001) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
} else {
|
|||
|
if (TextPrOld[TextPr] != TextPrNew[TextPr]) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
};
|
|||
|
function CRFonts() {
|
|||
|
this.Ascii = undefined;
|
|||
|
this.EastAsia = undefined;
|
|||
|
this.HAnsi = undefined;
|
|||
|
this.CS = undefined;
|
|||
|
this.Hint = undefined;
|
|||
|
}
|
|||
|
CRFonts.prototype = {
|
|||
|
Set_All: function (FontName, FontIndex) {
|
|||
|
this.Ascii = {
|
|||
|
Name: FontName,
|
|||
|
Index: FontIndex
|
|||
|
};
|
|||
|
this.EastAsia = {
|
|||
|
Name: FontName,
|
|||
|
Index: FontIndex
|
|||
|
};
|
|||
|
this.HAnsi = {
|
|||
|
Name: FontName,
|
|||
|
Index: FontIndex
|
|||
|
};
|
|||
|
this.CS = {
|
|||
|
Name: FontName,
|
|||
|
Index: FontIndex
|
|||
|
};
|
|||
|
this.Hint = fonthint_Default;
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var RFonts = new CRFonts();
|
|||
|
RFonts.Ascii = this.Ascii;
|
|||
|
RFonts.EastAsia = this.EastAsia;
|
|||
|
RFonts.HAnsi = this.HAnsi;
|
|||
|
RFonts.CS = this.CS;
|
|||
|
RFonts.Hint = this.Hint;
|
|||
|
return RFonts;
|
|||
|
},
|
|||
|
Merge: function (RFonts) {
|
|||
|
if (!isRealObject(RFonts)) {
|
|||
|
return;
|
|||
|
}
|
|||
|
if (undefined !== RFonts.Ascii) {
|
|||
|
this.Ascii = RFonts.Ascii;
|
|||
|
}
|
|||
|
if (undefined != RFonts.EastAsia) {
|
|||
|
this.EastAsia = RFonts.EastAsia;
|
|||
|
}
|
|||
|
if (undefined != RFonts.HAnsi) {
|
|||
|
this.HAnsi = RFonts.HAnsi;
|
|||
|
}
|
|||
|
if (undefined != RFonts.CS) {
|
|||
|
this.CS = RFonts.CS;
|
|||
|
}
|
|||
|
if (undefined != RFonts.Hint) {
|
|||
|
this.Hint = RFonts.Hint;
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.Ascii = {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
this.EastAsia = {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
this.HAnsi = {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
this.CS = {
|
|||
|
Name: "Arial",
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
this.Hint = fonthint_Default;
|
|||
|
},
|
|||
|
Set_FromObject: function (RFonts) {
|
|||
|
if (undefined != RFonts.Ascii) {
|
|||
|
this.Ascii = {
|
|||
|
Name: RFonts.Ascii.Name,
|
|||
|
Index: RFonts.Ascii.Index
|
|||
|
};
|
|||
|
} else {
|
|||
|
this.Ascii = undefined;
|
|||
|
}
|
|||
|
if (undefined != RFonts.EastAsia) {
|
|||
|
this.EastAsia = {
|
|||
|
Name: RFonts.EastAsia.Name,
|
|||
|
Index: RFonts.EastAsia.Index
|
|||
|
};
|
|||
|
} else {
|
|||
|
this.EastAsia = undefined;
|
|||
|
}
|
|||
|
if (undefined != RFonts.HAnsi) {
|
|||
|
this.HAnsi = {
|
|||
|
Name: RFonts.HAnsi.Name,
|
|||
|
Index: RFonts.HAnsi.Index
|
|||
|
};
|
|||
|
} else {
|
|||
|
this.HAnsi = undefined;
|
|||
|
}
|
|||
|
if (undefined != RFonts.CS) {
|
|||
|
this.CS = {
|
|||
|
Name: RFonts.CS.Name,
|
|||
|
Index: RFonts.CS.Index
|
|||
|
};
|
|||
|
} else {
|
|||
|
this.CS = undefined;
|
|||
|
}
|
|||
|
this.Hint = RFonts.Hint;
|
|||
|
},
|
|||
|
Compare: function (RFonts) {
|
|||
|
var Result_RFonts = new CRFonts();
|
|||
|
if (undefined != this.Ascii && undefined != RFonts.Ascii && this.Ascii.Name === RFonts.Ascii.Name) {
|
|||
|
Result_RFonts.Ascii = {};
|
|||
|
Result_RFonts.Ascii.Name = RFonts.Ascii.Name;
|
|||
|
Result_RFonts.Ascii.Index = -1;
|
|||
|
}
|
|||
|
if (undefined != this.EastAsia && undefined != RFonts.EastAsia && this.EastAsia.Name === RFonts.EastAsia.Name) {
|
|||
|
Result_RFonts.EastAsia = {};
|
|||
|
Result_RFonts.EastAsia.Name = RFonts.EastAsia.Name;
|
|||
|
Result_RFonts.EastAsia.Index = -1;
|
|||
|
}
|
|||
|
if (undefined != this.HAnsi && undefined != RFonts.HAnsi && this.HAnsi.Name === RFonts.HAnsi.Name) {
|
|||
|
Result_RFonts.HAnsi = {};
|
|||
|
Result_RFonts.HAnsi.Name = RFonts.HAnsi.Name;
|
|||
|
Result_RFonts.HAnsi.Index = -1;
|
|||
|
}
|
|||
|
if (undefined != this.CS && undefined != RFonts.CS && this.CS.Name === RFonts.CS.Name) {
|
|||
|
Result_RFonts.CS = {};
|
|||
|
Result_RFonts.CS.Name = RFonts.CS.Name;
|
|||
|
Result_RFonts.CS.Index = -1;
|
|||
|
}
|
|||
|
if (this.Hint === RFonts.Hint) {
|
|||
|
Result_RFonts.Hint = RFonts.Hint;
|
|||
|
}
|
|||
|
return Result_RFonts;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.Ascii) {
|
|||
|
Writer.WriteString2(this.Ascii.Name);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.EastAsia) {
|
|||
|
Writer.WriteString2(this.EastAsia.Name);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.HAnsi) {
|
|||
|
Writer.WriteString2(this.HAnsi.Name);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.CS) {
|
|||
|
Writer.WriteString2(this.CS.Name);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.Hint) {
|
|||
|
Writer.WriteLong(this.Hint);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.Ascii = {
|
|||
|
Name: Reader.GetString2(),
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.EastAsia = {
|
|||
|
Name: Reader.GetString2(),
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.HAnsi = {
|
|||
|
Name: Reader.GetString2(),
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
}
|
|||
|
if (Flags & 8) {
|
|||
|
this.CS = {
|
|||
|
Name: Reader.GetString2(),
|
|||
|
Index: -1
|
|||
|
};
|
|||
|
}
|
|||
|
if (Flags & 16) {
|
|||
|
this.Hint = Reader.GetLong();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CLang() {
|
|||
|
this.Bidi = undefined;
|
|||
|
this.EastAsia = undefined;
|
|||
|
this.Val = undefined;
|
|||
|
}
|
|||
|
CLang.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var Lang = new CLang();
|
|||
|
Lang.Bidi = this.Bidi;
|
|||
|
Lang.EastAsia = this.EastAsia;
|
|||
|
Lang.Val = this.Val;
|
|||
|
return Lang;
|
|||
|
},
|
|||
|
Merge: function (Lang) {
|
|||
|
if (!isRealObject(Lang)) {
|
|||
|
return;
|
|||
|
}
|
|||
|
if (undefined !== Lang.Bidi) {
|
|||
|
this.Bidi = Lang.Bidi;
|
|||
|
}
|
|||
|
if (undefined !== Lang.EastAsia) {
|
|||
|
this.EastAsia = Lang.EastAsia;
|
|||
|
}
|
|||
|
if (undefined !== Lang.Val) {
|
|||
|
this.Val = Lang.Val;
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.Bidi = lcid_enUS;
|
|||
|
this.EastAsia = lcid_enUS;
|
|||
|
this.Val = lcid_enUS;
|
|||
|
},
|
|||
|
Set_FromObject: function (Lang) {
|
|||
|
this.Bidi = Lang.Bidi;
|
|||
|
this.EastAsia = Lang.EastAsia;
|
|||
|
this.Val = Lang.Val;
|
|||
|
},
|
|||
|
Compare: function (Lang) {
|
|||
|
var Result_Lang = new CLang();
|
|||
|
if (this.Bidi === Lang.Bidi) {
|
|||
|
Result_Lang.Bidi = Lang.Bidi;
|
|||
|
}
|
|||
|
if (this.EastAsia === Lang.EastAsia) {
|
|||
|
Result_Lang.EastAsia = Lang.EastAsia;
|
|||
|
}
|
|||
|
if (this.Val === Lang.Val) {
|
|||
|
Result_Lang.Val = Lang.Val;
|
|||
|
}
|
|||
|
return Result_Lang;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.Bidi) {
|
|||
|
Writer.WriteLong(this.Bidi);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.EastAsia) {
|
|||
|
Writer.WriteLong(this.EastAsia);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.Val) {
|
|||
|
Writer.WriteLong(this.Val);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.Bidi = Reader.GetLong();
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.EastAsia = Reader.GetLong();
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.Val = Reader.GetLong();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CParaTab(Value, Pos) {
|
|||
|
this.Value = Value;
|
|||
|
this.Pos = Pos;
|
|||
|
}
|
|||
|
CParaTab.prototype = {
|
|||
|
Copy: function () {
|
|||
|
return new CParaTab(this.Value, this.Pos);
|
|||
|
}
|
|||
|
};
|
|||
|
function CParaTabs() {
|
|||
|
this.Tabs = new Array();
|
|||
|
}
|
|||
|
CParaTabs.prototype = {
|
|||
|
Add: function (_Tab) {
|
|||
|
var Index = 0;
|
|||
|
for (Index = 0; Index < this.Tabs.length; Index++) {
|
|||
|
var Tab = this.Tabs[Index];
|
|||
|
if (Math.abs(Tab.Pos - _Tab.Pos) < 0.001) {
|
|||
|
this.Tabs.splice(Index, 1, _Tab);
|
|||
|
break;
|
|||
|
}
|
|||
|
if (Tab.Pos > _Tab.Pos) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (-1 != Index) {
|
|||
|
this.Tabs.splice(Index, 0, _Tab);
|
|||
|
}
|
|||
|
},
|
|||
|
Merge: function (Tabs) {
|
|||
|
var _Tabs = Tabs.Tabs;
|
|||
|
for (var Index = 0; Index < _Tabs.length; Index++) {
|
|||
|
var _Tab = _Tabs[Index];
|
|||
|
var Index2 = 0;
|
|||
|
for (Index2 = 0; Index2 < this.Tabs.length; Index2++) {
|
|||
|
var Tab = this.Tabs[Index2];
|
|||
|
if (Math.abs(Tab.Pos - _Tab.Pos) < 0.001) {
|
|||
|
if (tab_Clear === _Tab.Value) {
|
|||
|
Index2 = -2;
|
|||
|
} else {
|
|||
|
Index2 = -1;
|
|||
|
}
|
|||
|
break;
|
|||
|
}
|
|||
|
if (Tab.Pos > _Tab.Pos) {
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (-2 === Index2) {
|
|||
|
this.Tabs.splice(Index2, 1);
|
|||
|
} else {
|
|||
|
if (-1 != Index2) {
|
|||
|
this.Tabs.splice(Index2, 0, _Tab);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var Tabs = new CParaTabs();
|
|||
|
var Count = this.Tabs.length;
|
|||
|
for (var Index = 0; Index < Count; Index++) {
|
|||
|
Tabs.Add(this.Tabs[Index].Copy());
|
|||
|
}
|
|||
|
return Tabs;
|
|||
|
},
|
|||
|
Set_FromObject: function (Tabs) {
|
|||
|
if (Tabs instanceof Array) {
|
|||
|
var Count = Tabs.length;
|
|||
|
for (var Index = 0; Index < Count; Index++) {
|
|||
|
this.Add(new CParaTab(Tabs[Index].Value, Tabs[Index].Pos));
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
Get_Count: function () {
|
|||
|
return this.Tabs.length;
|
|||
|
},
|
|||
|
Get: function (Index) {
|
|||
|
return this.Tabs[Index];
|
|||
|
},
|
|||
|
Get_Value: function (Pos) {
|
|||
|
var Count = this.Tabs.length;
|
|||
|
for (var Index = 0; Index < Count; Index++) {
|
|||
|
var Tab = this.Tabs[Index];
|
|||
|
if (Math.abs(Tab.Pos - Pos) < 0.001) {
|
|||
|
return Tab.Value;
|
|||
|
}
|
|||
|
}
|
|||
|
return -1;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var Count = this.Tabs.length;
|
|||
|
Writer.WriteLong(Count);
|
|||
|
for (var Index = 0; Index < Count; Index++) {
|
|||
|
Writer.WriteByte(this.Tabs[Index].Value);
|
|||
|
Writer.WriteDouble(this.Tabs[Index].Pos);
|
|||
|
}
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Count = Reader.GetLong();
|
|||
|
this.Tabs = new Array();
|
|||
|
for (var Index = 0; Index < Count; Index++) {
|
|||
|
var Value = Reader.GetByte();
|
|||
|
var Pos = Reader.GetDouble();
|
|||
|
this.Add(new CParaTab(Value, Pos));
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CParaInd() {
|
|||
|
this.Left = undefined;
|
|||
|
this.Right = undefined;
|
|||
|
this.FirstLine = undefined;
|
|||
|
}
|
|||
|
CParaInd.prototype = {
|
|||
|
isEmpty: function () {
|
|||
|
return this.Left === undefined && this.Right === undefined && this.FirstLine === undefined;
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var Ind = new CParaInd();
|
|||
|
Ind.Left = this.Left;
|
|||
|
Ind.Right = this.Right;
|
|||
|
Ind.FirstLine = this.FirstLine;
|
|||
|
return Ind;
|
|||
|
},
|
|||
|
Merge: function (Ind) {
|
|||
|
if (undefined != Ind.Left) {
|
|||
|
this.Left = Ind.Left;
|
|||
|
}
|
|||
|
if (undefined != Ind.Right) {
|
|||
|
this.Right = Ind.Right;
|
|||
|
}
|
|||
|
if (undefined != Ind.FirstLine) {
|
|||
|
this.FirstLine = Ind.FirstLine;
|
|||
|
}
|
|||
|
},
|
|||
|
Set_FromObject: function (Ind) {
|
|||
|
if (undefined != Ind.Left) {
|
|||
|
this.Left = Ind.Left;
|
|||
|
} else {
|
|||
|
this.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != Ind.Right) {
|
|||
|
this.Right = Ind.Right;
|
|||
|
} else {
|
|||
|
this.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != Ind.FirstLine) {
|
|||
|
this.FirstLine = Ind.FirstLine;
|
|||
|
} else {
|
|||
|
this.FirstLine = undefined;
|
|||
|
}
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.Left) {
|
|||
|
Writer.WriteDouble(this.Left);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.Right) {
|
|||
|
Writer.WriteDouble(this.Right);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.FirstLine) {
|
|||
|
Writer.WriteDouble(this.FirstLine);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.Left = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.Right = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.FirstLine = Reader.GetDouble();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CParaSpacing() {
|
|||
|
this.Line = undefined;
|
|||
|
this.LineRule = undefined;
|
|||
|
this.Before = undefined;
|
|||
|
this.BeforeAutoSpacing = undefined;
|
|||
|
this.After = undefined;
|
|||
|
this.AfterAutoSpacing = undefined;
|
|||
|
}
|
|||
|
CParaSpacing.prototype = {
|
|||
|
isEmpty: function () {
|
|||
|
return this.Line === undefined && this.LineRule === undefined && this.Before === undefined && this.BeforeAutoSpacing === undefined && this.After === undefined && this.AfterAutoSpacing === undefined;
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var Spacing = new CParaSpacing();
|
|||
|
Spacing.Line = this.Line;
|
|||
|
Spacing.LineRule = this.LineRule;
|
|||
|
Spacing.Before = this.Before;
|
|||
|
Spacing.BeforeAutoSpacing = this.BeforeAutoSpacing;
|
|||
|
Spacing.After = this.After;
|
|||
|
Spacing.AfterAutoSpacing = this.AfterAutoSpacing;
|
|||
|
return Spacing;
|
|||
|
},
|
|||
|
Merge: function (Spacing) {
|
|||
|
if (undefined != Spacing.Line) {
|
|||
|
this.Line = Spacing.Line;
|
|||
|
}
|
|||
|
if (undefined != Spacing.LineRule) {
|
|||
|
this.LineRule = Spacing.LineRule;
|
|||
|
}
|
|||
|
if (undefined != Spacing.Before) {
|
|||
|
this.Before = Spacing.Before;
|
|||
|
}
|
|||
|
if (undefined != Spacing.BeforeAutoSpacing) {
|
|||
|
this.BeforeAutoSpacing = Spacing.BeforeAutoSpacing;
|
|||
|
}
|
|||
|
if (undefined != Spacing.After) {
|
|||
|
this.After = Spacing.After;
|
|||
|
}
|
|||
|
if (undefined != Spacing.AfterAutoSpacing) {
|
|||
|
this.AfterAutoSpacing = Spacing.AfterAutoSpacing;
|
|||
|
}
|
|||
|
},
|
|||
|
Set_FromObject: function (Spacing) {
|
|||
|
this.Line = Spacing.Line;
|
|||
|
this.LineRule = Spacing.LineRule;
|
|||
|
this.Before = Spacing.Before;
|
|||
|
this.BeforeAutoSpacing = Spacing.BeforeAutoSpacing;
|
|||
|
this.After = Spacing.After;
|
|||
|
this.AfterAutoSpacing = Spacing.AfterAutoSpacing;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.Line) {
|
|||
|
Writer.WriteDouble(this.Line);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.LineRule) {
|
|||
|
Writer.WriteByte(this.LineRule);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.Before) {
|
|||
|
Writer.WriteDouble(this.Before);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.After) {
|
|||
|
Writer.WriteDouble(this.After);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.AfterAutoSpacing) {
|
|||
|
Writer.WriteBool(this.AfterAutoSpacing);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.BeforeAutoSpacing) {
|
|||
|
Writer.WriteBool(this.BeforeAutoSpacing);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.Line = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.LineRule = Reader.GetByte();
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.Before = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 8) {
|
|||
|
this.After = Reader.GetDouble();
|
|||
|
}
|
|||
|
if (Flags & 16) {
|
|||
|
this.AfterAutoSpacing = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 32) {
|
|||
|
this.BeforeAutoSpacing = Reader.GetBool();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function CNumPr() {
|
|||
|
this.NumId = "-1";
|
|||
|
this.Lvl = 0;
|
|||
|
}
|
|||
|
CNumPr.prototype = {
|
|||
|
Copy: function () {
|
|||
|
var NumPr = new CNumPr();
|
|||
|
NumPr.NumId = this.NumId;
|
|||
|
NumPr.Lvl = this.Lvl;
|
|||
|
return NumPr;
|
|||
|
},
|
|||
|
Set: function (NumId, Lvl) {
|
|||
|
this.NumId = NumId;
|
|||
|
this.Lvl = Lvl;
|
|||
|
},
|
|||
|
Set_FromObject: function (NumPr) {
|
|||
|
this.NumId = NumPr.NumId;
|
|||
|
this.Lvl = NumPr.Lvl;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
if (undefined === this.NumId) {
|
|||
|
Writer.WriteBool(true);
|
|||
|
} else {
|
|||
|
Writer.WriteBool(false);
|
|||
|
Writer.WriteString2(this.NumId);
|
|||
|
}
|
|||
|
Writer.WriteByte(this.Lvl);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
if (true === Reader.GetBool()) {
|
|||
|
this.NumId = undefined;
|
|||
|
} else {
|
|||
|
this.NumId = Reader.GetString2();
|
|||
|
}
|
|||
|
this.Lvl = Reader.GetByte();
|
|||
|
}
|
|||
|
};
|
|||
|
function CParaPr() {
|
|||
|
this.ContextualSpacing = undefined;
|
|||
|
this.Ind = new CParaInd();
|
|||
|
this.Jc = undefined;
|
|||
|
this.KeepLines = undefined;
|
|||
|
this.KeepNext = undefined;
|
|||
|
this.PageBreakBefore = undefined;
|
|||
|
this.Spacing = new CParaSpacing();
|
|||
|
this.Shd = undefined;
|
|||
|
this.Brd = {
|
|||
|
First: undefined,
|
|||
|
Last: undefined,
|
|||
|
Between: undefined,
|
|||
|
Bottom: undefined,
|
|||
|
Left: undefined,
|
|||
|
Right: undefined,
|
|||
|
Top: undefined
|
|||
|
};
|
|||
|
this.WidowControl = undefined;
|
|||
|
this.Tabs = undefined;
|
|||
|
this.NumPr = undefined;
|
|||
|
this.PStyle = undefined;
|
|||
|
}
|
|||
|
CParaPr.prototype = {
|
|||
|
isEmpty: function () {
|
|||
|
return this.ContextualSpacing === undefined && this.Ind.isEmpty() && this.Jc === undefined && this.KeepLines === undefined && this.KeepNext === undefined && this.PageBreakBefore === undefined && this.Spacing.isEmpty() && this.Shd === undefined && this.Brd.First === undefined && this.Brd.Last === undefined && this.Brd.Between === undefined && this.Brd.Bottom === undefined && this.Brd.Left === undefined && this.Brd.Right === undefined && this.Brd.Top === undefined && this.WidowControl === undefined && this.Tabs === undefined && this.NumPr === undefined && this.PStyle === undefined;
|
|||
|
},
|
|||
|
Copy: function () {
|
|||
|
var ParaPr = new CParaPr();
|
|||
|
ParaPr.ContextualSpacing = this.ContextualSpacing;
|
|||
|
if (undefined != this.Ind) {
|
|||
|
ParaPr.Ind = this.Ind.Copy();
|
|||
|
}
|
|||
|
ParaPr.Jc = this.Jc;
|
|||
|
ParaPr.KeepLines = this.KeepLines;
|
|||
|
ParaPr.KeepNext = this.KeepNext;
|
|||
|
ParaPr.PageBreakBefore = this.PageBreakBefore;
|
|||
|
if (undefined != this.Spacing) {
|
|||
|
ParaPr.Spacing = this.Spacing.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Shd) {
|
|||
|
ParaPr.Shd = this.Shd.Copy();
|
|||
|
}
|
|||
|
ParaPr.Brd.First = this.Brd.First;
|
|||
|
ParaPr.Brd.Last = this.Brd.Last;
|
|||
|
if (undefined != this.Brd.Between) {
|
|||
|
ParaPr.Brd.Between = this.Brd.Between.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Bottom) {
|
|||
|
ParaPr.Brd.Bottom = this.Brd.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Left) {
|
|||
|
ParaPr.Brd.Left = this.Brd.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Right) {
|
|||
|
ParaPr.Brd.Right = this.Brd.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Top) {
|
|||
|
ParaPr.Brd.Top = this.Brd.Top.Copy();
|
|||
|
}
|
|||
|
ParaPr.WidowControl = this.WidowControl;
|
|||
|
if (undefined != this.Tabs) {
|
|||
|
ParaPr.Tabs = this.Tabs.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.NumPr) {
|
|||
|
ParaPr.NumPr = this.NumPr.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.PStyle) {
|
|||
|
ParaPr.PStyle = this.PStyle;
|
|||
|
}
|
|||
|
return ParaPr;
|
|||
|
},
|
|||
|
Merge: function (ParaPr) {
|
|||
|
if (undefined != ParaPr.ContextualSpacing) {
|
|||
|
this.ContextualSpacing = ParaPr.ContextualSpacing;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Ind) {
|
|||
|
this.Ind.Merge(ParaPr.Ind);
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Jc) {
|
|||
|
this.Jc = ParaPr.Jc;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.KeepLines) {
|
|||
|
this.KeepLines = ParaPr.KeepLines;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.KeepNext) {
|
|||
|
this.KeepNext = ParaPr.KeepNext;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.PageBreakBefore) {
|
|||
|
this.PageBreakBefore = ParaPr.PageBreakBefore;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Spacing) {
|
|||
|
this.Spacing.Merge(ParaPr.Spacing);
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Shd) {
|
|||
|
this.Shd = ParaPr.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined != ParaPr.WidowControl) {
|
|||
|
this.WidowControl = ParaPr.WidowControl;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Tabs) {
|
|||
|
this.Tabs = ParaPr.Tabs.Copy();
|
|||
|
}
|
|||
|
if (undefined != ParaPr.PStyle) {
|
|||
|
this.PStyle = ParaPr.PStyle;
|
|||
|
}
|
|||
|
},
|
|||
|
Init_Default: function () {
|
|||
|
this.ContextualSpacing = false;
|
|||
|
this.Ind = new CParaInd();
|
|||
|
this.Ind.Left = 0;
|
|||
|
this.Ind.Right = 0;
|
|||
|
this.Ind.FirstLine = 0;
|
|||
|
this.Jc = align_Left;
|
|||
|
this.KeepLines = false;
|
|||
|
this.KeepNext = false;
|
|||
|
this.PageBreakBefore = false;
|
|||
|
this.Spacing = new CParaSpacing();
|
|||
|
this.Spacing.Line = 1;
|
|||
|
this.Spacing.LineRule = linerule_Auto;
|
|||
|
this.Spacing.Before = 0;
|
|||
|
this.Spacing.BeforeAutoSpacing = false;
|
|||
|
this.Spacing.After = 0;
|
|||
|
this.Spacing.AfterAutoSpacing = false;
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Brd.First = true;
|
|||
|
this.Brd.Last = true;
|
|||
|
this.Brd.Between = new CDocumentBorder();
|
|||
|
this.Brd.Bottom = new CDocumentBorder();
|
|||
|
this.Brd.Left = new CDocumentBorder();
|
|||
|
this.Brd.Right = new CDocumentBorder();
|
|||
|
this.Brd.Top = new CDocumentBorder();
|
|||
|
this.WidowControl = true;
|
|||
|
this.Tabs = new CParaTabs();
|
|||
|
this.NumPr = undefined;
|
|||
|
this.PStyle = undefined;
|
|||
|
},
|
|||
|
Set_FromObject: function (ParaPr) {
|
|||
|
this.ContextualSpacing = ParaPr.ContextualSpacing;
|
|||
|
if (undefined != ParaPr.Ind) {
|
|||
|
this.Ind = new CParaInd();
|
|||
|
this.Ind.Set_FromObject(ParaPr.Ind);
|
|||
|
} else {
|
|||
|
this.Ind = undefined;
|
|||
|
}
|
|||
|
this.Jc = ParaPr.Jc;
|
|||
|
this.KeepLines = ParaPr.KeepLines;
|
|||
|
this.KeepNext = ParaPr.KeepNext;
|
|||
|
this.PageBreakBefore = ParaPr.PageBreakBefore;
|
|||
|
if (undefined != ParaPr.Spacing) {
|
|||
|
this.Spacing = new CParaSpacing();
|
|||
|
this.Spacing.Set_FromObject(ParaPr.Spacing);
|
|||
|
} else {
|
|||
|
this.Spacing = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Shd) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Set_FromObject(ParaPr.Shd);
|
|||
|
} else {
|
|||
|
this.Shd = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Brd) {
|
|||
|
if (undefined != ParaPr.Brd.Between) {
|
|||
|
this.Brd.Between = new CDocumentBorder();
|
|||
|
this.Brd.Between.Set_FromObject(ParaPr.Brd.Between);
|
|||
|
} else {
|
|||
|
this.Brd.Between = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Brd.Bottom) {
|
|||
|
this.Brd.Bottom = new CDocumentBorder();
|
|||
|
this.Brd.Bottom.Set_FromObject(ParaPr.Brd.Bottom);
|
|||
|
} else {
|
|||
|
this.Brd.Bottom = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Brd.Left) {
|
|||
|
this.Brd.Left = new CDocumentBorder();
|
|||
|
this.Brd.Left.Set_FromObject(ParaPr.Brd.Left);
|
|||
|
} else {
|
|||
|
this.Brd.Left = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Brd.Right) {
|
|||
|
this.Brd.Right = new CDocumentBorder();
|
|||
|
this.Brd.Right.Set_FromObject(ParaPr.Brd.Right);
|
|||
|
} else {
|
|||
|
this.Brd.Right = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Brd.Top) {
|
|||
|
this.Brd.Top = new CDocumentBorder();
|
|||
|
this.Brd.Top.Set_FromObject(ParaPr.Brd.Top);
|
|||
|
} else {
|
|||
|
this.Brd.Top = undefined;
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.Brd.Between = undefined;
|
|||
|
this.Brd.Bottom = undefined;
|
|||
|
this.Brd.Left = undefined;
|
|||
|
this.Brd.Right = undefined;
|
|||
|
this.Brd.Top = undefined;
|
|||
|
}
|
|||
|
this.WidowControl = ParaPr.WidowControl;
|
|||
|
if (undefined != ParaPr.Tabs) {
|
|||
|
this.Tabs = new CParaTabs();
|
|||
|
this.Tabs.Set_FromObject(ParaPr.Tabs);
|
|||
|
} else {
|
|||
|
this.Tabs = undefined;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.NumPr) {
|
|||
|
this.NumPr = new CNumPr();
|
|||
|
this.NumPr.Set_FromObject(ParaPr.NumPr);
|
|||
|
} else {
|
|||
|
this.NumPr = undefined;
|
|||
|
}
|
|||
|
},
|
|||
|
Compare: function (ParaPr) {
|
|||
|
var Result_ParaPr = new CParaPr();
|
|||
|
Result_ParaPr.Locked = false;
|
|||
|
if (ParaPr.ContextualSpacing === this.ContextualSpacing) {
|
|||
|
Result_ParaPr.ContextualSpacing = ParaPr.ContextualSpacing;
|
|||
|
}
|
|||
|
Result_ParaPr.Ind = new CParaInd();
|
|||
|
if (undefined != ParaPr.Ind && undefined != this.Ind) {
|
|||
|
if (undefined != ParaPr.Ind.Left && undefined != this.Ind.Left && Math.abs(ParaPr.Ind.Left - this.Ind.Left) < 0.001) {
|
|||
|
Result_ParaPr.Ind.Left = ParaPr.Ind.Left;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Ind.Right && undefined != this.Ind.Right && Math.abs(ParaPr.Ind.Right - this.Ind.Right) < 0.001) {
|
|||
|
Result_ParaPr.Ind.Right = ParaPr.Ind.Right;
|
|||
|
}
|
|||
|
if (undefined != ParaPr.Ind.FirstLine && undefined != this.Ind.FirstLine && Math.abs(ParaPr.Ind.FirstLine - this.Ind.FirstLine) < 0.001) {
|
|||
|
Result_ParaPr.Ind.FirstLine = ParaPr.Ind.FirstLine;
|
|||
|
}
|
|||
|
}
|
|||
|
if (ParaPr.Jc === this.Jc) {
|
|||
|
Result_ParaPr.Jc = ParaPr.Jc;
|
|||
|
}
|
|||
|
if (ParaPr.KeepLines === this.KeepLines) {
|
|||
|
Result_ParaPr.KeepLines = ParaPr.KeepLines;
|
|||
|
}
|
|||
|
if (ParaPr.KeepNext === this.KeepNext) {
|
|||
|
Result_ParaPr.KeepNext = ParaPr.KeepNext;
|
|||
|
}
|
|||
|
if (ParaPr.PageBreakBefore === this.PageBreakBefore) {
|
|||
|
Result_ParaPr.PageBreakBefore = ParaPr.PageBreakBefore;
|
|||
|
}
|
|||
|
Result_ParaPr.Spacing = new CParaSpacing();
|
|||
|
if (undefined != this.Spacing && undefined != ParaPr.Spacing) {
|
|||
|
if (undefined != this.Spacing.After && undefined != ParaPr.Spacing.After && Math.abs(this.Spacing.After - ParaPr.Spacing.After) < 0.001) {
|
|||
|
Result_ParaPr.Spacing.After = ParaPr.Spacing.After;
|
|||
|
}
|
|||
|
if (this.Spacing.AfterAutoSpacing === ParaPr.Spacing.AfterAutoSpacing) {
|
|||
|
Result_ParaPr.Spacing.AfterAutoSpacing = ParaPr.Spacing.AfterAutoSpacing;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing.Before && undefined != ParaPr.Spacing.Before && Math.abs(this.Spacing.Before - ParaPr.Spacing.Before) < 0.001) {
|
|||
|
Result_ParaPr.Spacing.Before = ParaPr.Spacing.Before;
|
|||
|
}
|
|||
|
if (this.Spacing.BeforeAutoSpacing === ParaPr.Spacing.BeforeAutoSpacing) {
|
|||
|
Result_ParaPr.Spacing.BeforeAutoSpacing = ParaPr.Spacing.BeforeAutoSpacing;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing.Line && undefined != ParaPr.Spacing.Line && Math.abs(this.Spacing.Line - ParaPr.Spacing.Line) < 0.001) {
|
|||
|
Result_ParaPr.Spacing.Line = ParaPr.Spacing.Line;
|
|||
|
}
|
|||
|
if (this.Spacing.LineRule === ParaPr.Spacing.LineRule) {
|
|||
|
Result_ParaPr.Spacing.LineRule = ParaPr.Spacing.LineRule;
|
|||
|
}
|
|||
|
}
|
|||
|
if (undefined != this.Shd && undefined != ParaPr.Shd && true === this.Shd.Compare(ParaPr.Shd)) {
|
|||
|
Result_ParaPr.Shd = ParaPr.Shd.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Between && undefined != ParaPr.Brd.Between && true === this.Brd.Between.Compare(ParaPr.Brd.Between)) {
|
|||
|
Result_ParaPr.Brd.Between = ParaPr.Brd.Between.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Bottom && undefined != ParaPr.Brd.Bottom && true === this.Brd.Bottom.Compare(ParaPr.Brd.Bottom)) {
|
|||
|
Result_ParaPr.Brd.Bottom = ParaPr.Brd.Bottom.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Left && undefined != ParaPr.Brd.Left && true === this.Brd.Left.Compare(ParaPr.Brd.Left)) {
|
|||
|
Result_ParaPr.Brd.Left = ParaPr.Brd.Left.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Right && undefined != ParaPr.Brd.Right && true === this.Brd.Right.Compare(ParaPr.Brd.Right)) {
|
|||
|
Result_ParaPr.Brd.Right = ParaPr.Brd.Right.Copy();
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Top && undefined != ParaPr.Brd.Top && true === this.Brd.Top.Compare(ParaPr.Brd.Top)) {
|
|||
|
Result_ParaPr.Brd.Top = ParaPr.Brd.Top.Copy();
|
|||
|
}
|
|||
|
if (ParaPr.WidowControl === this.WidowControl) {
|
|||
|
Result_ParaPr.WidowControl = ParaPr.WidowControl;
|
|||
|
}
|
|||
|
if (undefined != this.PStyle && undefined != ParaPr.PStyle && this.PStyle === ParaPr.PStyle) {
|
|||
|
Result_ParaPr.PStyle = ParaPr.PStyle;
|
|||
|
}
|
|||
|
if (undefined != this.NumPr && undefined != ParaPr.NumPr && this.NumPr.NumId === ParaPr.NumPr.NumId) {
|
|||
|
Result_ParaPr.NumPr = new CParaPr();
|
|||
|
Result_ParaPr.NumPr.NumId = ParaPr.NumPr.NumId;
|
|||
|
Result_ParaPr.NumPr.Lvl = Math.max(this.NumPr.Lvl, ParaPr.NumPr.Lvl);
|
|||
|
}
|
|||
|
if (undefined != this.Locked && undefined != ParaPr.Locked) {
|
|||
|
if (this.Locked != ParaPr.Locked) {
|
|||
|
Result_ParaPr.Locked = true;
|
|||
|
} else {
|
|||
|
Result_ParaPr.Locked = ParaPr.Locked;
|
|||
|
}
|
|||
|
}
|
|||
|
return Result_ParaPr;
|
|||
|
},
|
|||
|
Write_ToBinary: function (Writer) {
|
|||
|
var StartPos = Writer.GetCurPosition();
|
|||
|
Writer.Skip(4);
|
|||
|
var Flags = 0;
|
|||
|
if (undefined != this.ContextualSpacing) {
|
|||
|
Writer.WriteBool(this.ContextualSpacing);
|
|||
|
Flags |= 1;
|
|||
|
}
|
|||
|
if (undefined != this.Ind) {
|
|||
|
this.Ind.Write_ToBinary(Writer);
|
|||
|
Flags |= 2;
|
|||
|
}
|
|||
|
if (undefined != this.Jc) {
|
|||
|
Writer.WriteByte(this.Jc);
|
|||
|
Flags |= 4;
|
|||
|
}
|
|||
|
if (undefined != this.KeepLines) {
|
|||
|
Writer.WriteBool(this.KeepLines);
|
|||
|
Flags |= 8;
|
|||
|
}
|
|||
|
if (undefined != this.KeepNext) {
|
|||
|
Writer.WriteBool(this.KeepNext);
|
|||
|
Flags |= 16;
|
|||
|
}
|
|||
|
if (undefined != this.PageBreakBefore) {
|
|||
|
Writer.WriteBool(this.PageBreakBefore);
|
|||
|
Flags |= 32;
|
|||
|
}
|
|||
|
if (undefined != this.Spacing) {
|
|||
|
this.Spacing.Write_ToBinary(Writer);
|
|||
|
Flags |= 64;
|
|||
|
}
|
|||
|
if (undefined != this.Shd) {
|
|||
|
this.Shd.Write_ToBinary(Writer);
|
|||
|
Flags |= 128;
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Between) {
|
|||
|
this.Brd.Between.Write_ToBinary(Writer);
|
|||
|
Flags |= 256;
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Bottom) {
|
|||
|
this.Brd.Bottom.Write_ToBinary(Writer);
|
|||
|
Flags |= 512;
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Left) {
|
|||
|
this.Brd.Left.Write_ToBinary(Writer);
|
|||
|
Flags |= 1024;
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Right) {
|
|||
|
this.Brd.Right.Write_ToBinary(Writer);
|
|||
|
Flags |= 2048;
|
|||
|
}
|
|||
|
if (undefined != this.Brd.Top) {
|
|||
|
this.Brd.Top.Write_ToBinary(Writer);
|
|||
|
Flags |= 4096;
|
|||
|
}
|
|||
|
if (undefined != this.WidowControl) {
|
|||
|
Writer.WriteBool(this.WidowControl);
|
|||
|
Flags |= 8192;
|
|||
|
}
|
|||
|
if (undefined != this.Tabs) {
|
|||
|
this.Tabs.Write_ToBinary(Writer);
|
|||
|
Flags |= 16384;
|
|||
|
}
|
|||
|
if (undefined != this.NumPr) {
|
|||
|
this.NumPr.Write_ToBinary(Writer);
|
|||
|
Flags |= 32768;
|
|||
|
}
|
|||
|
if (undefined != this.PStyle) {
|
|||
|
Writer.WriteString2(this.PStyle);
|
|||
|
Flags |= 65536;
|
|||
|
}
|
|||
|
var EndPos = Writer.GetCurPosition();
|
|||
|
Writer.Seek(StartPos);
|
|||
|
Writer.WriteLong(Flags);
|
|||
|
Writer.Seek(EndPos);
|
|||
|
},
|
|||
|
Read_FromBinary: function (Reader) {
|
|||
|
var Flags = Reader.GetLong();
|
|||
|
if (Flags & 1) {
|
|||
|
this.ContextualSpacing = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 2) {
|
|||
|
this.Ind = new CParaInd();
|
|||
|
this.Ind.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 4) {
|
|||
|
this.Jc = Reader.GetByte();
|
|||
|
}
|
|||
|
if (Flags & 8) {
|
|||
|
this.KeepLines = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 16) {
|
|||
|
this.KeepNext = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 32) {
|
|||
|
this.PageBreakBefore = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 64) {
|
|||
|
this.Spacing = new CParaSpacing();
|
|||
|
this.Spacing.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 128) {
|
|||
|
this.Shd = new CDocumentShd();
|
|||
|
this.Shd.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 256) {
|
|||
|
this.Brd.Between = new CDocumentBorder();
|
|||
|
this.Brd.Between.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 512) {
|
|||
|
this.Brd.Bottom = new CDocumentBorder();
|
|||
|
this.Brd.Bottom.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 1024) {
|
|||
|
this.Brd.Left = new CDocumentBorder();
|
|||
|
this.Brd.Left.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 2048) {
|
|||
|
this.Brd.Right = new CDocumentBorder();
|
|||
|
this.Brd.Right.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 4096) {
|
|||
|
this.Brd.Top = new CDocumentBorder();
|
|||
|
this.Brd.Top.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 8192) {
|
|||
|
this.WidowControl = Reader.GetBool();
|
|||
|
}
|
|||
|
if (Flags & 16384) {
|
|||
|
this.Tabs = new CParaTabs();
|
|||
|
this.Tabs.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 32768) {
|
|||
|
this.NumPr = new CNumPr();
|
|||
|
this.NumPr.Read_FromBinary(Reader);
|
|||
|
}
|
|||
|
if (Flags & 65536) {
|
|||
|
this.PStyle = Reader.GetString2();
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
function Copy_Bounds(Bounds) {
|
|||
|
if (undefined === Bounds) {
|
|||
|
return {};
|
|||
|
}
|
|||
|
var Bounds_new = {};
|
|||
|
Bounds_new.Bottom = Bounds.Bottom;
|
|||
|
Bounds_new.Left = Bounds.Left;
|
|||
|
Bounds_new.Right = Bounds.Right;
|
|||
|
Bounds_new.Top = Bounds.Top;
|
|||
|
return Bounds_new;
|
|||
|
}
|
|||
|
function GetRGBColorFromUniFillAndRef(unifill, fontRef, theme, master, layout, slide) {
|
|||
|
var _calculated_unifill;
|
|||
|
var RGBA = {
|
|||
|
R: 0,
|
|||
|
G: 0,
|
|||
|
B: 0,
|
|||
|
A: 255
|
|||
|
};
|
|||
|
if ((fontRef !== null && typeof fontRef === "object") || (unifill !== null && typeof unifill === "object" && unifill.fill !== null && typeof unifill.fill === "object")) {
|
|||
|
if (theme && fontRef !== null && typeof fontRef === "object" && fontRef.Color !== null && typeof fontRef.Color === "object" && typeof fontRef.Color.Calculate === "function") {
|
|||
|
_calculated_unifill = new CUniFill();
|
|||
|
fontRef.Color.Calculate(theme, slide, layout, master);
|
|||
|
RGBA = fontRef.Color.RGBA;
|
|||
|
if (fontRef.Color.color != null) {
|
|||
|
if (_calculated_unifill.fill != null && _calculated_unifill.fill.type == FILL_TYPE_SOLID) {
|
|||
|
_calculated_unifill.fill.color = fontRef.Color.createDuplicate();
|
|||
|
}
|
|||
|
}
|
|||
|
} else {
|
|||
|
_calculated_unifill = new CUniFill();
|
|||
|
}
|
|||
|
_calculated_unifill.merge(unifill);
|
|||
|
_calculated_unifill.calculate(theme, slide, layout, master, RGBA);
|
|||
|
return _calculated_unifill.getRGBAColor();
|
|||
|
}
|
|||
|
return null;
|
|||
|
}
|
|||
|
function Styles_IsNeedRecalc_TextPr(TextPr) {
|
|||
|
if ("undefined" === typeof(TextPr) || null === TextPr) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if ("undefined" != typeof(TextPr.Bold)) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if ("undefined" != typeof(TextPr.Italic)) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if ("undefined" != typeof(TextPr.FontFamily)) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if ("undefined" != typeof(TextPr.FontSize)) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
if ("undefined" != typeof(TextPr.VertAlign)) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|