DocumentServer/OfficeWeb/sdk/Common/Drawings/Format/Format.js
2015-04-28 17:59:00 +03:00

8753 lines
280 KiB
JavaScript

/*
* (c) Copyright Ascensio System SIA 2010-2015
*
* 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
*
*/
"use strict";
function CreateFontRef(idx, color) {
var ret = new FontRef();
ret.idx = idx;
ret.Color = color;
return ret;
}
function CreateStyleRef(idx, color) {
var ret = new StyleRef();
ret.idx = idx;
ret.Color = color;
return ret;
}
function CreatePresetColor(id) {
var ret = new CPrstColor();
ret.idx = id;
return ret;
}
function sRGB_to_scRGB(value) {
if (value < 0) {
return 0;
}
if (value <= 0.04045) {
return value / 12.92;
}
if (value <= 1) {
return Math.pow(((value + 0.055) / 1.055), 2.4);
}
return 1;
}
function scRGB_to_sRGB(value) {
if (value < 0) {
return 0;
}
if (value <= 0.0031308) {
return value * 12.92;
}
if (value < 1) {
return 1.055 * (Math.pow(value, (1 / 2.4))) - 0.055;
}
return 1;
}
function checkRasterImageId(rasterImageId) {
var api_sheet = window["Asc"]["editor"];
var sFindString;
if (api_sheet) {
sFindString = api_sheet.wbModel.sUrlPath + "media/";
} else {
sFindString = window.editor.DocumentUrl + "media/";
}
if (0 === rasterImageId.indexOf(sFindString)) {
return rasterImageId.substring(sFindString.length);
} else {
return rasterImageId;
}
}
var g_oThemeFontsName = {};
g_oThemeFontsName["+mj-cs"] = true;
g_oThemeFontsName["+mj-ea"] = true;
g_oThemeFontsName["+mj-lt"] = true;
g_oThemeFontsName["+mn-cs"] = true;
g_oThemeFontsName["+mn-ea"] = true;
g_oThemeFontsName["+mn-lt"] = true;
function isRealObject(o) {
return o !== null && typeof o === "object";
}
function isRealNumber(n) {
return typeof n === "number" && !isNaN(n);
}
function isRealBool(b) {
return b === true || b === false;
}
function writeLong(w, val) {
w.WriteBool(isRealNumber(val));
if (isRealNumber(val)) {
w.WriteLong(val);
}
}
function readLong(r) {
var ret;
if (r.GetBool()) {
ret = r.GetLong();
} else {
ret = null;
}
return ret;
}
function writeDouble(w, val) {
w.WriteBool(isRealNumber(val));
if (isRealNumber(val)) {
w.WriteDouble(val);
}
}
function readDouble(r) {
var ret;
if (r.GetBool()) {
ret = r.GetDouble();
} else {
ret = null;
}
return ret;
}
function writeBool(w, val) {
w.WriteBool(isRealBool(val));
if (isRealBool(val)) {
w.WriteBool(val);
}
}
function readBool(r) {
var ret;
if (r.GetBool()) {
ret = r.GetBool();
} else {
ret = null;
}
return ret;
}
function writeString(w, val) {
w.WriteBool(typeof val === "string");
if (typeof val === "string") {
w.WriteString2(val);
}
}
function readString(r) {
var ret;
if (r.GetBool()) {
ret = r.GetString2();
} else {
ret = null;
}
return ret;
}
function writeObject(w, val) {
w.WriteBool(isRealObject(val));
if (isRealObject(val)) {
w.WriteString2(val.Get_Id());
}
}
function readObject(r) {
var ret;
if (r.GetBool()) {
ret = g_oTableId.Get_ById(r.GetString2());
} else {
ret = null;
}
return ret;
}
function checkThemeFonts(oFontMap, font_scheme) {
if (oFontMap["+mj-lt"]) {
if (font_scheme.majorFont && typeof font_scheme.majorFont.latin === "string" && font_scheme.majorFont.latin.length > 0) {
oFontMap[font_scheme.majorFont.latin] = 1;
}
delete oFontMap["+mj-lt"];
}
if (oFontMap["+mj-ea"]) {
if (font_scheme.majorFont && typeof font_scheme.majorFont.ea === "string" && font_scheme.majorFont.ea.length > 0) {
oFontMap[font_scheme.majorFont.ea] = 1;
}
delete oFontMap["+mj-ea"];
}
if (oFontMap["+mj-cs"]) {
if (font_scheme.majorFont && typeof font_scheme.majorFont.cs === "string" && font_scheme.majorFont.cs.length > 0) {
oFontMap[font_scheme.majorFont.cs] = 1;
}
delete oFontMap["+mj-cs"];
}
if (oFontMap["+mn-lt"]) {
if (font_scheme.minorFont && typeof font_scheme.minorFont.latin === "string" && font_scheme.minorFont.latin.length > 0) {
oFontMap[font_scheme.minorFont.latin] = 1;
}
delete oFontMap["+mn-lt"];
}
if (oFontMap["+mn-ea"]) {
if (font_scheme.minorFont && typeof font_scheme.minorFont.ea === "string" && font_scheme.minorFont.ea.length > 0) {
oFontMap[font_scheme.minorFont.ea] = 1;
}
delete oFontMap["+mn-ea"];
}
if (oFontMap["+mn-cs"]) {
if (font_scheme.minorFont && typeof font_scheme.minorFont.cs === "string" && font_scheme.minorFont.cs.length > 0) {
oFontMap[font_scheme.minorFont.cs] = 1;
}
delete oFontMap["+mn-cs"];
}
}
function ExecuteNoHistory(f, oThis, args) {
var is_on = (History instanceof CHistory) ? History.Is_On() : false;
if (! (History instanceof CHistory)) {
History = {
Add: function () {}
};
}
if (is_on) {
History.TurnOff();
}
var b_table_id = false;
if (g_oTableId && !g_oTableId.m_bTurnOff) {
g_oTableId.m_bTurnOff = true;
b_table_id = true;
}
var ret = f.apply(oThis, args);
if (is_on) {
History.TurnOn();
}
if (b_table_id) {
g_oTableId.m_bTurnOff = false;
}
return ret;
}
function checkObjectUnifill(obj, theme, colorMap) {
if (obj && obj.Unifill) {
obj.Unifill.check(theme, colorMap);
var rgba = obj.Unifill.getRGBAColor();
obj.Color = new CDocumentColor(rgba.R, rgba.G, rgba.B, false);
}
}
function checkTableCellPr(cellPr, slide, layout, master, theme) {
cellPr.Check_PresentationPr(theme);
var color_map, rgba;
if (slide.clrMap) {
color_map = slide.clrMap;
} else {
if (layout.clrMap) {
color_map = layout.clrMap;
} else {
if (master.clrMap) {
color_map = master.clrMap;
}
}
}
color_map = G_O_DEFAULT_COLOR_MAP;
checkObjectUnifill(cellPr.Shd, theme, color_map);
if (cellPr.TableCellBorders) {
checkObjectUnifill(cellPr.TableCellBorders.Left, theme, color_map);
checkObjectUnifill(cellPr.TableCellBorders.Top, theme, color_map);
checkObjectUnifill(cellPr.TableCellBorders.Right, theme, color_map);
checkObjectUnifill(cellPr.TableCellBorders.Bottom, theme, color_map);
checkObjectUnifill(cellPr.TableCellBorders.InsideH, theme, color_map);
checkObjectUnifill(cellPr.TableCellBorders.InsideV, theme, color_map);
}
return cellPr;
}
var TYPE_TRACK_SHAPE = 0;
var TYPE_TRACK_GROUP = TYPE_TRACK_SHAPE;
var TYPE_TRACK_GROUP_PASSIVE = 1;
var TYPE_TRACK_TEXT = 2;
var TYPE_TRACK_EMPTY_PH = 3;
var GLOBAL_BLIP_FILL_MAP = {};
var COLOR_TYPE_NONE = 0;
var COLOR_TYPE_SRGB = 1;
var COLOR_TYPE_PRST = 2;
var COLOR_TYPE_SCHEME = 3;
var COLOR_TYPE_SYS = 4;
var SLIDE_KIND = 0;
var LAYOUT_KIND = 1;
var MASTER_KIND = 2;
var map_prst_color = {};
map_prst_color["aliceBlue"] = 15792383;
map_prst_color["antiqueWhite"] = 16444375;
map_prst_color["aqua"] = 65535;
map_prst_color["aquamarine"] = 8388564;
map_prst_color["azure"] = 15794175;
map_prst_color["beige"] = 16119260;
map_prst_color["bisque"] = 16770244;
map_prst_color["black"] = 0;
map_prst_color["blanchedAlmond"] = 16772045;
map_prst_color["blue"] = 255;
map_prst_color["blueViolet"] = 9055202;
map_prst_color["brown"] = 10824234;
map_prst_color["burlyWood"] = 14596231;
map_prst_color["cadetBlue"] = 6266528;
map_prst_color["chartreuse"] = 8388352;
map_prst_color["chocolate"] = 13789470;
map_prst_color["coral"] = 16744272;
map_prst_color["cornflowerBlue"] = 6591981;
map_prst_color["cornsilk"] = 16775388;
map_prst_color["crimson"] = 14423100;
map_prst_color["cyan"] = 65535;
map_prst_color["darkBlue"] = 139;
map_prst_color["darkCyan"] = 35723;
map_prst_color["darkGoldenrod"] = 12092939;
map_prst_color["darkGray"] = 11119017;
map_prst_color["darkGreen"] = 25600;
map_prst_color["darkGrey"] = 11119017;
map_prst_color["darkKhaki"] = 12433259;
map_prst_color["darkMagenta"] = 9109643;
map_prst_color["darkOliveGreen"] = 5597999;
map_prst_color["darkOrange"] = 16747520;
map_prst_color["darkOrchid"] = 10040012;
map_prst_color["darkRed"] = 9109504;
map_prst_color["darkSalmon"] = 15308410;
map_prst_color["darkSeaGreen"] = 9419919;
map_prst_color["darkSlateBlue"] = 4734347;
map_prst_color["darkSlateGray"] = 3100495;
map_prst_color["darkSlateGrey"] = 3100495;
map_prst_color["darkTurquoise"] = 52945;
map_prst_color["darkViolet"] = 9699539;
map_prst_color["deepPink"] = 16716947;
map_prst_color["deepSkyBlue"] = 49151;
map_prst_color["dimGray"] = 6908265;
map_prst_color["dimGrey"] = 6908265;
map_prst_color["dkBlue"] = 139;
map_prst_color["dkCyan"] = 35723;
map_prst_color["dkGoldenrod"] = 12092939;
map_prst_color["dkGray"] = 11119017;
map_prst_color["dkGreen"] = 25600;
map_prst_color["dkGrey"] = 11119017;
map_prst_color["dkKhaki"] = 12433259;
map_prst_color["dkMagenta"] = 9109643;
map_prst_color["dkOliveGreen"] = 5597999;
map_prst_color["dkOrange"] = 16747520;
map_prst_color["dkOrchid"] = 10040012;
map_prst_color["dkRed"] = 9109504;
map_prst_color["dkSalmon"] = 15308410;
map_prst_color["dkSeaGreen"] = 9419915;
map_prst_color["dkSlateBlue"] = 4734347;
map_prst_color["dkSlateGray"] = 3100495;
map_prst_color["dkSlateGrey"] = 3100495;
map_prst_color["dkTurquoise"] = 52945;
map_prst_color["dkViolet"] = 9699539;
map_prst_color["dodgerBlue"] = 2003199;
map_prst_color["firebrick"] = 11674146;
map_prst_color["floralWhite"] = 16775920;
map_prst_color["forestGreen"] = 2263842;
map_prst_color["fuchsia"] = 16711935;
map_prst_color["gainsboro"] = 14474460;
map_prst_color["ghostWhite"] = 16316671;
map_prst_color["gold"] = 16766720;
map_prst_color["goldenrod"] = 14329120;
map_prst_color["gray"] = 8421504;
map_prst_color["green"] = 32768;
map_prst_color["greenYellow"] = 11403055;
map_prst_color["grey"] = 8421504;
map_prst_color["honeydew"] = 15794160;
map_prst_color["hotPink"] = 16738740;
map_prst_color["indianRed"] = 13458524;
map_prst_color["indigo"] = 4915330;
map_prst_color["ivory"] = 16777200;
map_prst_color["khaki"] = 15787660;
map_prst_color["lavender"] = 15132410;
map_prst_color["lavenderBlush"] = 16773365;
map_prst_color["lawnGreen"] = 8190976;
map_prst_color["lemonChiffon"] = 16775885;
map_prst_color["lightBlue"] = 11393254;
map_prst_color["lightCoral"] = 15761536;
map_prst_color["lightCyan"] = 14745599;
map_prst_color["lightGoldenrodYellow"] = 16448210;
map_prst_color["lightGray"] = 13882323;
map_prst_color["lightGreen"] = 9498256;
map_prst_color["lightGrey"] = 13882323;
map_prst_color["lightPink"] = 16758465;
map_prst_color["lightSalmon"] = 16752762;
map_prst_color["lightSeaGreen"] = 2142890;
map_prst_color["lightSkyBlue"] = 8900346;
map_prst_color["lightSlateGray"] = 7833753;
map_prst_color["lightSlateGrey"] = 7833753;
map_prst_color["lightSteelBlue"] = 11584734;
map_prst_color["lightYellow"] = 16777184;
map_prst_color["lime"] = 65280;
map_prst_color["limeGreen"] = 3329330;
map_prst_color["linen"] = 16445670;
map_prst_color["ltBlue"] = 11393254;
map_prst_color["ltCoral"] = 15761536;
map_prst_color["ltCyan"] = 14745599;
map_prst_color["ltGoldenrodYellow"] = 16448120;
map_prst_color["ltGray"] = 13882323;
map_prst_color["ltGreen"] = 9498256;
map_prst_color["ltGrey"] = 13882323;
map_prst_color["ltPink"] = 16758465;
map_prst_color["ltSalmon"] = 16752762;
map_prst_color["ltSeaGreen"] = 2142890;
map_prst_color["ltSkyBlue"] = 8900346;
map_prst_color["ltSlateGray"] = 7833753;
map_prst_color["ltSlateGrey"] = 7833753;
map_prst_color["ltSteelBlue"] = 11584734;
map_prst_color["ltYellow"] = 16777184;
map_prst_color["magenta"] = 16711935;
map_prst_color["maroon"] = 8388608;
map_prst_color["medAquamarine"] = 6737322;
map_prst_color["medBlue"] = 205;
map_prst_color["mediumAquamarine"] = 6737322;
map_prst_color["mediumBlue"] = 205;
map_prst_color["mediumOrchid"] = 12211667;
map_prst_color["mediumPurple"] = 9662683;
map_prst_color["mediumSeaGreen"] = 3978097;
map_prst_color["mediumSlateBlue"] = 8087790;
map_prst_color["mediumSpringGreen"] = 64154;
map_prst_color["mediumTurquoise"] = 4772300;
map_prst_color["mediumVioletRed"] = 13047173;
map_prst_color["medOrchid"] = 12211667;
map_prst_color["medPurple"] = 9662683;
map_prst_color["medSeaGreen"] = 3978097;
map_prst_color["medSlateBlue"] = 8087790;
map_prst_color["medSpringGreen"] = 64154;
map_prst_color["medTurquoise"] = 4772300;
map_prst_color["medVioletRed"] = 13047173;
map_prst_color["midnightBlue"] = 1644912;
map_prst_color["mintCream"] = 16121850;
map_prst_color["mistyRose"] = 16770303;
map_prst_color["moccasin"] = 16770229;
map_prst_color["navajoWhite"] = 16768685;
map_prst_color["navy"] = 128;
map_prst_color["oldLace"] = 16643558;
map_prst_color["olive"] = 8421376;
map_prst_color["oliveDrab"] = 7048739;
map_prst_color["orange"] = 16753920;
map_prst_color["orangeRed"] = 16729344;
map_prst_color["orchid"] = 14315734;
map_prst_color["paleGoldenrod"] = 15657130;
map_prst_color["paleGreen"] = 10025880;
map_prst_color["paleTurquoise"] = 11529966;
map_prst_color["paleVioletRed"] = 14381203;
map_prst_color["papayaWhip"] = 16773077;
map_prst_color["peachPuff"] = 16767673;
map_prst_color["peru"] = 13468991;
map_prst_color["pink"] = 16761035;
map_prst_color["plum"] = 13869267;
map_prst_color["powderBlue"] = 11591910;
map_prst_color["purple"] = 8388736;
map_prst_color["red"] = 16711680;
map_prst_color["rosyBrown"] = 12357519;
map_prst_color["royalBlue"] = 4286945;
map_prst_color["saddleBrown"] = 9127187;
map_prst_color["salmon"] = 16416882;
map_prst_color["sandyBrown"] = 16032864;
map_prst_color["seaGreen"] = 3050327;
map_prst_color["seaShell"] = 16774638;
map_prst_color["sienna"] = 10506797;
map_prst_color["silver"] = 12632256;
map_prst_color["skyBlue"] = 8900331;
map_prst_color["slateBlue"] = 6970091;
map_prst_color["slateGray"] = 7372944;
map_prst_color["slateGrey"] = 7372944;
map_prst_color["snow"] = 16775930;
map_prst_color["springGreen"] = 65407;
map_prst_color["steelBlue"] = 4620980;
map_prst_color["tan"] = 13808780;
map_prst_color["teal"] = 32896;
map_prst_color["thistle"] = 14204888;
map_prst_color["tomato"] = 16741191;
map_prst_color["turquoise"] = 4251856;
map_prst_color["violet"] = 15631086;
map_prst_color["wheat"] = 16113331;
map_prst_color["white"] = 16777215;
map_prst_color["whiteSmoke"] = 16119285;
map_prst_color["yellow"] = 16776960;
map_prst_color["yellowGreen"] = 10145074;
function CColorMod() {
this.name = "";
this.val = 0;
}
function _create_mod(default_obj) {
var ret = new CColorMod();
ret.name = default_obj["name"];
ret.val = default_obj["val"];
return ret;
}
function _create_mods(arr_defaults) {
var ret = [];
for (var i = 0; i < arr_defaults.length; i++) {
ret.push(_create_mod(arr_defaults[i]));
}
return ret;
}
CColorMod.prototype = {
getObjectType: function () {
return historyitem_type_ColorMod;
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
setName: function (name) {
this.name = name;
},
setVal: function (val) {
this.val = val;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ColorMod_SetName:
this.name = data.oldName;
break;
case historyitem_ColorMod_SetVal:
this.val = data.oldVal;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ColorMod_SetName:
this.name = data.newName;
break;
case historyitem_ColorMod_SetVal:
this.val = data.newVal;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ColorMod_SetName:
w.WriteString2(data.newName);
break;
case historyitem_ColorMod_SetVal:
w.WriteLong(data.newVal);
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_ColorMod_SetName:
this.name = r.GetString2();
break;
case historyitem_ColorMod_SetVal:
this.val = r.GetLong();
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(historyitem_type_ColorMod);
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
createDuplicate: function () {
var duplicate = new CColorMod();
duplicate.name = this.name;
duplicate.val = this.val;
return duplicate;
}
};
var cd16 = 1 / 6;
var cd13 = 1 / 3;
var cd23 = 2 / 3;
var max_hls = 255;
function CColorModifiers() {
this.Mods = [];
}
CColorModifiers.prototype = {
getObjectType: function () {
return historyitem_type_ColorModifiers;
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getModsToWrite: function () {},
Write_ToBinary: function (w) {
w.WriteLong(this.Mods.length);
for (var i = 0; i < this.Mods.length; ++i) {
w.WriteString2(this.Mods[i].name);
w.WriteLong(this.Mods[i].val);
}
},
Read_FromBinary: function (r) {
var len = r.GetLong();
for (var i = 0; i < len; ++i) {
var mod = new CColorMod();
mod.name = r.GetString2();
mod.val = r.GetLong();
this.Mods.push(mod);
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ColorModifiers_AddColorMod:
for (var i = this.Mods.length - 1; i > -1; --i) {
if (this.Mods[i] && this.Mods[i].Get_Id() === data.modId) {
this.Mods.splice(i, 1);
break;
}
}
break;
case historyitem_ColorModifiers_RemoveColorMod:
this.Mods.splice(data.pos, 0, data.pr);
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ColorModifiers_AddColorMod:
var mod = g_oTableId.Get_ById(data.modId);
if (mod) {
this.Mods.push(mod);
}
break;
case historyitem_ColorModifiers_RemoveColorMod:
this.Mods.splice(data.pos, 1);
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ColorModifiers_AddColorMod:
w.WriteString2(data.modId);
break;
case historyitem_ColorModifiers_RemoveColorMod:
w.WriteLong(data.pos);
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_ColorModifiers_AddColorMod:
var mod = g_oTableId.Get_ById(r.GetString2());
if (mod) {
this.Mods.push(mod);
}
break;
case historyitem_ColorModifiers_RemoveColorMod:
var pos = r.GetLong();
this.Mods.splice(pos, 1);
break;
}
},
addMod: function (mod) {
this.Mods.push(mod);
},
removeMod: function (pos) {
var mod = this.Mods.splice(pos, 1)[0];
},
IsIdentical: function (mods) {
if (mods == null) {
return false;
}
if (mods.Mods == null || this.Mods.length != mods.Mods.length) {
return false;
}
for (var i = 0; i < this.Mods.length; ++i) {
if (this.Mods[i].name != mods.Mods[i].name || this.Mods[i].val != mods.Mods[i].val) {
return false;
}
}
return true;
},
createDuplicate: function () {
var duplicate = new CColorModifiers();
for (var i = 0; i < this.Mods.length; ++i) {
duplicate.Mods[i] = this.Mods[i].createDuplicate();
}
return duplicate;
},
RGB2HSL: function (R, G, B, HLS) {
var iMin = Math.min(R, G, B);
var iMax = Math.max(R, G, B);
var iDelta = iMax - iMin;
var dMax = (iMax + iMin) / 255;
var dDelta = iDelta / 255;
var H = 0;
var S = 0;
var L = dMax / 2;
if (iDelta != 0) {
if (L < 0.5) {
S = dDelta / dMax;
} else {
S = dDelta / (2 - dMax);
}
dDelta = dDelta * 1530;
var dR = (iMax - R) / dDelta;
var dG = (iMax - G) / dDelta;
var dB = (iMax - B) / dDelta;
if (R == iMax) {
H = dB - dG;
} else {
if (G == iMax) {
H = cd13 + dR - dB;
} else {
if (B == iMax) {
H = cd23 + dG - dR;
}
}
}
if (H < 0) {
H += 1;
}
if (H > 1) {
H -= 1;
}
}
H = ((H * max_hls) >> 0) & 255;
if (H < 0) {
H = 0;
}
if (H > 255) {
H = 255;
}
S = ((S * max_hls) >> 0) & 255;
if (S < 0) {
S = 0;
}
if (S > 255) {
S = 255;
}
L = ((L * max_hls) >> 0) & 255;
if (L < 0) {
L = 0;
}
if (L > 255) {
L = 255;
}
HLS.H = H;
HLS.S = S;
HLS.L = L;
},
HSL2RGB: function (HSL, RGB) {
if (HSL.S == 0) {
RGB.R = HSL.L;
RGB.G = HSL.L;
RGB.B = HSL.L;
} else {
var H = HSL.H / max_hls;
var S = HSL.S / max_hls;
var L = HSL.L / max_hls;
var v2 = 0;
if (L < 0.5) {
v2 = L * (1 + S);
} else {
v2 = L + S - S * L;
}
var v1 = 2 * L - v2;
var R = (255 * this.Hue_2_RGB(v1, v2, H + cd13)) >> 0;
var G = (255 * this.Hue_2_RGB(v1, v2, H)) >> 0;
var B = (255 * this.Hue_2_RGB(v1, v2, H - cd13)) >> 0;
if (R < 0) {
R = 0;
}
if (R > 255) {
R = 255;
}
if (G < 0) {
G = 0;
}
if (G > 255) {
G = 255;
}
if (B < 0) {
B = 0;
}
if (B > 255) {
B = 255;
}
RGB.R = R;
RGB.G = G;
RGB.B = B;
}
},
Hue_2_RGB: function (v1, v2, vH) {
if (vH < 0) {
vH += 1;
}
if (vH > 1) {
vH -= 1;
}
if (vH < cd16) {
return v1 + (v2 - v1) * 6 * vH;
}
if (vH < 0.5) {
return v2;
}
if (vH < cd23) {
return v1 + (v2 - v1) * (cd23 - vH) * 6;
}
return v1;
},
Apply: function (RGBA) {
if (null == this.Mods) {
return;
}
var _len = this.Mods.length;
for (var i = 0; i < _len; i++) {
var colorMod = this.Mods[i];
var val = colorMod.val / 100000;
if (colorMod.name == "alpha") {
RGBA.A = Math.min(255, Math.max(0, 255 * val));
} else {
if (colorMod.name == "blue") {
RGBA.B = Math.min(255, Math.max(0, 255 * val));
} else {
if (colorMod.name == "blueMod") {
RGBA.B = Math.max(0, (RGBA.B * val) >> 0);
} else {
if (colorMod.name == "blueOff") {
RGBA.B = Math.max(0, (RGBA.B + val * 255)) >> 0;
} else {
if (colorMod.name == "green") {
RGBA.G = Math.min(255, Math.max(0, 255 * val)) >> 0;
} else {
if (colorMod.name == "greenMod") {
RGBA.G = Math.max(0, (RGBA.G * val) >> 0);
} else {
if (colorMod.name == "greenOff") {
RGBA.G = Math.max(0, (RGBA.G + val * 255)) >> 0;
} else {
if (colorMod.name == "red") {
RGBA.R = Math.min(255, Math.max(0, 255 * val)) >> 0;
} else {
if (colorMod.name == "redMod") {
RGBA.R = Math.max(0, (RGBA.R * val) >> 0);
} else {
if (colorMod.name == "redOff") {
RGBA.R = Math.max(0, (RGBA.R + val * 255) >> 0);
} else {
if (colorMod.name == "hueOff") {
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
var res = (HSL.H + (val * 10) / 9) >> 0;
while (res > max_hls) {
res = res - max_hls;
}
while (res < 0) {
res += max_hls;
}
HSL.H = res;
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "inv") {
RGBA.R ^= 255;
RGBA.G ^= 255;
RGBA.B ^= 255;
} else {
if (colorMod.name == "lumMod") {
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
if (HSL.L * val > max_hls) {
HSL.L = max_hls;
} else {
HSL.L = Math.max(0, (HSL.L * val) >> 0);
}
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "lumOff") {
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
var res = (HSL.L + val * max_hls) >> 0;
while (res > max_hls) {
res = res - max_hls;
}
while (res < 0) {
res += max_hls;
}
HSL.L = res;
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "satMod") {
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
if (HSL.S * val > max_hls) {
HSL.S = max_hls;
} else {
HSL.S = Math.max(0, (HSL.S * val) >> 0);
}
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "satOff") {
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
var res = (HSL.S + val * max_hls) >> 0;
while (res > max_hls) {
res = res - max_hls;
}
while (res < 0) {
res += max_hls;
}
HSL.S = res;
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "wordShade") {
var val_ = colorMod.val / 255;
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
if (HSL.L * val_ > max_hls) {
HSL.L = max_hls;
} else {
HSL.L = Math.max(0, (HSL.L * val_) >> 0);
}
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "wordTint") {
var _val = colorMod.val / 255;
var HSL = {
H: 0,
S: 0,
L: 0
};
this.RGB2HSL(RGBA.R, RGBA.G, RGBA.B, HSL);
var L_ = HSL.L * _val + (255 - colorMod.val);
if (L_ > max_hls) {
HSL.L = max_hls;
} else {
HSL.L = Math.max(0, (L_) >> 0);
}
this.HSL2RGB(HSL, RGBA);
} else {
if (colorMod.name == "shade") {
RGBA.R = Math.max(0, scRGB_to_sRGB(sRGB_to_scRGB(RGBA.R / 255) * val) * 255 >> 0);
RGBA.G = Math.max(0, scRGB_to_sRGB(sRGB_to_scRGB(RGBA.G / 255) * val) * 255 >> 0);
RGBA.B = Math.max(0, scRGB_to_sRGB(sRGB_to_scRGB(RGBA.B / 255) * val) * 255 >> 0);
} else {
if (colorMod.name == "tint") {
if (val > 0) {
RGBA.R = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.R / 255)) * val) * 255 >> 0);
RGBA.G = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.G / 255)) * val) * 255 >> 0);
RGBA.B = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.B / 255)) * val) * 255 >> 0);
} else {
RGBA.R = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.R / 255)) * (1 - val)) * 255 >> 0);
RGBA.G = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.G / 255)) * (1 - val)) * 255 >> 0);
RGBA.B = Math.max(0, scRGB_to_sRGB(1 - (1 - sRGB_to_scRGB(RGBA.B / 255)) * (1 - val)) * 255 >> 0);
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
};
function CSysColor() {
this.type = COLOR_TYPE_SYS;
this.id = "";
this.RGBA = {
R: 0,
G: 0,
B: 0,
A: 255,
needRecalc: true
};
}
CSysColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
setR: function (pr) {
this.RGBA.R = pr;
},
setG: function (pr) {
this.RGBA.G = pr;
},
setB: function (pr) {
this.RGBA.B = pr;
},
check: function () {
var ret = this.RGBA.needRecalc;
this.RGBA.needRecalc = false;
return ret;
},
getObjectType: function () {
return historyitem_type_SysColor;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
w.WriteLong(COLOR_TYPE_SYS);
w.WriteString2(this.id);
w.WriteLong(((this.RGBA.R << 16) & 16711680) + ((this.RGBA.G << 8) & 65280) + this.RGBA.B);
},
Read_FromBinary: function (r) {
this.id = r.GetString2();
var RGB = r.GetLong();
this.RGBA.R = (RGB >> 16) & 255;
this.RGBA.G = (RGB >> 8) & 255;
this.RGBA.B = RGB & 255;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_SysColor_SetId:
this.id = data.oldId;
break;
case historyitem_SysColor_SetR:
this.RGBA.R = data.oldPr;
break;
case historyitem_SysColor_SetG:
this.RGBA.G = data.oldPr;
break;
case historyitem_SysColor_SetB:
this.RGBA.B = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_SysColor_SetId:
this.id = data.newId;
break;
case historyitem_SysColor_SetR:
this.RGBA.R = data.newPr;
break;
case historyitem_SysColor_SetG:
this.RGBA.G = data.newPr;
break;
case historyitem_SysColor_SetB:
this.RGBA.B = data.newPr;
break;
}
},
setId: function (id) {
this.id = id;
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_SysColor_SetId:
w.WriteString2(data.newId);
break;
case historyitem_SysColor_SetR:
case historyitem_SysColor_SetG:
case historyitem_SysColor_SetB:
writeLong(w, data.newPr);
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_SysColor_SetId:
this.id = r.GetString2();
break;
case historyitem_SysColor_SetR:
this.RGBA.R = readLong(r);
break;
case historyitem_SysColor_SetG:
this.RGBA.G = readLong(r);
break;
case historyitem_SysColor_SetB:
this.RGBA.B = readLong(r);
break;
}
},
IsIdentical: function (color) {
return color && color.type == COLOR_TYPE_SYS && color.id == this.id;
},
Calculate: function (obj) {},
createDuplicate: function () {
var duplicate = new CSysColor();
duplicate.id = this.id;
duplicate.RGBA.R = this.RGBA.R;
duplicate.RGBA.G = this.RGBA.G;
duplicate.RGBA.B = this.RGBA.B;
duplicate.RGBA.A = this.RGBA.A;
return duplicate;
}
};
function CPrstColor() {
this.type = COLOR_TYPE_PRST;
this.id = "";
this.RGBA = {
R: 0,
G: 0,
B: 0,
A: 255,
needRecalc: true
};
}
CPrstColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_PrstColor;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
w.WriteLong(COLOR_TYPE_PRST);
w.WriteString2(this.id);
},
Read_FromBinary: function (r) {
this.id = r.GetString2();
},
setId: function (id) {
this.id = id;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_PrstColor_SetId:
this.id = data.oldId;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_PrstColor_SetId:
this.id = data.newId;
break;
}
},
IsIdentical: function (color) {
return color && color.type == COLOR_TYPE_PRST && color.id == this.id;
},
createDuplicate: function () {
var duplicate = new CPrstColor();
duplicate.id = this.id;
duplicate.RGBA.R = this.RGBA.R;
duplicate.RGBA.G = this.RGBA.G;
duplicate.RGBA.B = this.RGBA.B;
duplicate.RGBA.A = this.RGBA.A;
return duplicate;
},
Calculate: function (obj) {
var RGB = map_prst_color[this.id];
this.RGBA.R = (RGB >> 16) & 255;
this.RGBA.G = (RGB >> 8) & 255;
this.RGBA.B = RGB & 255;
},
check: function () {
var r, g, b, rgb;
rgb = map_prst_color[this.id];
r = (rgb >> 16) & 255;
g = (rgb >> 8) & 255;
b = rgb & 255;
var RGBA = this.RGBA;
if (RGBA.needRecalc) {
RGBA.R = r;
RGBA.G = g;
RGBA.B = b;
RGBA.needRecalc = false;
return true;
} else {
if (RGBA.R === r && RGBA.G === g && RGBA.B === b) {
return false;
} else {
RGBA.R = r;
RGBA.G = g;
RGBA.B = b;
return true;
}
}
}
};
function CRGBColor() {
this.type = COLOR_TYPE_SRGB;
this.RGBA = {
R: 0,
G: 0,
B: 0,
A: 255,
needRecalc: true
};
}
CRGBColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function () {
var ret = this.RGBA.needRecalc;
this.RGBA.needRecalc = false;
return ret;
},
getObjectType: function () {
return historyitem_type_RGBColor;
},
writeToBinaryLong: function (w) {
w.WriteLong(((this.RGBA.R << 16) & 16711680) + ((this.RGBA.G << 8) & 65280) + this.RGBA.B);
},
readFromBinaryLong: function (r) {
var RGB = r.GetLong();
this.RGBA.R = (RGB >> 16) & 255;
this.RGBA.G = (RGB >> 8) & 255;
this.RGBA.B = RGB & 255;
},
Write_ToBinary: function (w) {
w.WriteLong(COLOR_TYPE_SRGB);
w.WriteLong(((this.RGBA.R << 16) & 16711680) + ((this.RGBA.G << 8) & 65280) + this.RGBA.B);
},
Read_FromBinary: function (r) {
var RGB = r.GetLong();
this.RGBA.R = (RGB >> 16) & 255;
this.RGBA.G = (RGB >> 8) & 255;
this.RGBA.B = RGB & 255;
},
setColor: function (r, g, b) {
var rgba = this.RGBA;
this.RGBA.R = r;
this.RGBA.G = g;
this.RGBA.B = b;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_RGBColor_SetColor:
this.RGBA.R = data.oldColor.r;
this.RGBA.G = data.oldColor.g;
this.RGBA.B = data.oldColor.b;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_RGBColor_SetColor:
this.RGBA.R = data.newColor.r;
this.RGBA.G = data.newColor.g;
this.RGBA.B = data.newColor.b;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_RGBColor_SetColor:
w.WriteLong(((data.r << 16) & 16711680) + ((data.g << 8) & 65280) + data.b);
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_RGBColor_SetColor:
var color = r.GetLong();
this.RGBA.R = (color >> 16) & 255;
this.RGBA.G = (color >> 8) & 255;
this.RGBA.B = color & 255;
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (color) {
return color && color.type == COLOR_TYPE_SRGB && color.RGBA.R == this.RGBA.R && color.RGBA.G == this.RGBA.G && color.RGBA.B == this.RGBA.B && color.RGBA.A == this.RGBA.A;
},
createDuplicate: function () {
var duplicate = new CRGBColor();
duplicate.id = this.id;
duplicate.RGBA.R = this.RGBA.R;
duplicate.RGBA.G = this.RGBA.G;
duplicate.RGBA.B = this.RGBA.B;
duplicate.RGBA.A = this.RGBA.A;
return duplicate;
},
Calculate: function (obj) {}
};
function CSchemeColor() {
this.type = COLOR_TYPE_SCHEME;
this.id = 0;
this.RGBA = {
R: 0,
G: 0,
B: 0,
A: 255,
needRecalc: true
};
}
CSchemeColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function (theme, colorMap) {
var RGBA, colors = theme.themeElements.clrScheme.colors;
if (colorMap[this.id] != null && colors[colorMap[this.id]] != null) {
RGBA = colors[colorMap[this.id]].color.RGBA;
} else {
if (colors[this.id] != null) {
RGBA = colors[this.id].color.RGBA;
}
}
if (!RGBA) {
RGBA = {
R: 0,
G: 0,
B: 0,
A: 255
};
}
var _RGBA = this.RGBA;
if (this.RGBA.needRecalc) {
_RGBA.R = RGBA.R;
_RGBA.G = RGBA.G;
_RGBA.B = RGBA.B;
_RGBA.A = RGBA.A;
this.RGBA.needRecalc = false;
return true;
} else {
if (_RGBA.R === RGBA.R && _RGBA.G === RGBA.G && _RGBA.B === RGBA.B && _RGBA.A === RGBA.A) {
return false;
} else {
_RGBA.R = RGBA.R;
_RGBA.G = RGBA.G;
_RGBA.B = RGBA.B;
_RGBA.A = RGBA.A;
return true;
}
}
},
getObjectType: function () {
return historyitem_type_SchemeColor;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
w.WriteLong(COLOR_TYPE_SCHEME);
w.WriteLong(this.id);
},
Read_FromBinary: function (r) {
this.id = r.GetLong();
},
setId: function (id) {
this.id = id;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_SchemeColor_SetId:
this.id = data.oldId;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_SchemeColor_SetId:
this.id = data.newId;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_SchemeColor_SetId:
w.WriteLong(data.newId);
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_SchemeColor_SetId:
this.id = r.GetLong();
break;
}
},
IsIdentical: function (color) {
return color && color.type == COLOR_TYPE_SCHEME && color.id == this.id;
},
createDuplicate: function () {
var duplicate = new CSchemeColor();
duplicate.id = this.id;
duplicate.RGBA.R = this.RGBA.R;
duplicate.RGBA.G = this.RGBA.G;
duplicate.RGBA.B = this.RGBA.B;
duplicate.RGBA.A = this.RGBA.A;
return duplicate;
},
Calculate: function (theme, slide, layout, masterSlide, RGBA) {
if (theme.themeElements.clrScheme) {
if (this.id == phClr) {
this.RGBA = RGBA;
} else {
var clrMap;
if (slide != null && slide.clrMap != null) {
clrMap = slide.clrMap.color_map;
} else {
if (layout != null && layout.clrMap != null) {
clrMap = layout.clrMap.color_map;
} else {
if (masterSlide != null && masterSlide.clrMap != null) {
clrMap = masterSlide.clrMap.color_map;
} else {
clrMap = DEFAULT_COLOR_MAP.color_map;
}
}
}
if (clrMap[this.id] != null && theme.themeElements.clrScheme.colors[clrMap[this.id]] != null) {
this.RGBA = theme.themeElements.clrScheme.colors[clrMap[this.id]].color.RGBA;
} else {
if (theme.themeElements.clrScheme.colors[this.id] != null) {
this.RGBA = theme.themeElements.clrScheme.colors[this.id].color.RGBA;
}
}
}
}
}
};
function CUniColor() {
this.color = null;
this.Mods = null;
this.RGBA = {
R: 0,
G: 0,
B: 0,
A: 255
};
}
CUniColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
checkPhColor: function (unicolor) {
if (this.color && this.color.type === COLOR_TYPE_SCHEME && this.color.id === 14) {
if (unicolor) {
if (unicolor.color) {
this.color = unicolor.color.createDuplicate();
}
if (unicolor.Mods) {
this.Mods = unicolor.Mods.createDuplicate();
}
}
}
},
check: function (theme, colorMap) {
if (this.color && this.color.check(theme, colorMap.color_map)) {
this.RGBA.R = this.color.RGBA.R;
this.RGBA.G = this.color.RGBA.G;
this.RGBA.B = this.color.RGBA.B;
if (this.Mods) {
this.Mods.Apply(this.RGBA);
}
}
},
checkWordMods: function () {
return this.Mods && this.Mods.Mods.length === 1 && (this.Mods.Mods[0].name === "wordTint" || this.Mods.Mods[0].name === "wordShade");
},
convertToPPTXMods: function () {
if (this.checkWordMods()) {
var val_, mod_;
if (this.Mods.Mods[0].name === "wordShade") {
mod_ = new CColorMod();
mod_.setName("lumMod");
mod_.setVal(((this.Mods.Mods[0].val / 255) * 100000) >> 0);
this.Mods.Mods.splice(0, this.Mods.Mods.length);
this.Mods.Mods.push(mod_);
} else {
val_ = ((this.Mods.Mods[0].val / 255) * 100000) >> 0;
this.Mods.Mods.splice(0, this.Mods.Mods.length);
mod_ = new CColorMod();
mod_.setName("lumMod");
mod_.setVal(val_);
this.Mods.Mods.push(mod_);
mod_ = new CColorMod();
mod_.setName("lumOff");
mod_.setVal(100000 - val_);
this.Mods.Mods.push(mod_);
}
}
},
canConvertPPTXModsToWord: function () {
return this.Mods && ((this.Mods.Mods.length === 1 && this.Mods.Mods[0].name === "lumMod" && this.Mods.Mods[0].val > 0) || (this.Mods.Mods.length === 2 && this.Mods.Mods[0].name === "lumMod" && this.Mods.Mods[0].val > 0 && this.Mods.Mods[1].name === "lumOff" && this.Mods.Mods[1].val > 0));
},
convertToWordMods: function () {
if (this.canConvertPPTXModsToWord()) {
var mod_ = new CColorMod();
mod_.setName(this.Mods.Mods.length === 1 ? "wordShade" : "wordTint");
mod_.setVal(((this.Mods.Mods[0].val * 255) / 100000) >> 0);
this.Mods.Mods.splice(0, this.Mods.Mods.length);
this.Mods.Mods.push(mod_);
}
},
getObjectType: function () {
return historyitem_type_UniColor;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
setColor: function (color) {
this.color = color;
},
setMods: function (mods) {
this.Mods = mods;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_UniColor_SetColor:
this.color = data.oldColor;
break;
case historyitem_UniColor_SetMods:
this.Mods = data.oldMods;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_UniColor_SetColor:
this.color = data.oldColor;
break;
case historyitem_UniColor_SetMods:
this.Mods = data.oldMods;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_UniColor_SetColor:
w.WriteBool(isRealObject(data.newColor));
if (isRealObject(data.newColor)) {
w.WriteString2(data.newColor.Get_Id());
}
break;
case historyitem_UniColor_SetMods:
w.WriteBool(isRealObject(data.newMods));
if (isRealObject(data.newColor)) {
w.WriteString2(data.newMods.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_UniColor_SetColor:
if (r.GetBool()) {
this.color = g_oTableId.Get_ById(r.GetString2());
} else {
this.color = null;
}
break;
case historyitem_UniColor_SetMods:
if (r.GetBool()) {
this.Mods = g_oTableId.Get_ById(r.GetString2());
} else {
this.Mods = null;
}
break;
}
},
Write_ToBinary: function (w) {
if (this.color) {
w.WriteBool(true);
this.color.Write_ToBinary(w);
} else {
w.WriteBool(false);
}
if (this.Mods) {
w.WriteBool(true);
this.Mods.Write_ToBinary(w);
} else {
w.WriteBool(false);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
var type = r.GetLong();
switch (type) {
case COLOR_TYPE_NONE:
break;
case COLOR_TYPE_SRGB:
this.color = new CRGBColor();
this.color.Read_FromBinary(r);
break;
case COLOR_TYPE_PRST:
this.color = new CPrstColor();
this.color.Read_FromBinary(r);
break;
case COLOR_TYPE_SCHEME:
this.color = new CSchemeColor();
this.color.Read_FromBinary(r);
break;
case COLOR_TYPE_SYS:
this.color = new CSysColor();
this.color.Read_FromBinary(r);
break;
}
}
if (r.GetBool()) {
this.Mods = new CColorModifiers();
this.Mods.Read_FromBinary(r);
} else {
this.Mods = null;
}
},
createDuplicate: function () {
var duplicate = new CUniColor();
if (this.color != null) {
duplicate.color = this.color.createDuplicate();
}
if (this.Mods) {
duplicate.Mods = this.Mods.createDuplicate();
}
duplicate.RGBA.R = this.RGBA.R;
duplicate.RGBA.G = this.RGBA.G;
duplicate.RGBA.B = this.RGBA.B;
duplicate.RGBA.A = this.RGBA.A;
return duplicate;
},
IsIdentical: function (unicolor) {
if (unicolor == null) {
return false;
}
if (!this.color.IsIdentical(unicolor.color)) {
return false;
}
if (!this.Mods.IsIdentical(unicolor.Mods)) {
return false;
}
return true;
},
Calculate: function (theme, slide, layout, masterSlide, RGBA) {
if (this.color == null) {
return this.RGBA;
}
this.color.Calculate(theme, slide, layout, masterSlide, RGBA);
this.RGBA = {
R: this.color.RGBA.R,
G: this.color.RGBA.G,
B: this.color.RGBA.B,
A: this.color.RGBA.A
};
if (this.Mods) {
this.Mods.Apply(this.RGBA);
}
},
compare: function (unicolor) {
if (unicolor == null) {
return null;
}
var _ret = new CUniColor();
if (this.color == null || unicolor.color == null || this.color.type !== unicolor.color.type) {
return _ret;
}
switch (this.color.type) {
case COLOR_TYPE_NONE:
break;
case COLOR_TYPE_PRST:
_ret.color = new CPrstColor();
if (unicolor.color.id == this.color.id) {
_ret.color.id = this.color.id;
_ret.color.RGBA.R = this.color.RGBA.R;
_ret.color.RGBA.G = this.color.RGBA.G;
_ret.color.RGBA.B = this.color.RGBA.B;
_ret.color.RGBA.A = this.color.RGBA.A;
_ret.RGBA.R = this.RGBA.R;
_ret.RGBA.G = this.RGBA.G;
_ret.RGBA.B = this.RGBA.B;
_ret.RGBA.A = this.RGBA.A;
}
break;
case COLOR_TYPE_SCHEME:
_ret.color = new CSchemeColor();
if (unicolor.color.id == this.color.id) {
_ret.color.id = this.color.id;
_ret.color.RGBA.R = this.color.RGBA.R;
_ret.color.RGBA.G = this.color.RGBA.G;
_ret.color.RGBA.B = this.color.RGBA.B;
_ret.color.RGBA.A = this.color.RGBA.A;
_ret.RGBA.R = this.RGBA.R;
_ret.RGBA.G = this.RGBA.G;
_ret.RGBA.B = this.RGBA.B;
_ret.RGBA.A = this.RGBA.A;
}
break;
case COLOR_TYPE_SRGB:
_ret.color = new CRGBColor();
var _RGBA1 = this.color.RGBA;
var _RGBA2 = this.color.RGBA;
if (_RGBA1.R === _RGBA2.R && _RGBA1.G === _RGBA2.G && _RGBA1.B === _RGBA2.B) {
_ret.color.RGBA.R = this.color.RGBA.R;
_ret.color.RGBA.G = this.color.RGBA.G;
_ret.color.RGBA.B = this.color.RGBA.B;
_ret.RGBA.R = this.RGBA.R;
_ret.RGBA.G = this.RGBA.G;
_ret.RGBA.B = this.RGBA.B;
}
if (_RGBA1.A === _RGBA2.A) {
_ret.color.RGBA.A = this.color.RGBA.A;
}
break;
case COLOR_TYPE_SYS:
if (unicolor.color.id == this.color.id) {
_ret.color.id = this.color.id;
_ret.color.RGBA.R = this.color.RGBA.R;
_ret.color.RGBA.G = this.color.RGBA.G;
_ret.color.RGBA.B = this.color.RGBA.B;
_ret.color.RGBA.A = this.color.RGBA.A;
_ret.RGBA.R = this.RGBA.R;
_ret.RGBA.G = this.RGBA.G;
_ret.RGBA.B = this.RGBA.B;
_ret.RGBA.A = this.RGBA.A;
}
break;
}
return _ret;
},
getCSSColor: function (transparent) {
if (transparent != null) {
var _css = "rgba(" + this.RGBA.R + "," + this.RGBA.G + "," + this.RGBA.B + ",1)";
return _css;
}
var _css = "rgba(" + this.RGBA.R + "," + this.RGBA.G + "," + this.RGBA.B + "," + (this.RGBA.A / 255) + ")";
return _css;
}
};
function CreateUniColorRGB(r, g, b) {
var ret = new CUniColor();
ret.setColor(new CRGBColor());
ret.color.setColor(r, g, b);
return ret;
}
function CreteSolidFillRGB(r, g, b) {
var ret = new CUniFill();
ret.setFill(new CSolidFill());
ret.fill.setColor(new CUniColor());
var _uni_color = ret.fill.color;
_uni_color.setColor(new CRGBColor());
_uni_color.color.setColor(r, g, b);
return ret;
}
function CreateSolidFillRGBA(r, g, b, a) {
var ret = new CUniFill();
ret.setFill(new CSolidFill());
ret.fill.setColor(new CUniColor());
var _uni_color = ret.fill.color;
_uni_color.RGBA.R = r;
_uni_color.RGBA.G = g;
_uni_color.RGBA.B = b;
_uni_color.RGBA.A = a;
return ret;
}
var FILL_TYPE_NONE = 0;
var FILL_TYPE_BLIP = 1;
var FILL_TYPE_NOFILL = 2;
var FILL_TYPE_SOLID = 3;
var FILL_TYPE_GRAD = 4;
var FILL_TYPE_PATT = 5;
function CSrcRect() {
this.l = null;
this.t = null;
this.r = null;
this.b = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CSrcRect.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_SrcRect;
},
setLTRB: function (l, t, r, b) {
History.Add(this, {
Type: historyitem_SrcRect_SetLTRB,
oldLTRB: {
l: this.l,
t: this.t,
r: this.r,
b: this.b
},
newLTRB: {
l: l,
t: t,
r: r,
b: b
}
});
this.l = l;
this.t = t;
this.r = r;
this.b = b;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_SrcRect_SetLTRB:
var oldLTRB = data.oldLTRB;
this.l = oldLTRB.l;
this.t = oldLTRB.t;
this.r = oldLTRB.r;
this.b = oldLTRB.b;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_SrcRect_SetLTRB:
var newLTRB = data.newLTRB;
this.l = newLTRB.l;
this.t = newLTRB.t;
this.r = newLTRB.r;
this.b = newLTRB.b;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_SrcRect_SetLTRB:
var newLTRB = data.newLTRB;
var bWriteRect = isRealNumber(newLTRB.l) && isRealNumber(newLTRB.t) && isRealNumber(newLTRB.r) && isRealNumber(newLTRB.b);
w.WriteBool(bWriteRect);
if (bWriteRect) {
w.WriteDouble(newLTRB.l);
w.WriteDouble(newLTRB.t);
w.WriteDouble(newLTRB.r);
w.WriteDouble(newLTRB.b);
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_SrcRect_SetLTRB:
if (r.GetBool()) {
this.l = r.GetDouble();
this.t = r.GetDouble();
this.r = r.GetDouble();
this.b = r.GetDouble();
} else {
this.l = null;
this.t = null;
this.r = null;
this.b = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
writeDouble(w, this.l);
writeDouble(w, this.t);
writeDouble(w, this.r);
writeDouble(w, this.b);
},
Read_FromBinary: function (r) {
this.l = readDouble(r);
this.t = readDouble(r);
this.r = readDouble(r);
this.b = readDouble(r);
},
createDublicate: function () {
var _ret = new CSrcRect();
_ret.l = this.l;
_ret.t = this.t;
_ret.r = this.r;
_ret.b = this.b;
return _ret;
}
};
function CBlipFill() {
this.type = FILL_TYPE_BLIP;
this.RasterImageId = "";
this.VectorImageBin = null;
this.srcRect = null;
this.stretch = null;
this.tile = null;
this.rotWithShape = null;
}
CBlipFill.prototype = {
Get_Id: function () {
return this.Id;
},
Write_ToBinary: function (w) {
w.WriteLong(this.type);
writeString(w, this.RasterImageId);
writeString(w, this.VectorImageBin);
if (this.srcRect) {
writeBool(w, true);
writeDouble(w, this.srcRect.l);
writeDouble(w, this.srcRect.t);
writeDouble(w, this.srcRect.r);
writeDouble(w, this.srcRect.b);
} else {
writeBool(w, false);
}
writeBool(w, this.stretch);
writeBool(w, this.tile);
writeBool(w, this.rotWithShape);
},
Read_FromBinary: function (r) {
this.RasterImageId = readString(r);
this.VectorImageBin = readString(r);
if (readBool(r)) {
this.srcRect = new CSrcRect();
this.srcRect.l = readDouble(r);
this.srcRect.t = readDouble(r);
this.srcRect.r = readDouble(r);
this.srcRect.b = readDouble(r);
} else {
this.srcRect = null;
}
this.stretch = readBool(r);
this.tile = readBool(r);
this.rotWithShape = readBool(r);
},
Refresh_RecalcData: function () {},
check: function () {},
checkWordMods: function () {
return false;
},
convertToPPTXMods: function () {},
canConvertPPTXModsToWord: function () {
return false;
},
convertToWordMods: function () {},
getObjectType: function () {
return historyitem_type_BlipFill;
},
setRasterImageId: function (rasterImageId) {
this.RasterImageId = checkRasterImageId(rasterImageId);
},
setVectorImageBin: function (vectorImageBin) {
this.VectorImageBin = vectorImageBin;
},
setSrcRect: function (srcRect) {
this.srcRect = srcRect;
},
setStretch: function (stretch) {
this.stretch = stretch;
},
setTile: function (tile) {
this.tile = tile;
},
setRotWithShape: function (rotWithShape) {
this.rotWithShape = rotWithShape;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_BlipFill_SetRasterImageId:
this.RasterImageId = data.oldRasterImageId;
break;
case historyitem_BlipFill_SetVectorImageBin:
this.VectorImageBin = data.oldVectorImageBin;
break;
case historyitem_BlipFill_SetSrcRect:
this.srcRect = data.oldSrcRect;
break;
case historyitem_BlipFill_SetStretch:
this.stretch = data.oldStretch;
break;
case historyitem_BlipFill_SetTile:
this.tile = data.oldTile;
break;
case historyitem_BlipFill_SetRotWithShape:
this.rotWithShape = data.oldRotWithShape;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_BlipFill_SetRasterImageId:
this.RasterImageId = data.newRasterImageId;
break;
case historyitem_BlipFill_SetVectorImageBin:
this.VectorImageBin = data.newVectorImageBin;
break;
case historyitem_BlipFill_SetSrcRect:
this.srcRect = data.newSrcRect;
break;
case historyitem_BlipFill_SetStretch:
this.stretch = data.newStretch;
break;
case historyitem_BlipFill_SetTile:
this.tile = data.newTile;
break;
case historyitem_BlipFill_SetRotWithShape:
this.rotWithShape = data.newRotWithShape;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_BlipFill_SetRasterImageId:
w.WriteBool(typeof data.newRasterImageId === "string");
if (typeof data.newRasterImageId === "string") {
w.WriteString2(data.newRasterImageId);
}
break;
case historyitem_BlipFill_SetVectorImageBin:
w.WriteBool(typeof this.VectorImageBin === "string");
if (typeof this.VectorImageBin === "string") {
w.WriteString2(this.VectorImageBin);
}
break;
case historyitem_BlipFill_SetSrcRect:
w.WriteBool(isRealObject(data.newSrcRect));
if (isRealObject(data.newSrcRect)) {
w.WriteString2(data.newSrcRect.Get_Id());
}
break;
case historyitem_BlipFill_SetStretch:
w.WriteBool(isRealBool(data.newStretch));
if (isRealBool(data.newStretch)) {
w.WriteBool(data.newStretch);
}
break;
case historyitem_BlipFill_SetTile:
w.WriteBool(isRealBool(data.newTile));
if (isRealBool(data.newTile)) {
w.WriteBool(data.newTile);
}
break;
case historyitem_BlipFill_SetRotWithShape:
w.WriteBool(isRealBool(data.newRotWithShape));
if (isRealBool(data.newRotWithShape)) {
w.WriteBool(data.newRotWithShape);
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_BlipFill_SetRasterImageId:
if (r.GetBool()) {
this.RasterImageId = r.GetString2();
} else {
this.RasterImageId = null;
}
break;
case historyitem_BlipFill_SetVectorImageBin:
if (r.GetBool()) {
this.VectorImageBin = r.GetString2();
} else {
this.VectorImageBin = null;
}
break;
case historyitem_BlipFill_SetSrcRect:
if (r.GetBool()) {
this.srcRect = g_oTableId.Get_ById(r.GetString2());
} else {
this.srcRect = null;
}
break;
case historyitem_BlipFill_SetStretch:
if (r.GetBool()) {
this.srcRect = r.GetBool();
} else {
this.srcRect = null;
}
break;
case historyitem_BlipFill_SetTile:
if (r.GetBool()) {
this.tile = r.GetBool();
} else {
this.tile = null;
}
break;
case historyitem_BlipFill_SetRotWithShape:
if (r.GetBool()) {
this.rotWithShape = r.GetBool();
} else {
this.rotWithShape = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
createDuplicate: function () {
var duplicate = new CBlipFill();
duplicate.RasterImageId = this.RasterImageId;
duplicate.VectorImageBin = this.VectorImageBin;
duplicate.stretch = this.stretch;
duplicate.tile = this.tile;
if (null != this.srcRect) {
duplicate.srcRect = this.srcRect.createDublicate();
}
duplicate.rotWithShape = this.rotWithShape;
return duplicate;
},
IsIdentical: function (fill) {
if (fill == null) {
return false;
}
if (fill.type != FILL_TYPE_BLIP) {
return false;
}
if (fill.RasterImageId != this.RasterImageId) {
return false;
}
if (fill.stretch != this.stretch) {
return false;
}
if (fill.tile != this.tile) {
return false;
}
return true;
},
compare: function (fill) {
if (fill == null || fill.type !== FILL_TYPE_BLIP) {
return null;
}
var _ret = new CBlipFill();
if (this.RasterImageId == fill.RasterImageId) {
_ret.RasterImageId = this.RasterImageId;
}
if (fill.stretch == this.stretch) {
_ret.stretch = this.stretch;
}
if (fill.tile == this.tile) {
_ret.tile = this.tile;
}
if (fill.rotWithShape === this.rotWithShape) {
_ret.rotWithShape = this.rotWithShape;
}
return _ret;
}
};
function CSolidFill() {
this.type = FILL_TYPE_SOLID;
this.color = null;
}
CSolidFill.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function (theme, colorMap) {
if (this.color) {
this.color.check(theme, colorMap);
}
},
getObjectType: function () {
return historyitem_type_SolidFill;
},
setColor: function (color) {
this.color = color;
},
Write_ToBinary: function (w) {
w.WriteLong(FILL_TYPE_SOLID);
if (this.color) {
w.WriteBool(true);
this.color.Write_ToBinary(w);
} else {
w.WriteBool(false);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.color = new CUniColor();
this.color.Read_FromBinary(r);
}
},
checkWordMods: function () {
return this.color && this.color.checkWordMods();
},
convertToPPTXMods: function () {
this.color && this.color.convertToPPTXMods();
},
canConvertPPTXModsToWord: function () {
return this.color && this.color.canConvertPPTXModsToWord();
},
convertToWordMods: function () {
this.color && this.color.convertToWordMods();
},
Undo: function (data) {
switch (data.Type) {
case historyitem_SolidFill_SetColor:
this.color = data.oldColor;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_SolidFill_SetColor:
this.color = data.newColor;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_SolidFill_SetColor:
w.WriteBool(isRealObject(data.newColor));
if (isRealObject(data.newColor)) {
w.WriteString2(data.newColor.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_SolidFill_SetColor:
if (r.GetBool()) {
this.color = g_oTableId.Get_ById(r.GetString2());
} else {
this.color = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (fill) {
if (fill == null) {
return false;
}
if (fill.type != FILL_TYPE_SOLID) {
return false;
}
return this.color.IsIdentical(fill.color);
},
createDuplicate: function () {
var duplicate = new CSolidFill();
duplicate.color = this.color.createDuplicate();
return duplicate;
},
compare: function (fill) {
if (fill == null || fill.type !== FILL_TYPE_SOLID) {
return null;
}
var _ret = new CSolidFill();
_ret.color = this.color.compare(fill.color);
return _ret;
}
};
function CGs() {
this.color = null;
this.pos = 0;
}
CGs.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
getObjectType: function () {
return historyitem_type_Gs;
},
setColor: function (color) {
this.color = color;
},
setPos: function (pos) {
this.pos = pos;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_Gs_SetColor:
this.color = data.oldColor;
break;
case historyitem_Gs_SetPos:
this.pos = data.oldPos;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_Gs_SetColor:
this.color = data.newColor;
break;
case historyitem_Gs_SetPos:
this.pos = data.newPos;
break;
}
},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.color));
if (isRealObject(this.color)) {
this.color.Write_ToBinary(w);
}
writeLong(w, this.pos);
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.color = new CUniColor();
this.color.Read_FromBinary(r);
} else {
this.color = null;
}
this.pos = readLong(r);
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_Gs_SetColor:
w.WriteBool(isRealObject(data.newColor));
if (isRealObject(data.newColor)) {
w.WriteString2(data.newColor.Get_Id());
}
break;
case historyitem_Gs_SetPos:
w.WriteBool(isRealNumber(data.newPos));
if (isRealNumber(data.newPos)) {
w.WriteLong(data.newPos);
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_Gs_SetColor:
if (r.GetBool()) {
this.color = g_oTableId.Get_ById(r.GetString2());
} else {
this.color = null;
}
break;
case historyitem_Gs_SetPos:
if (r.GetBool()) {
this.pos = r.GetLong();
} else {
this.pos = 0;
}
break;
}
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (fill) {
return false;
},
createDuplicate: function () {
var duplicate = new CGs();
duplicate.pos = this.pos;
duplicate.color = this.color.createDuplicate();
return duplicate;
},
compare: function (gs) {
var compare_unicolor = this.color.compare(gs.color);
if (!isRealObject(compare_unicolor)) {
return null;
}
var ret = new CGs();
ret.color = compare_unicolor;
ret.pos = gs.pos === this.pos ? this.pos : 0;
return ret;
}
};
function GradLin() {
this.angle = 5400000;
this.scale = true;
}
GradLin.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_GradLin;
},
setAngle: function (angle) {
this.angle = angle;
},
setScale: function (scale) {
this.scale = scale;
},
Write_ToBinary: function (w) {
writeLong(w, this.angle);
writeBool(w, this.scale);
},
Read_FromBinary: function (r) {
this.angle = readLong(r);
this.scale = readBool(r);
},
Undo: function (data) {
switch (data.Type) {
case historyitem_GradLin_SetAngle:
this.angle = data.oldAngle;
break;
case historyitem_GradLin_SetScale:
this.scale = data.oldScale;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_GradLin_SetAngle:
this.angle = data.newAngle;
break;
case historyitem_GradLin_SetScale:
this.scale = data.newScale;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_GradLin_SetAngle:
w.WriteBool(isRealNumber(data.newAngle));
if (isRealNumber(data.newAngle)) {
w.WriteLong(data.newAngle);
}
break;
case historyitem_GradLin_SetScale:
w.WriteBool(isRealBool(data.newScale));
if (isRealBool(data.newScale)) {
w.WriteBool(data.newScale);
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_GradLin_SetAngle:
if (r.GetBool()) {
this.angle = r.GetLong();
} else {
this.angle = null;
}
break;
case historyitem_GradLin_SetScale:
if (r.GetBool()) {
this.scale = r.GetBool();
} else {
this.scale = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (lin) {
if (this.angle != lin.angle) {
return false;
}
if (this.scale != lin.scale) {
return false;
}
return true;
},
createDuplicate: function () {
var duplicate = new GradLin();
duplicate.angle = this.angle;
duplicate.scale = this.scale;
return duplicate;
},
compare: function (lin) {
return null;
}
};
function GradPath() {
this.path = 0;
this.rect = null;
}
GradPath.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_GradPath;
},
setPath: function (path) {
this.path = path;
},
setRect: function (rect) {
this.rect = rect;
},
Write_ToBinary: function (w) {
writeLong(w, this.path);
w.WriteBool(isRealObject(this.rect));
if (isRealObject(this.rect)) {
this.rect.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.path = readLong(r);
if (r.GetBool()) {
this.rect = new CSrcRect();
this.rect.Read_FromBinary(r);
}
},
Undo: function (data) {
switch (data.Type) {
case historyitem_GradPath_SetPath:
this.path = data.oldPath;
break;
case historyitem_GradPath_SetRect:
this.rect = data.oldRect;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_GradPath_SetPath:
this.path = data.newPath;
break;
case historyitem_GradPath_SetRect:
this.rect = data.newRect;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_GradPath_SetPath:
w.WriteBool(isRealNumber(data.newPath));
if (isRealNumber(data.newPath)) {
w.WriteLong(data.newPath);
}
break;
case historyitem_GradPath_SetRect:
w.WriteBool(isRealObject(data.newRect));
if (isRealObject(data.newRect)) {
w.WriteString2(data.newRect.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() !== this.getObjectType()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_GradPath_SetPath:
if (r.GetBool()) {
this.path = r.GetLong();
} else {
this.path = null;
}
break;
case historyitem_GradPath_SetRect:
if (r.GetBool()) {
this.rect = g_oTableId.Get_ById(r.GetString2());
} else {
this.rect = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (path) {
if (this.path != path.path) {
return false;
}
return true;
},
createDuplicate: function () {
var duplicate = new GradPath();
duplicate.path = this.path;
return duplicate;
},
compare: function (path) {
return null;
}
};
function CGradFill() {
this.type = FILL_TYPE_GRAD;
this.colors = [];
this.lin = null;
this.path = null;
}
CGradFill.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function (theme, colorMap) {
for (var i = 0; i < this.colors.length; ++i) {
if (this.colors[i].color) {
this.colors[i].color.check(theme, colorMap);
}
}
},
getObjectType: function () {
return historyitem_type_GradFill;
},
checkWordMods: function () {
for (var i = 0; i < this.colors.length; ++i) {
if (this.colors[i] && this.colors[i].color && this.colors[i].color.checkWordMods()) {
return true;
}
}
return false;
},
convertToPPTXMods: function () {
for (var i = 0; i < this.colors.length; ++i) {
this.colors[i] && this.colors[i].color && this.colors[i].color.convertToPPTXMods();
}
},
canConvertPPTXModsToWord: function () {
for (var i = 0; i < this.colors.length; ++i) {
if (this.colors[i] && this.colors[i].color && this.colors[i].color.canConvertPPTXModsToWord()) {
return true;
}
}
return false;
},
convertToWordMods: function () {
for (var i = 0; i < this.colors.length; ++i) {
this.colors[i] && this.colors[i].color && this.colors[i].color.convertToWordMods();
}
},
addColor: function (color) {
this.colors.push(color);
},
setLin: function (lin) {
this.lin = lin;
},
setPath: function (path) {
this.path = path;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_GradFill_AddColor:
if (isRealObject(data.color)) {
for (var i = this.colors.length - 1; i > -1; --i) {
if (this.colors[i].Get_Id() === data.color.Get_Id()) {
this.colors.splice(i, 1);
break;
}
}
}
break;
case historyitem_GradFill_SetLin:
this.lin = data.oldLin;
break;
case historyitem_GradFill_SetPath:
this.path = data.oldPath;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_GradFill_AddColor:
if (isRealObject(data.color)) {
this.colors.push(data.color);
}
break;
case historyitem_GradFill_SetLin:
this.lin = data.newLin;
break;
case historyitem_GradFill_SetPath:
this.path = data.newPath;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_GradFill_AddColor:
case historyitem_GradFill_SetLin:
case historyitem_GradFill_SetPath:
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
w.WriteLong(this.type);
w.WriteLong(this.colors.length);
for (var i = 0; i < this.colors.length; ++i) {
this.colors[i].Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.lin));
if (isRealObject(this.lin)) {
this.lin.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.path));
if (isRealObject(this.path)) {
this.path.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
var len = r.GetLong();
for (var i = 0; i < len; ++i) {
this.colors[i] = new CGs();
this.colors[i].Read_FromBinary(r);
}
if (r.GetBool()) {
this.lin = new GradLin();
this.lin.Read_FromBinary(r);
} else {
this.lin = null;
}
if (r.GetBool()) {
this.path = new GradPath();
this.path.Read_FromBinary(r);
} else {
this.path = null;
}
},
IsIdentical: function (fill) {
if (fill == null) {
return false;
}
if (fill.type != FILL_TYPE_GRAD) {
return false;
}
if (fill.colors.length != this.colors.length) {
return false;
}
for (var i = 0; i < this.colors.length; ++i) {
if (!this.colors[i].IsIdentical(fill.colors[i])) {
return false;
}
}
return true;
},
createDuplicate: function () {
var duplicate = new CGradFill();
for (var i = 0; i < this.colors.length; ++i) {
duplicate.colors[i] = this.colors[i].createDuplicate();
}
if (this.lin) {
duplicate.lin = this.lin.createDuplicate();
}
if (this.path) {
duplicate.path = this.path.createDuplicate();
}
return duplicate;
},
compare: function (fill) {
if (fill == null || fill.type !== FILL_TYPE_GRAD) {
return null;
}
var _ret = new CGradFill();
if (this.lin == null || fill.lin == null) {
_ret.lin = null;
} else {
_ret.lin = new GradLin();
_ret.lin.angle = this.lin && this.lin.angle === fill.lin.angle ? fill.lin.angle : 5400000;
_ret.lin.scale = this.lin && this.lin.scale === fill.lin.scale ? fill.lin.scale : true;
}
if (this.path == null || fill.path == null) {
_ret.path = null;
} else {
_ret.path = new GradPath();
}
if (this.colors.length === fill.colors.length) {
for (var i = 0; i < this.colors.length; ++i) {
var compare_unicolor = this.colors[i].compare(fill.colors[i]);
if (!isRealObject(compare_unicolor)) {
break;
}
_ret.colors[i] = compare_unicolor;
}
}
return _ret;
}
};
function CPattFill() {
this.type = FILL_TYPE_PATT;
this.ftype = 0;
this.fgClr = null;
this.bgClr = null;
}
CPattFill.prototype = {
getObjectType: function () {
return historyitem_type_PathFill;
},
check: function (theme, colorMap) {
if (this.fgClr) {
this.fgClr.check(theme, colorMap);
}
if (this.bgClr) {
this.bgClr.check(theme, colorMap);
}
},
checkWordMods: function () {
if (this.fgClr && this.fgClr.checkWordMods()) {
return true;
}
return this.bgClr && this.bgClr.checkWordMods();
},
convertToPPTXMods: function () {
this.fgClr && this.fgClr.convertToPPTXMods();
this.bgClr && this.bgClr.convertToPPTXMods();
},
canConvertPPTXModsToWord: function () {
if (this.fgClr && this.fgClr.canConvertPPTXModsToWord()) {
return true;
}
return this.bgClr && this.bgClr.canConvertPPTXModsToWord();
},
convertToWordMods: function () {
this.fgClr && this.fgClr.convertToWordMods();
this.bgClr && this.bgClr.convertToWordMods();
},
setFType: function (fType) {
this.ftype = fType;
},
setFgColor: function (fgClr) {
this.fgClr = fgClr;
},
setBgColor: function (bgClr) {
this.bgClr = bgClr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_PathFill_SetFType:
this.ftype = data.oldFType;
break;
case historyitem_PathFill_SetFgClr:
this.fgClr = data.oldFgClr;
break;
case historyitem_PathFill_SetBgClr:
this.bgClr = data.oldBgClr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_PathFill_SetFType:
this.ftype = data.newFType;
break;
case historyitem_PathFill_SetFgClr:
this.fgClr = data.newFgClr;
break;
case historyitem_PathFill_SetBgClr:
this.bgClr = data.newBgClr;
break;
}
},
Write_ToBinary: function (w) {
w.WriteLong(this.type);
writeLong(w, this.ftype);
w.WriteBool(isRealObject(this.fgClr));
if (isRealObject(this.fgClr)) {
this.fgClr.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.bgClr));
if (isRealObject(this.bgClr)) {
this.bgClr.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.ftype = readLong(r);
if (r.GetBool()) {
this.fgClr = new CUniColor();
this.fgClr.Read_FromBinary(r);
}
if (r.GetBool()) {
this.bgClr = new CUniColor();
this.bgClr.Read_FromBinary(r);
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_PathFill_SetFType:
w.WriteBool(isRealNumber(data.newFType));
if (isRealNumber(data.newFType)) {
w.WriteLong(data.newFType);
}
this.ftype = data.newFType;
break;
case historyitem_PathFill_SetFgClr:
this.fgClr = data.newFgClr;
break;
case historyitem_PathFill_SetBgClr:
this.bgClr = data.newBgClr;
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_PathFill_SetFType:
if (r.GetBool()) {
this.ftype = r.GetLong();
} else {
this.ftype = null;
}
break;
case historyitem_PathFill_SetFgClr:
if (r.GetBool()) {
this.fgClr = g_oTableId.Get_ById(r.GetString2());
} else {
this.fgClr = null;
}
break;
case historyitem_PathFill_SetBgClr:
if (r.GetBool()) {
this.bgClr = g_oTableId.Get_ById(r.GetString2());
} else {
this.bgClr = null;
}
break;
}
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
IsIdentical: function (fill) {
if (fill == null) {
return false;
}
if (fill.type != FILL_TYPE_PATT && this.ftype != fill.ftype) {
return false;
}
return this.fgClr.IsIdentical(fill.fgClr) && this.bgClr.IsIdentical(fill.bgClr);
},
createDuplicate: function () {
var duplicate = new CPattFill();
duplicate.ftype = this.ftype;
duplicate.fgClr = this.fgClr.createDuplicate();
duplicate.bgClr = this.bgClr.createDuplicate();
return duplicate;
},
compare: function (fill) {
if (fill == null) {
return null;
}
if (fill.type !== FILL_TYPE_PATT) {
return null;
}
var _ret = new CPattFill();
if (fill.ftype == this.ftype) {
_ret.ftype = this.ftype;
}
_ret.fgClr = this.fgClr.compare(fill.fgClr);
_ret.bgClr = this.bgClr.compare(fill.bgClr);
return _ret;
}
};
function CNoFill() {
this.type = FILL_TYPE_NOFILL;
}
CNoFill.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function () {},
getObjectType: function () {
return historyitem_type_NoFill;
},
Undo: function () {},
Redo: function () {},
Save_Changes: function () {},
Load_Changes: function () {},
Write_ToBinary: function (w) {
w.WriteLong(FILL_TYPE_NOFILL);
},
Read_FromBinary: function (r) {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
checkWordMods: function () {
return false;
},
convertToPPTXMods: function () {},
canConvertPPTXModsToWord: function () {
return false;
},
convertToWordMods: function () {},
createDuplicate: function () {
return new CNoFill();
},
IsIdentical: function (fill) {
if (fill == null) {
return false;
}
return fill.type != FILL_TYPE_NOFILL;
},
compare: function (nofill) {
if (nofill == null) {
return null;
}
if (nofill.type === this.type) {
return new CNoFill();
}
return null;
}
};
function CreateBlackRGBUnifill() {
var ret = new CUniFill();
ret.setFill(new CSolidFill());
ret.fill.setColor(new CUniColor());
ret.fill.color.setColor(new CRGBColor());
ret.fill.color.color.setColor(0, 0, 0);
return ret;
}
function FormatRGBAColor() {
this.R = 0;
this.G = 0;
this.B = 0;
this.A = 255;
}
function CUniFill() {
this.fill = null;
this.transparent = null;
}
CUniFill.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
check: function (theme, colorMap) {
if (this.fill) {
this.fill.check(theme, colorMap);
}
},
checkPhColor: function (unicolor) {
if (this.fill) {
switch (this.fill.type) {
case FILL_TYPE_NONE:
break;
case FILL_TYPE_BLIP:
break;
case FILL_TYPE_NOFILL:
break;
case FILL_TYPE_SOLID:
if (this.fill.color && this.fill.color) {
this.fill.color.checkPhColor(unicolor);
}
break;
case FILL_TYPE_GRAD:
for (var i = 0; i < this.fill.colors.length; ++i) {
if (this.fill.colors[i] && this.fill.colors[i].color) {
this.fill.colors[i].color.checkPhColor(unicolor);
}
}
break;
case FILL_TYPE_PATT:
if (this.fill.bgClr) {
this.fill.bgClr.checkPhColor(unicolor);
}
if (this.fill.fgClr) {
this.fill.fgClr.checkPhColor(unicolor);
}
break;
}
}
},
checkWordMods: function () {
return this.fill && this.fill.checkWordMods();
},
convertToPPTXMods: function () {
this.fill && this.fill.convertToPPTXMods();
},
canConvertPPTXModsToWord: function () {
return this.fill && this.fill.canConvertPPTXModsToWord();
},
convertToWordMods: function () {
this.fill && this.fill.convertToWordMods();
},
getCalcFill: function () {
return this;
},
getObjectType: function () {
return historyitem_type_UniFill;
},
setFill: function (fill) {
this.fill = fill;
},
setTransparent: function (transparent) {
this.transparent = transparent;
},
Set_FromObject: function (o) {},
Undo: function (data) {
switch (data.Type) {
case historyitem_UniFill_SetFill:
this.fill = data.oldFill;
break;
case historyitem_UniFill_SetTransparent:
this.transparent = data.oldTransparent;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_UniFill_SetFill:
this.fill = data.newFill;
break;
case historyitem_UniFill_SetTransparent:
this.transparent = data.newTransparent;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_UniFill_SetFill:
w.WriteBool(isRealObject(data.newFill));
if (isRealObject(data.newFill)) {
w.WriteString2(data.newFill.Get_Id());
}
break;
case historyitem_UniFill_SetTransparent:
w.WriteBool(isRealNumber(data.newTransparent));
if (isRealNumber(data.newTransparent)) {
w.WriteLong(data.newTransparent);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_UniFill_SetFill:
if (r.GetBool()) {
this.fill = g_oTableId.Get_ById(r.GetString2());
} else {
this.fill = null;
}
break;
case historyitem_UniFill_SetTransparent:
if (r.GetBool()) {
this.transparent = r.GetLong();
} else {
this.transparent = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
writeDouble(w, this.transparent);
w.WriteBool(isRealObject(this.fill));
if (isRealObject(this.fill)) {
this.fill.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.transparent = readDouble(r);
if (r.GetBool()) {
var type = r.GetLong();
switch (type) {
case FILL_TYPE_NONE:
break;
case FILL_TYPE_BLIP:
this.fill = new CBlipFill();
this.fill.Read_FromBinary(r);
break;
case FILL_TYPE_NOFILL:
this.fill = new CNoFill();
this.fill.Read_FromBinary(r);
break;
case FILL_TYPE_SOLID:
this.fill = new CSolidFill();
this.fill.Read_FromBinary(r);
break;
case FILL_TYPE_GRAD:
this.fill = new CGradFill();
this.fill.Read_FromBinary(r);
break;
case FILL_TYPE_PATT:
this.fill = new CPattFill();
this.fill.Read_FromBinary(r);
break;
}
}
},
calculate: function (theme, slide, layout, masterSlide, RGBA) {
if (this.fill) {
if (this.fill.color) {
this.fill.color.Calculate(theme, slide, layout, masterSlide, RGBA);
}
if (this.fill.colors) {
for (var i = 0; i < this.fill.colors.length; ++i) {
this.fill.colors[i].color.Calculate(theme, slide, layout, masterSlide, RGBA);
}
}
if (this.fill.fgClr) {
this.fill.fgClr.Calculate(theme, slide, layout, masterSlide, RGBA);
}
if (this.fill.bgClr) {
this.fill.bgClr.Calculate(theme, slide, layout, masterSlide, RGBA);
}
}
},
getRGBAColor: function () {
if (this.fill) {
if (this.fill.type == FILL_TYPE_SOLID) {
return this.fill.color.RGBA;
}
if (this.fill.type == FILL_TYPE_GRAD) {
var RGBA = new FormatRGBAColor();
var _colors = this.fill.colors;
var _len = _colors.length;
if (0 == _len) {
return RGBA;
}
for (var i = 0; i < _len; i++) {
RGBA.R += _colors[i].color.RGBA.R;
RGBA.G += _colors[i].color.RGBA.G;
RGBA.B += _colors[i].color.RGBA.B;
}
RGBA.R = (RGBA.R / _len) >> 0;
RGBA.G = (RGBA.G / _len) >> 0;
RGBA.B = (RGBA.B / _len) >> 0;
return RGBA;
}
if (this.fill.type == FILL_TYPE_PATT) {
return this.fill.fgClr.RGBA;
}
if (this.fill.type == FILL_TYPE_NOFILL) {
return {
R: 0,
G: 0,
B: 0
};
}
}
return new FormatRGBAColor();
},
createDuplicate: function () {
var duplicate = new CUniFill();
if (this.fill != null) {
duplicate.fill = this.fill.createDuplicate();
}
duplicate.transparent = this.transparent;
return duplicate;
},
merge: function (unifill) {
if (unifill) {
if (unifill.fill != null) {
this.fill = unifill.fill.createDuplicate();
}
if (unifill.transparent != null) {
this.transparent = unifill.transparent;
}
}
},
IsIdentical: function (unifill) {
if (unifill == null) {
return false;
}
if (this.fill == null && unifill.fill == null) {
return true;
}
if (this.fill != null) {
return this.fill.IsIdentical(unifill.fill);
} else {
return false;
}
},
compare: function (unifill) {
if (unifill == null) {
return null;
}
var _ret = new CUniFill();
if (! (this.fill == null || unifill.fill == null)) {
if (this.fill.compare) {
_ret.fill = this.fill.compare(unifill.fill);
}
}
return _ret.fill;
}
};
function CompareUniFill(unifill_1, unifill_2) {
if (unifill_1 == null || unifill_2 == null) {
return null;
}
var _ret = new CUniFill();
if (! (unifill_1.transparent === null || unifill_2.transparent === null || unifill_1.transparent !== unifill_2.transparent)) {
_ret.transparent = unifill_1.transparent;
}
if (unifill_1.fill == null || unifill_2.fill == null || unifill_1.fill.type != unifill_2.fill.type) {
return _ret;
}
_ret.fill = unifill_1.compare(unifill_2);
return _ret;
}
function CompareUnifillBool(u1, u2) {
if (!u1 && !u2) {
return true;
}
if (!u1 && u2 || u1 && !u2) {
return false;
}
if (!u1.fill && !u2.fill) {
return true;
}
if (!u1.fill && u2.fill || u1.fill && !u2.fill) {
return false;
}
if (u1.fill.type !== u2.fill.type) {
return false;
}
switch (u1.fill.type) {
case FILL_TYPE_BLIP:
if (u1.fill.RasterImageId && !u2.fill.RasterImageId || u2.fill.RasterImageId && !u1.fill.RasterImageId) {
return false;
}
if (typeof u1.fill.RasterImageId === "string" && typeof u2.fill.RasterImageId === "string" && _getFullImageSrc(u1.fill.RasterImageId) !== _getFullImageSrc(u2.fill.RasterImageId)) {
return false;
}
if (u1.fill.VectorImageBin !== u2.fill.VectorImageBin) {
return false;
}
if (u1.fill.srcRect && !u2.fill.srcRect || !u1.fill.srcRect && u2.fill.srcRect) {
return false;
}
if (u1.fill.srcRect && u2.fill.srcRect) {
if (u1.fill.srcRect.l !== u2.fill.srcRect.l || u1.fill.srcRect.t !== u2.fill.srcRect.t || u1.fill.srcRect.r !== u2.fill.srcRect.r || u1.fill.srcRect.b !== u2.fill.srcRect.b) {
return false;
}
}
if (u1.fill.stretch !== u2.fill.stretch || u1.fill.tile !== u2.fill.tile || u1.fill.rotWithShape !== u2.fill.rotWithShape) {
return false;
}
break;
case FILL_TYPE_SOLID:
if (u1.fill.color && u2.fill.color) {
return CompareUniColor(u1.fill.color, u2.fill.color);
}
break;
case FILL_TYPE_GRAD:
if (u1.fill.colors.length !== u2.fill.colors.length) {
return false;
}
for (var i = 0; i < u1.fill.colors.length; ++i) {
if (u1.fill.colors[i].pos !== u1.fill.colors[i].pos || !CompareUniColor(u1.fill.colors[i].color, u2.fill.colors[i].color)) {
return false;
}
}
break;
case FILL_TYPE_PATT:
if (u1.fill.ftype !== u2.fill.ftype || !CompareUniColor(u1.fill.fgClr, u2.fill.fgClr) || !CompareUniColor(u1.fill.bgClr, u2.fill.bgClr)) {
return false;
}
break;
}
return true;
}
function CompareUniColor(u1, u2) {
if (!u1 && !u2) {
return true;
}
if (!u1 && u2 || u1 && !u2) {
return false;
}
if (!u1.color && u2.color || u1.color && !u2.color) {
return false;
}
if (u1.color && u2.color) {
if (u1.color.type !== u2.color.type) {
return false;
}
switch (u1.color.type) {
case COLOR_TYPE_NONE:
break;
case COLOR_TYPE_SRGB:
if (u1.color.RGBA.R !== u2.color.RGBA.R || u1.color.RGBA.G !== u2.color.RGBA.G || u1.color.RGBA.B !== u2.color.RGBA.B || u1.color.RGBA.A !== u2.color.RGBA.A) {
return false;
}
break;
case COLOR_TYPE_PRST:
case COLOR_TYPE_SCHEME:
if (u1.color.id !== u2.color.id) {
return false;
}
break;
case COLOR_TYPE_SYS:
if (u1.color.RGBA.R !== u2.color.RGBA.R || u1.color.RGBA.G !== u2.color.RGBA.G || u1.color.RGBA.B !== u2.color.RGBA.B || u1.color.RGBA.A !== u2.color.RGBA.A || u1.color.id !== u2.color.id) {
return false;
}
break;
}
}
if (!u1.Mods && u2.Mods || !u2.Mods && u1.Mods) {
return false;
}
if (u1.Mods && u2.Mods) {
if (u1.Mods.Mods.length !== u2.Mods.Mods.length) {
return false;
}
for (var i = 0; i < u1.Mods.Mods.length; ++i) {
if (u1.Mods.Mods[i].name !== u2.Mods.Mods[i].name || u1.Mods.Mods[i].val !== u2.Mods.Mods[i].val) {
return false;
}
}
}
return true;
}
function CompareShapeProperties(shapeProp1, shapeProp2) {
var _result_shape_prop = {};
if (shapeProp1.type === shapeProp2.type) {
_result_shape_prop.type = shapeProp1.type;
} else {
_result_shape_prop.type = null;
}
if (shapeProp1.h === shapeProp2.h) {
_result_shape_prop.h = shapeProp1.h;
} else {
_result_shape_prop.h = null;
}
if (shapeProp1.w === shapeProp2.w) {
_result_shape_prop.w = shapeProp1.w;
} else {
_result_shape_prop.w = null;
}
if (shapeProp1.stroke == null || shapeProp2.stroke == null) {
_result_shape_prop.stroke = null;
} else {
_result_shape_prop.stroke = shapeProp1.stroke.compare(shapeProp2.stroke);
}
_result_shape_prop.verticalTextAlign = null;
if (shapeProp1.canChangeArrows !== true || shapeProp2.canChangeArrows !== true) {
_result_shape_prop.canChangeArrows = false;
} else {
_result_shape_prop.canChangeArrows = true;
}
_result_shape_prop.fill = CompareUniFill(shapeProp1.fill, shapeProp2.fill);
_result_shape_prop.IsLocked = shapeProp1.IsLocked === true || shapeProp2.IsLocked === true;
if (isRealObject(shapeProp1.paddings) && isRealObject(shapeProp2.paddings)) {
_result_shape_prop.paddings = new CPaddings();
_result_shape_prop.paddings.Left = isRealNumber(shapeProp1.paddings.Left) ? (shapeProp1.paddings.Left === shapeProp2.paddings.Left ? shapeProp1.paddings.Left : undefined) : undefined;
_result_shape_prop.paddings.Top = isRealNumber(shapeProp1.paddings.Top) ? (shapeProp1.paddings.Top === shapeProp2.paddings.Top ? shapeProp1.paddings.Top : undefined) : undefined;
_result_shape_prop.paddings.Right = isRealNumber(shapeProp1.paddings.Right) ? (shapeProp1.paddings.Right === shapeProp2.paddings.Right ? shapeProp1.paddings.Right : undefined) : undefined;
_result_shape_prop.paddings.Bottom = isRealNumber(shapeProp1.paddings.Bottom) ? (shapeProp1.paddings.Bottom === shapeProp2.paddings.Bottom ? shapeProp1.paddings.Bottom : undefined) : undefined;
}
_result_shape_prop.canFill = shapeProp1.canFill === true || shapeProp2.canFill === true;
if (shapeProp1.bFromChart || shapeProp2.bFromChart) {
_result_shape_prop.bFromChart = true;
} else {
_result_shape_prop.bFromChart = false;
}
if (shapeProp1.locked || shapeProp1.locked) {
_result_shape_prop.locked = true;
}
return _result_shape_prop;
}
var lg = 500,
mid = 300,
sm = 200;
var ar_arrow = 0,
ar_diamond = 1,
ar_none = 2,
ar_oval = 3,
ar_stealth = 4,
ar_triangle = 5;
var LineEndType = {
None: 0,
Arrow: 1,
Diamond: 2,
Oval: 3,
Stealth: 4,
Triangle: 5
};
var LineEndSize = {
Large: 0,
Mid: 1,
Small: 2
};
function EndArrow() {
this.type = null;
this.len = null;
this.w = null;
}
var LineJoinType = {
Empty: 0,
Round: 1,
Bevel: 2,
Miter: 3
};
EndArrow.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
compare: function (end_arrow) {
if (end_arrow == null) {
return null;
}
var _ret = new EndArrow();
if (this.type === end_arrow.type) {
_ret.type = this.type;
}
if (this.len === end_arrow.len) {
_ret.len = this.len;
}
if (this.w === end_arrow) {
_ret.w = this.w;
}
return _ret;
},
createDuplicate: function () {
var duplicate = new EndArrow();
duplicate.type = this.type;
duplicate.len = this.len;
duplicate.w = this.w;
return duplicate;
},
IsIdentical: function (arrow) {
return arrow && arrow.type == this.type && arrow.len == this.len && arrow.w == this.w;
},
GetWidth: function (size) {
if (null == this.w) {
return size * 3;
}
switch (this.w) {
case LineEndSize.Large:
return 5 * size;
case LineEndSize.Small:
return 2 * size;
default:
break;
}
return 3 * size;
},
GetLen: function (size) {
if (null == this.len) {
return size * 3;
}
switch (this.len) {
case LineEndSize.Large:
return 5 * size;
case LineEndSize.Small:
return 2 * size;
default:
break;
}
return 3 * size;
},
getObjectType: function () {
return historyitem_type_EndArrow;
},
setType: function (type) {
this.type = type;
},
setLen: function (len) {
this.len = len;
},
setW: function (w) {
this.w = w;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_EndArrow_SetType:
this.type = data.oldType;
break;
case historyitem_EndArrow_SetLen:
this.len = data.oldLen;
break;
case historyitem_EndArrow_SetW:
this.len = data.oldW;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_EndArrow_SetType:
this.type = data.newType;
break;
case historyitem_EndArrow_SetLen:
this.len = data.newLen;
break;
case historyitem_EndArrow_SetW:
this.w = data.newW;
break;
}
},
Write_ToBinary: function (w) {
writeLong(w, this.type);
writeLong(w, this.len);
writeLong(w, this.w);
},
Read_FromBinary: function (r) {
this.type = readLong(r);
this.len = readLong(r);
this.w = readLong(r);
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_EndArrow_SetType:
w.WriteBool(isRealNumber(data.newType));
if (isRealNumber(data.newType)) {
w.WriteLong(data.newType);
}
break;
case historyitem_EndArrow_SetLen:
w.WriteBool(isRealNumber(data.newLen));
if (isRealNumber(data.newLen)) {
w.WriteLong(data.newLen);
}
break;
case historyitem_EndArrow_SetW:
w.WriteBool(isRealNumber(data.newW));
if (isRealNumber(data.newW)) {
w.WriteLong(data.newW);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_EndArrow_SetType:
if (r.GetBool()) {
this.type = r.GetLong();
} else {
this.type = null;
}
break;
case historyitem_EndArrow_SetLen:
if (r.GetBool()) {
this.len = r.GetLong();
} else {
this.len = null;
}
break;
case historyitem_EndArrow_SetW:
if (r.GetLong()) {
this.w = r.GetLong();
} else {
this.w = null;
}
break;
}
}
};
function ConvertJoinAggType(_type) {
switch (_type) {
case LineJoinType.Round:
return 2;
case LineJoinType.Bevel:
return 1;
case LineJoinType.Miter:
return 0;
default:
break;
}
return 2;
}
function LineJoin() {
this.type = null;
this.limit = null;
}
LineJoin.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_LineJoin;
},
createDuplicate: function () {
var duplicate = new LineJoin();
duplicate.type = this.type;
duplicate.limit = this.limit;
return duplicate;
},
setType: function (type) {
this.type = type;
},
setLimit: function (limit) {
this.limit = limit;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_LineJoin_SetType:
this.type = data.oldType;
break;
case historyitem_LineJoin_SetLimit:
this.limit = data.oldLimit;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_LineJoin_SetType:
this.type = data.newType;
break;
case historyitem_LineJoin_SetLimit:
this.limit = data.newLimit;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_LineJoin_SetType:
w.WriteBool(isRealNumber(data.newType));
if (isRealNumber(data.newType)) {
w.WriteLong(data.newType);
}
break;
case historyitem_LineJoin_SetLimit:
w.WriteBool(isRealNumber(data.newLimit));
if (isRealNumber(data.newLimit)) {
w.WriteLong(data.newLimit);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_LineJoin_SetType:
if (r.GetBool()) {
this.type = r.GetLong();
} else {
this.type = null;
}
break;
case historyitem_LineJoin_SetLimit:
if (r.GetBool()) {
this.limit = r.GetLong();
} else {
this.limit = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function CLn() {
this.Fill = null;
this.prstDash = null;
this.Join = null;
this.headEnd = null;
this.tailEnd = null;
this.algn = null;
this.cap = null;
this.cmpd = null;
this.w = null;
this.compare = function (line) {
if (line == null) {
return null;
}
var _ret = new CLn();
if (this.Fill != null) {
_ret.Fill = CompareUniFill(this.Fill, line.Fill);
}
if (this.prstDash === line.prstDash) {
_ret.prstDash = this.prstDash;
}
if (this.Join === line.Join) {
_ret.Join = this.Join;
}
if (this.tailEnd != null) {
_ret.tailEnd = this.tailEnd.compare(line.tailEnd);
}
if (this.headEnd != null) {
_ret.headEnd = this.headEnd.compare(line.headEnd);
}
if (this.algn === line.algn) {
_ret.algn = this.algn;
}
if (this.cap === line.cap) {
_ret.cap = this.cap;
}
if (this.cmpd === line.cmpd) {
_ret.cmpd = this.cmpd;
}
if (this.w === line.w) {
_ret.w = this.w;
}
return _ret;
};
this.merge = function (ln) {
if (ln == null) {
return;
}
if (ln.Fill != null && ln.Fill.fill != null) {
this.Fill = ln.Fill.createDuplicate();
}
if (ln.prstDash != null) {
this.prstDash = ln.prstDash;
}
if (ln.Join != null) {
this.Join = ln.Join.createDuplicate();
}
if (ln.headEnd != null) {
this.headEnd = ln.headEnd.createDuplicate();
}
if (ln.tailEnd != null) {
this.tailEnd = ln.tailEnd.createDuplicate();
}
if (ln.algn != null) {
this.algn = ln.algn;
}
if (ln.cap != null) {
this.cap = ln.cap;
}
if (ln.cmpd != null) {
this.cmpd = ln.cmpd;
}
if (ln.w != null) {
this.w = ln.w;
}
};
this.calculate = function (theme, slide, layout, master, RGBA) {
if (isRealObject(this.Fill)) {
this.Fill.calculate(theme, slide, layout, master, RGBA);
}
};
this.createDuplicate = function () {
var duplicate = new CLn();
if (null != this.Fill) {
duplicate.Fill = this.Fill.createDuplicate();
}
duplicate.prstDash = this.prstDash;
duplicate.Join = this.Join;
if (this.headEnd != null) {
duplicate.headEnd = this.headEnd.createDuplicate();
}
if (this.tailEnd != null) {
duplicate.tailEnd = this.tailEnd.createDuplicate();
}
duplicate.algn = this.algn;
duplicate.cap = this.cap;
duplicate.cmpd = this.cmpd;
duplicate.w = this.w;
return duplicate;
};
this.IsIdentical = function (ln) {
return ln && (this.Fill == null ? ln.Fill == null : this.Fill.IsIdentical(ln.Fill)) && this.Join == ln.Join && (this.headEnd == null ? ln.headEnd == null : this.headEnd.IsIdentical(ln.headEnd)) && (this.tailEnd == null ? ln.tailEnd == null : this.tailEnd.IsIdentical(ln.headEnd)) && this.algn == ln.algn && this.cap == ln.cap && this.cmpd == ln.cmpd && this.w == ln.w;
};
}
CLn.prototype = {
getObjectType: function () {
return historyitem_type_Ln;
},
setFill: function (fill) {
this.Fill = fill;
},
setPrstDash: function (prstDash) {
this.prstDash = prstDash;
},
setJoin: function (join) {
this.Join = join;
},
setHeadEnd: function (headEnd) {
this.headEnd = headEnd;
},
setTailEnd: function (tailEnd) {
this.tailEnd = tailEnd;
},
setAlgn: function (algn) {
this.algn = algn;
},
setCap: function (cap) {
this.cap = cap;
},
setCmpd: function (cmpd) {
this.cmpd = cmpd;
},
setW: function (w) {
this.w = w;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_Ln_SetFill:
this.Fill = data.oldFill;
break;
case historyitem_Ln_SetPrstDash:
this.prstDash = data.oldPrstDash;
break;
case historyitem_Ln_SetJoin:
this.Join = data.oldJoin;
break;
case historyitem_Ln_SetHeadEnd:
this.headEnd = data.oldHeadEnd;
break;
case historyitem_Ln_SetTailEnd:
this.tailEnd = data.oldTailEnd;
break;
case historyitem_Ln_SetAlgn:
this.algn = data.oldAlgn;
break;
case historyitem_Ln_SetCap:
this.cap = data.oldCap;
break;
case historyitem_Ln_SetCmpd:
this.cmpd = data.oldCmpd;
break;
case historyitem_Ln_SetW:
this.w = data.oldW;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_Ln_SetFill:
this.Fill = data.newFill;
break;
case historyitem_Ln_SetPrstDash:
this.prstDash = data.newPrstDash;
break;
case historyitem_Ln_SetJoin:
this.Join = data.newJoin;
break;
case historyitem_Ln_SetHeadEnd:
this.headEnd = data.newHeadEnd;
break;
case historyitem_Ln_SetTailEnd:
this.tailEnd = data.newTailEnd;
break;
case historyitem_Ln_SetAlgn:
this.algn = data.newAlgn;
break;
case historyitem_Ln_SetCap:
this.cap = data.newCap;
break;
case historyitem_Ln_SetCmpd:
this.cmpd = data.newCmpd;
break;
case historyitem_Ln_SetW:
this.w = data.newW;
}
},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.Fill));
if (isRealObject(this.Fill)) {
this.Fill.Write_ToBinary(w);
}
writeLong(w, this.prstDash);
writeLong(w, this.Join);
w.WriteBool(isRealObject(this.headEnd));
if (isRealObject(this.headEnd)) {
this.headEnd.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.tailEnd));
if (isRealObject(this.tailEnd)) {
this.tailEnd.Write_ToBinary(w);
}
writeLong(w, this.algn);
writeLong(w, this.cap);
writeLong(w, this.cmpd);
writeLong(w, this.w);
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.Fill = new CUniFill();
this.Fill.Read_FromBinary(r);
} else {
this.Fill = null;
}
this.prstDash = readLong(r);
this.Join = readLong(r);
if (r.GetBool()) {
this.headEnd = new EndArrow();
this.headEnd.Read_FromBinary(r);
}
if (r.GetBool()) {
this.tailEnd = new EndArrow();
this.tailEnd.Read_FromBinary(r);
}
this.algn = readLong(r);
this.cap = readLong(r);
this.cmpd = readLong(r);
this.w = readLong(r);
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_Ln_SetFill:
w.WriteBool(isRealObject(data.newFill));
if (isRealObject(data.newFill)) {
data.newFill.Write_ToBinary(w);
}
break;
case historyitem_Ln_SetPrstDash:
w.WriteBool(isRealNumber(data.newPrstDash));
if (isRealNumber(data.newPrstDash)) {
w.WriteLong(data.newPrstDash);
}
break;
case historyitem_Ln_SetJoin:
w.WriteBool(isRealNumber(data.newJoin));
if (isRealNumber(data.newJoin)) {
w.WriteLong(data.newJoin);
}
break;
case historyitem_Ln_SetHeadEnd:
w.WriteBool(isRealObject(data.newHeadEnd));
if (isRealObject(data.newHeadEnd)) {
data.newHeadEnd.Write_ToBinary(w);
}
break;
case historyitem_Ln_SetTailEnd:
w.WriteBool(isRealObject(data.newTailEnd));
if (isRealObject(data.newTailEnd)) {
data.newTailEnd.Write_ToBinary(w);
}
break;
case historyitem_Ln_SetAlgn:
w.WriteBool(isRealNumber(data.newAlgn));
if (isRealNumber(data.newAlgn)) {
w.WriteLong(data.newAlgn);
}
break;
case historyitem_Ln_SetCap:
w.WriteBool(isRealNumber(data.newCap));
if (isRealNumber(data.newCap)) {
w.WriteLong(data.newCap);
}
break;
case historyitem_Ln_SetCmpd:
w.WriteBool(isRealNumber(data.newCmpd));
if (isRealNumber(data.newCmpd)) {
w.WriteLong(data.newCmpd);
}
break;
case historyitem_Ln_SetW:
w.WriteBool(isRealNumber(data.newW));
if (isRealNumber(data.newW)) {
w.WriteLong(data.newW);
}
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_Ln_SetFill:
if (r.GetBool()) {
this.Fill = new CUniFill();
this.Fill.Read_FromBinary(r);
} else {
this.Fill = null;
}
break;
case historyitem_Ln_SetPrstDash:
if (r.GetBool()) {
this.prstDash = r.GetLong();
} else {
this.prstDash = null;
}
break;
case historyitem_Ln_SetJoin:
if (r.GetBool()) {
this.Join = r.GetLong();
} else {
this.Join = null;
}
break;
case historyitem_Ln_SetHeadEnd:
if (r.GetBool()) {
this.headEnd = new EndArrow();
this.headEnd.Read_FromBinary(r);
} else {
this.headEnd = null;
}
break;
case historyitem_Ln_SetTailEnd:
if (r.GetBool()) {
this.tailEnd = new EndArrow();
this.tailEnd.Read_FromBinary(r);
} else {
this.tailEnd = null;
}
break;
case historyitem_Ln_SetAlgn:
if (r.GetBool()) {
this.algn = r.GetLong();
} else {
this.algn = null;
}
break;
case historyitem_Ln_SetCap:
if (r.GetBool()) {
this.cap = r.GetLong();
} else {
this.cap = null;
}
break;
case historyitem_Ln_SetCmpd:
if (r.GetBool()) {
this.cmpd = r.GetLong();
} else {
this.cmpd = null;
}
break;
case historyitem_Ln_SetW:
if (r.GetBool()) {
this.w = r.GetLong();
} else {
this.w = null;
}
break;
}
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function DefaultShapeDefinition() {
this.spPr = new CSpPr();
this.bodyPr = new CBodyPr();
this.lstStyle = new TextListStyle();
this.style = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
DefaultShapeDefinition.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_DefaultShapeDefinition;
},
setSpPr: function (spPr) {
History.Add(this, {
Type: historyitem_DefaultShapeDefinition_SetSpPr,
oldSpPr: this.spPr,
newSpPr: spPr
});
this.spPr = spPr;
},
setBodyPr: function (bodyPr) {
History.Add(this, {
Type: historyitem_DefaultShapeDefinition_SetBodyPr,
oldBodyPr: this.bodyPr,
newBodyPr: bodyPr
});
this.bodyPr = bodyPr;
},
setLstStyle: function (lstStyle) {
History.Add(this, {
Type: historyitem_DefaultShapeDefinition_SetLstStyle,
oldLstStyle: this.lstStyle,
newLstStyle: lstStyle
});
this.lstStyle = lstStyle;
},
setStyle: function (style) {
History.Add(this, {
Type: historyitem_DefaultShapeDefinition_SetStyle,
oldStyle: this.style,
newStyle: style
});
this.style = style;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_DefaultShapeDefinition_SetSpPr:
this.spPr = data.oldSpPr;
break;
case historyitem_DefaultShapeDefinition_SetBodyPr:
this.bodyPr = data.oldBodyPr;
break;
case historyitem_DefaultShapeDefinition_SetLstStyle:
this.lstStyle = data.oldLstStyle;
break;
case historyitem_DefaultShapeDefinition_SetStyle:
this.style = data.oldStyle;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_DefaultShapeDefinition_SetSpPr:
this.spPr = data.newSpPr;
break;
case historyitem_DefaultShapeDefinition_SetBodyPr:
this.bodyPr = data.newBodyPr;
break;
case historyitem_DefaultShapeDefinition_SetLstStyle:
this.lstStyle = data.newLstStyle;
break;
case historyitem_DefaultShapeDefinition_SetStyle:
this.style = data.newStyle;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_DefaultShapeDefinition_SetSpPr:
w.WriteBool(isRealObject(data.newSpPr));
if (isRealObject(data.newSpPr)) {
w.WriteString2(data.newSpPr.Get_Id());
}
break;
case historyitem_DefaultShapeDefinition_SetBodyPr:
w.WriteBool(isRealObject(data.newBodyPr));
if (isRealObject(data.newBodyPr)) {
w.WriteString2(data.newBodyPr.Get_Id());
}
break;
case historyitem_DefaultShapeDefinition_SetLstStyle:
w.WriteBool(isRealObject(data.newLstStyle));
if (isRealObject(data.newLstStyle)) {
w.WriteString2(data.newLstStyle.Get_Id());
}
break;
case historyitem_DefaultShapeDefinition_SetStyle:
w.WriteBool(isRealObject(data.newStyle));
if (isRealObject(data.newStyle)) {
w.WriteString2(data.newStyle.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetBool()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_DefaultShapeDefinition_SetSpPr:
if (r.GetBool()) {
this.spPr = g_oTableId.Get_ById(r.GetString2());
} else {
this.spPr = null;
}
break;
case historyitem_DefaultShapeDefinition_SetBodyPr:
if (r.GetBool()) {
this.bodyPr = g_oTableId.Get_ById(r.GetString2());
} else {
this.bodyPr = null;
}
break;
case historyitem_DefaultShapeDefinition_SetLstStyle:
if (r.GetBool()) {
this.lstStyle = g_oTableId.Get_ById(r.GetString2());
} else {
this.lstStyle = null;
}
break;
case historyitem_DefaultShapeDefinition_SetStyle:
if (r.GetBool()) {
this.style = g_oTableId.Get_ById(r.GetString2());
} else {
this.style = null;
}
break;
}
}
};
function CNvPr() {
this.id = 0;
this.name = "";
this.isHidden = false;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CNvPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_CNvPr;
},
createDuplicate: function () {
var duplicate = new CNvPr();
duplicate.setId(this.id);
duplicate.setName(this.name);
duplicate.setIsHidden(this.isHidden);
return duplicate;
},
setId: function (id) {
History.Add(this, {
Type: historyitem_CNvPr_SetId,
oldId: this.id,
newId: id
});
this.id = id;
},
setName: function (name) {
History.Add(this, {
Type: historyitem_CNvPr_SetName,
oldName: this.name,
newName: name
});
this.name = name;
},
setIsHidden: function (isHidden) {
History.Add(this, {
Type: historyitem_CNvPr_SetIsHidden,
oldIsHidden: this.isHidden,
newIsHidden: isHidden
});
this.isHidden = isHidden;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_CNvPr_SetId:
this.id = data.oldId;
break;
case historyitem_CNvPr_SetName:
this.name = data.oldName;
break;
case historyitem_CNvPr_SetIsHidden:
this.isHidden = data.oldIsHidden;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_CNvPr_SetId:
this.id = data.newId;
break;
case historyitem_CNvPr_SetName:
this.name = data.newName;
break;
case historyitem_CNvPr_SetIsHidden:
this.isHidden = data.newIsHidden;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_CNvPr_SetId:
w.WriteBool(isRealNumber(data.newId));
if (isRealNumber(data.newId)) {
w.WriteLong(data.newId);
}
break;
case historyitem_CNvPr_SetName:
writeString(w, data.newName);
break;
case historyitem_CNvPr_SetIsHidden:
writeBool(w, data.newIsHidden);
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_CNvPr_SetId:
if (r.GetBool()) {
this.id = r.GetLong();
} else {
this.id = null;
}
break;
case historyitem_CNvPr_SetName:
this.name = readString(r);
break;
case historyitem_CNvPr_SetIsHidden:
this.isHidden = readBool(r);
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function NvPr() {
this.isPhoto = false;
this.userDrawn = false;
this.ph = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
NvPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_NvPr;
},
setIsPhoto: function (isPhoto) {
History.Add(this, {
Type: historyitem_NvPr_SetIsPhoto,
oldIsPhoto: this.isPhoto,
newIsPhoto: isPhoto
});
this.isPhoto = isPhoto;
},
setUserDrawn: function (userDrawn) {
History.Add(this, {
Type: historyitem_NvPr_SetUserDrawn,
oldUserDrawn: this.userDrawn,
newUserDrawn: userDrawn
});
this.userDrawn = userDrawn;
},
setPh: function (ph) {
History.Add(this, {
Type: historyitem_NvPr_SetPh,
oldPh: this.ph,
newPh: ph
});
this.ph = ph;
},
createDuplicate: function () {
var duplicate = new NvPr();
duplicate.setIsPhoto(this.isPhoto);
duplicate.setUserDrawn(this.userDrawn);
if (this.ph != null) {
duplicate.setPh(this.ph.createDuplicate());
}
return duplicate;
},
Write_ToBinary: function (w) {
w.WriteBool(this.isPhoto);
w.WriteBool(this.userDrawn);
w.WriteBool(isRealObject(this.ph));
if (isRealObject(this.ph)) {
this.ph.Write_ToBinary2(w);
}
},
Read_FromBinary: function (r) {
(this.isPhoto) = r.GetBool();
(this.userDrawn) = r.GetBool();
if (r.GetBool()) {
this.ph = new Ph();
this.ph.Read_FromBinary2(r);
}
},
Undo: function (data) {
switch (data.Type) {
case historyitem_NvPr_SetIsPhoto:
this.isPhoto = data.oldIsPhoto;
break;
case historyitem_NvPr_SetUserDrawn:
this.userDrawn = data.oldUserDrawn;
break;
case historyitem_NvPr_SetPh:
this.ph = data.oldPh;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_NvPr_SetIsPhoto:
this.isPhoto = data.newIsPhoto;
break;
case historyitem_NvPr_SetUserDrawn:
this.userDrawn = data.newUserDrawn;
break;
case historyitem_NvPr_SetPh:
this.ph = data.newPh;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_NvPr_SetIsPhoto:
w.WriteBool(isRealBool(data.newIsPhoto));
if (isRealBool(data.newIsPhoto)) {
w.WriteBool(data.newIsPhoto);
}
break;
case historyitem_NvPr_SetUserDrawn:
w.WriteBool(isRealBool(data.newUserDrawn));
if (isRealBool(data.newUserDrawn)) {
w.WriteBool(data.newUserDrawn);
}
break;
case historyitem_NvPr_SetPh:
w.WriteBool(isRealObject(data.newPh));
if (isRealObject(data.newPh)) {
w.WriteString2(data.newPh.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_NvPr_SetIsPhoto:
if (r.GetBool()) {
this.isPhoto = r.GetBool();
} else {
this.isPhoto = null;
}
break;
case historyitem_NvPr_SetUserDrawn:
if (r.GetBool()) {
this.userDrawn = r.GetBool();
} else {
this.userDrawn = null;
}
break;
case historyitem_NvPr_SetPh:
if (r.GetBool()) {
this.ph = g_oTableId.Get_ById(r.GetString2());
} else {
this.ph = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
var phType_body = 0,
phType_chart = 1,
phType_clipArt = 2,
phType_ctrTitle = 3,
phType_dgm = 4,
phType_dt = 5,
phType_ftr = 6,
phType_hdr = 7,
phType_media = 8,
phType_obj = 9,
phType_pic = 10,
phType_sldImg = 11,
phType_sldNum = 12,
phType_subTitle = 13,
phType_tbl = 14,
phType_title = 15;
var szPh_full = 0,
szPh_half = 1,
szPh_quarter = 2;
var orientPh_horz = 0,
orientPh_vert = 1;
function Ph() {
this.hasCustomPrompt = false;
this.idx = null;
this.orient = null;
this.sz = null;
this.type = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
Ph.prototype = {
createDuplicate: function () {
var duplicate = new Ph();
duplicate.setHasCustomPrompt(this.hasCustomPrompt);
duplicate.setIdx(this.idx);
duplicate.setOrient(this.orient);
duplicate.setSz(this.sz);
duplicate.setType(this.type);
return duplicate;
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_Ph;
},
setHasCustomPrompt: function (hasCustomPrompt) {
History.Add(this, {
Type: historyitem_Ph_SetHasCustomPrompt,
oldHasCutomPrompt: this.hasCustomPrompt,
newHasCustomPrompt: hasCustomPrompt
});
this.hasCustomPrompt = hasCustomPrompt;
},
setIdx: function (idx) {
History.Add(this, {
Type: historyitem_Ph_SetIdx,
oldIdx: this.idx,
newIdx: idx
});
this.idx = idx;
},
setOrient: function (orient) {
History.Add(this, {
Type: historyitem_Ph_SetOrient,
oldOrient: this.orient,
newIdx: orient
});
this.orient = orient;
},
setSz: function (sz) {
History.Add(this, {
Type: historyitem_Ph_SetSz,
oldSz: this.sz,
newSz: sz
});
this.sz = sz;
},
setType: function (type) {
History.Add(this, {
Type: historyitem_Ph_SetType,
oldType: this.type,
newType: type
});
this.type = type;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_Ph_SetHasCustomPrompt:
this.hasCustomPrompt = data.oldHasCustomPrompt;
break;
case historyitem_Ph_SetIdx:
this.idx = data.oldIdx;
break;
case historyitem_Ph_SetOrient:
this.orient = data.oldOrient;
break;
case historyitem_Ph_SetSz:
this.sz = data.oldSz;
break;
case historyitem_Ph_SetType:
this.type = data.oldType;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_Ph_SetHasCustomPrompt:
this.hasCustomPrompt = data.newHasCustomPrompt;
break;
case historyitem_Ph_SetIdx:
this.idx = data.newIdx;
break;
case historyitem_Ph_SetOrient:
this.orient = data.newOrient;
break;
case historyitem_Ph_SetSz:
this.sz = data.newSz;
break;
case historyitem_Ph_SetType:
this.type = data.newType;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_Ph_SetHasCustomPrompt:
w.WriteBool(isRealBool(data.newHasCustomPrompt));
if (isRealBool(data.newHasCustomPrompt)) {
w.WriteBool(data.newHasCustomPrompt);
}
break;
case historyitem_Ph_SetIdx:
w.WriteBool(typeof data.newIdx === "string" || isRealNumber(data.newIdx));
if (typeof data.newIdx === "string" || isRealNumber(data.newIdx)) {
w.WriteBool(typeof data.newIdx === "string");
if (typeof data.newIdx === "string") {
w.WriteString2(data.newIdx);
} else {
w.WriteLong(data.newIdx);
}
}
break;
case historyitem_Ph_SetOrient:
w.WriteBool(isRealNumber(data.newOrient));
if (isRealNumber(data.newOrient)) {
w.WriteLong(data.newOrient);
}
break;
case historyitem_Ph_SetSz:
w.WriteBool(isRealNumber(data.newSz));
if (isRealNumber(data.newSz)) {
w.WriteLong(data.newSz);
}
break;
case historyitem_Ph_SetType:
w.WriteBool(isRealNumber(data.newType));
if (isRealNumber(data.newType)) {
w.WriteLong(data.newType);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_Ph_SetHasCustomPrompt:
if (r.GetBool()) {
this.hasCustomPrompt = r.GetBool();
} else {
this.hasCustomPrompt = null;
}
break;
case historyitem_Ph_SetIdx:
if (r.GetBool()) {
if (r.GetBool()) {
this.idx = r.GetString2();
} else {
this.idx = r.GetLong();
}
} else {
this.idx = null;
}
break;
case historyitem_Ph_SetOrient:
if (r.GetBool()) {
this.orient = r.GetLong();
} else {
this.orient = null;
}
break;
case historyitem_Ph_SetSz:
if (r.GetBool()) {
this.sz = r.GetLong();
} else {
this.sz = null;
}
break;
case historyitem_Ph_SetType:
if (r.GetBool()) {
this.type = r.GetLong();
} else {
this.type = null;
}
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function UniNvPr() {
this.cNvPr = new CNvPr();
this.UniPr = null;
this.nvPr = new NvPr();
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
UniNvPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_UniNvPr;
},
setCNvPr: function (cNvPr) {
History.Add(this, {
Type: historyitem_UniNvPr_SetCNvPr,
oldCNvPr: this.cNvPr,
newCNvPr: cNvPr
});
this.cNvPr = cNvPr;
},
setUniPr: function (uniPr) {
History.Add(this, {
Type: historyitem_UniNvPr_SetUniPr,
oldUniPr: this.UniPr,
newUniPr: uniPr
});
this.UniPr = uniPr;
},
setNvPr: function (nvPr) {
History.Add(this, {
Type: historyitem_UniNvPr_SetNvPr,
oldNvPr: this.nvPr,
newNvPr: nvPr
});
this.nvPr = nvPr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_UniNvPr_SetCNvPr:
this.cNvPr = data.oldCNvPr;
break;
case historyitem_UniNvPr_SetUniPr:
this.UniPr = data.oldUniPr;
break;
case historyitem_UniNvPr_SetNvPr:
this.nvPr = data.oldNvPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_UniNvPr_SetCNvPr:
this.cNvPr = data.newCNvPr;
break;
case historyitem_UniNvPr_SetUniPr:
this.UniPr = data.newUniPr;
break;
case historyitem_UniNvPr_SetNvPr:
this.nvPr = data.newNvPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_UniNvPr_SetCNvPr:
w.WriteBool(isRealObject(data.newCNvPr));
if (isRealObject(data.newCNvPr)) {
w.WriteString2(data.newCNvPr.Get_Id());
}
break;
case historyitem_UniNvPr_SetUniPr:
w.WriteBool(isRealObject(data.newUniPr));
if (isRealObject(data.newUniPr)) {
w.WriteString2(data.newUniPr.Get_Id());
}
break;
case historyitem_UniNvPr_SetNvPr:
w.WriteBool(isRealObject(data.newNvPr));
if (isRealObject(data.newNvPr)) {
w.WriteString2(data.newNvPr.Get_Id());
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_UniNvPr_SetCNvPr:
if (r.GetBool()) {
this.cNvPr = g_oTableId.Get_ById(r.GetString2());
} else {
this.cNvPr = null;
}
break;
case historyitem_UniNvPr_SetUniPr:
if (r.GetBool()) {
this.UniPr = g_oTableId.Get_ById(r.GetString2());
} else {
this.UniPr = null;
}
break;
case historyitem_UniNvPr_SetNvPr:
if (r.GetBool()) {
this.nvPr = g_oTableId.Get_ById(r.GetString2());
} else {
this.nvPr = null;
}
break;
}
},
createDuplicate: function () {
var duplicate = new UniNvPr();
this.cNvPr && duplicate.setCNvPr(this.cNvPr.createDuplicate());
duplicate.UniPr = this.UniPr;
duplicate.nvPr && duplicate.setNvPr(this.nvPr.createDuplicate());
return duplicate;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
writeObject(w, this.cNvPr);
writeObject(w, this.nvPr);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
this.cNvPr = readObject(r);
this.nvPr = readObject(r);
}
};
function StyleRef() {
this.idx = 0;
this.Color = new CUniColor();
}
StyleRef.prototype = {
Get_Id: function () {
return this.Id;
},
isIdentical: function (styleRef) {
if (styleRef == null) {
return false;
}
if (this.idx !== styleRef.idx) {
return false;
}
if (this.Color.IsIdentical(styleRef.Color) == false) {
return false;
}
return true;
},
getObjectType: function () {
return historyitem_type_StyleRef;
},
setIdx: function (idx) {
this.idx = idx;
},
setColor: function (color) {
this.Color = color;
},
createDuplicate: function () {
var duplicate = new StyleRef();
duplicate.setIdx(this.idx);
if (this.Color) {
duplicate.setColor(this.Color.createDuplicate());
}
return duplicate;
},
Refresh_RecalcData: function () {},
Undo: function (data) {
switch (data.Type) {
case historyitem_StyleRef_SetIdx:
this.idx = data.oldIdx;
break;
case historyitem_StyleRef_SetColor:
this.Color = data.oldColor;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_StyleRef_SetIdx:
this.idx = data.newIdx;
break;
case historyitem_StyleRef_SetColor:
this.Color = data.newColor;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_StyleRef_SetIdx:
w.WriteBool(isRealNumber(data.newIdx));
if (isRealNumber(data.newIdx)) {
w.WriteLong(data.newIdx);
}
break;
case historyitem_StyleRef_SetColor:
w.WriteBool(isRealObject(data.newColor));
if (isRealObject(data.newColor)) {
data.newColor.Write_ToBinary(w);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_StyleRef_SetIdx:
if (r.GetBool()) {
this.idx = r.GetLong();
} else {
this.idx = null;
}
break;
case historyitem_StyleRef_SetColor:
if (r.GetBool()) {
this.Color = new CUniColor();
this.Color.Read_FromBinary(r);
} else {
this.Color = null;
}
break;
}
},
Write_ToBinary: function (w) {
writeLong(w, this.idx);
w.WriteBool(isRealObject(this.Color));
if (isRealObject(this.Color)) {
this.Color.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.idx = readLong(r);
if (r.GetBool()) {
this.Color = new CUniColor();
this.Color.Read_FromBinary(r);
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
var fntStyleInd_none = 2;
var fntStyleInd_major = 0;
var fntStyleInd_minor = 1;
function FontRef() {
this.idx = fntStyleInd_none;
this.Color = null;
}
FontRef.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_FontRef;
},
setIdx: function (idx) {
this.idx = idx;
},
setColor: function (color) {
this.Color = color;
},
createDuplicate: function () {
var duplicate = new FontRef();
duplicate.setIdx(this.idx);
if (this.Color) {
duplicate.setColor(this.Color.createDuplicate());
}
return duplicate;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_FontRef_SetIdx:
this.idx = data.oldIdx;
break;
case historyitem_FontRef_SetColor:
this.Color = data.oldColor;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_FontRef_SetIdx:
this.idx = data.newIdx;
break;
case historyitem_FontRef_SetColor:
this.Color = data.newColor;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(this.getObjectType());
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_FontRef_SetIdx:
w.WriteBool(isRealNumber(data.newIdx));
if (isRealNumber(data.newIdx)) {
w.WriteLong(data.newIdx);
}
break;
case historyitem_FontRef_SetColor:
w.WriteBool(isRealObject(data.newColor));
if (isRealObject(data.newColor)) {
data.newColor.Write_ToBinary(w);
}
break;
}
},
Load_Changes: function (r) {
if (this.getObjectType() !== r.GetLong()) {
return;
}
var type = r.GetLong();
switch (type) {
case historyitem_FontRef_SetIdx:
if (r.GetBool()) {
this.idx = r.GetLong();
} else {
this.idx = null;
}
break;
case historyitem_FontRef_SetColor:
if (r.GetBool()) {
this.Color = new CUniColor();
this.Color.Read_FromBinary(r);
} else {
this.Color = null;
}
break;
}
},
Write_ToBinary: function (w) {
writeLong(w, this.idx);
w.WriteBool(isRealObject(this.Color));
if (isRealObject(this.Color)) {
this.Color.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.idx = readLong(r);
if (r.GetBool()) {
this.Color = new CUniColor();
this.Color.Read_FromBinary(r);
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function CShapeStyle() {
this.lnRef = null;
this.fillRef = null;
this.effectRef = null;
this.fontRef = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CShapeStyle.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
merge: function (style) {
if (style != null) {
if (style.lnRef != null) {
this.lnRef = style.lnRef.createDuplicate();
}
if (style.fillRef != null) {
this.fillRef = style.fillRef.createDuplicate();
}
if (style.effectRef != null) {
this.effectRef = style.effectRef.createDuplicate();
}
if (style.fontRef != null) {
this.fontRef = style.fontRef.createDuplicate();
}
}
},
createDuplicate: function () {
var duplicate = new CShapeStyle();
if (this.lnRef != null) {
duplicate.setLnRef(this.lnRef.createDuplicate());
}
if (this.fillRef != null) {
duplicate.setFillRef(this.fillRef.createDuplicate());
}
if (this.effectRef != null) {
duplicate.setEffectRef(this.effectRef.createDuplicate());
}
if (this.fontRef != null) {
duplicate.setFontRef(this.fontRef.createDuplicate());
}
return duplicate;
},
getObjectType: function () {
return historyitem_type_ShapeStyle;
},
setLnRef: function (pr) {
History.Add(this, {
Type: historyitem_ShapeStyle_SetLnRef,
oldPr: this.lnRef,
newPr: pr
});
this.lnRef = pr;
},
setFillRef: function (pr) {
History.Add(this, {
Type: historyitem_ShapeStyle_SetFillRef,
oldPr: this.fillRef,
newPr: pr
});
this.fillRef = pr;
},
setFontRef: function (pr) {
History.Add(this, {
Type: historyitem_ShapeStyle_SetFontRef,
oldPr: this.fontRef,
newPr: pr
});
this.fontRef = pr;
},
setEffectRef: function (pr) {
History.Add(this, {
Type: historyitem_ShapeStyle_SetEffectRef,
oldPr: this.effectRef,
newPr: pr
});
this.effectRef = pr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ShapeStyle_SetLnRef:
this.lnRef = data.oldPr;
break;
case historyitem_ShapeStyle_SetFillRef:
this.fillRef = data.oldPr;
break;
case historyitem_ShapeStyle_SetFontRef:
this.fontRef = data.oldPr;
break;
case historyitem_ShapeStyle_SetEffectRef:
this.effectRef = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ShapeStyle_SetLnRef:
this.lnRef = data.newPr;
break;
case historyitem_ShapeStyle_SetFillRef:
this.fillRef = data.newPr;
break;
case historyitem_ShapeStyle_SetFontRef:
this.fontRef = data.newPr;
break;
case historyitem_ShapeStyle_SetEffectRef:
this.effectRef = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ShapeStyle_SetLnRef:
case historyitem_ShapeStyle_SetFillRef:
case historyitem_ShapeStyle_SetFontRef:
case historyitem_ShapeStyle_SetEffectRef:
w.WriteBool(isRealObject(data.newPr));
if (isRealObject(data.newPr)) {
data.newPr.Write_ToBinary(w);
}
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_ShapeStyle_SetLnRef:
if (r.GetBool()) {
this.lnRef = new StyleRef();
this.lnRef.Read_FromBinary(r);
}
break;
case historyitem_ShapeStyle_SetFillRef:
if (r.GetBool()) {
this.fillRef = new StyleRef();
this.fillRef.Read_FromBinary(r);
}
break;
case historyitem_ShapeStyle_SetFontRef:
if (r.GetBool()) {
this.fontRef = new FontRef();
this.fontRef.Read_FromBinary(r);
}
break;
case historyitem_ShapeStyle_SetEffectRef:
if (r.GetBool()) {
this.effectRef = new StyleRef();
this.effectRef.Read_FromBinary(r);
}
break;
}
}
};
var LINE_PRESETS_MAP = {};
LINE_PRESETS_MAP["line"] = true;
LINE_PRESETS_MAP["bracePair"] = true;
LINE_PRESETS_MAP["leftBrace"] = true;
LINE_PRESETS_MAP["rightBrace"] = true;
LINE_PRESETS_MAP["bracketPair"] = true;
LINE_PRESETS_MAP["leftBracket"] = true;
LINE_PRESETS_MAP["rightBracket"] = true;
LINE_PRESETS_MAP["bentConnector2"] = true;
LINE_PRESETS_MAP["bentConnector3"] = true;
LINE_PRESETS_MAP["bentConnector4"] = true;
LINE_PRESETS_MAP["bentConnector5"] = true;
LINE_PRESETS_MAP["curvedConnector2"] = true;
LINE_PRESETS_MAP["curvedConnector3"] = true;
LINE_PRESETS_MAP["curvedConnector4"] = true;
LINE_PRESETS_MAP["curvedConnector5"] = true;
LINE_PRESETS_MAP["straightConnector1"] = true;
LINE_PRESETS_MAP["arc"] = true;
function CreateDefaultShapeStyle(preset) {
var b_line = typeof preset === "string" && LINE_PRESETS_MAP[preset];
var tx_color = b_line;
var unicolor;
var style = new CShapeStyle();
var lnRef = new StyleRef();
lnRef.setIdx(b_line ? 1 : 2);
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
var mod = new CColorMod();
mod.setName("shade");
mod.setVal(50000);
unicolor.setMods(new CColorModifiers());
unicolor.Mods.addMod(mod);
lnRef.setColor(unicolor);
style.setLnRef(lnRef);
var fillRef = new StyleRef();
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
fillRef.setIdx(b_line ? 0 : 1);
fillRef.setColor(unicolor);
style.setFillRef(fillRef);
var effectRef = new StyleRef();
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
effectRef.setIdx(0);
effectRef.setColor(unicolor);
style.setEffectRef(effectRef);
var fontRef = new FontRef();
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(tx_color ? 15 : 12);
fontRef.setIdx(fntStyleInd_minor);
fontRef.setColor(unicolor);
style.setFontRef(fontRef);
return style;
}
function CXfrm() {
this.offX = null;
this.offY = null;
this.extX = null;
this.extY = null;
this.chOffX = null;
this.chOffY = null;
this.chExtX = null;
this.chExtY = null;
this.flipH = null;
this.flipV = null;
this.rot = null;
this.parent = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CXfrm.prototype = {
Get_Id: function () {
return this.Id;
},
getObjectType: function () {
return historyitem_type_Xfrm;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
isNotNull: function () {
return isRealNumber(this.offX) && isRealNumber(this.offY) && isRealNumber(this.extX) && isRealNumber(this.extY);
},
isNotNullForGroup: function () {
return isRealNumber(this.offX) && isRealNumber(this.offY) && isRealNumber(this.chOffX) && isRealNumber(this.chOffY) && isRealNumber(this.extX) && isRealNumber(this.extY) && isRealNumber(this.chExtX) && isRealNumber(this.chExtY);
},
isEqual: function (xfrm) {
return xfrm && this.offX == xfrm.offX && this.offY == xfrm.offY && this.extX == xfrm.extX && this.extY == xfrm.extY && this.chOffX == xfrm.chOffX && this.chOffY == xfrm.chOffY && this.chExtX == xfrm.chExtX && this.chExtY == xfrm.chExtY;
},
merge: function (xfrm) {
if (xfrm.offX != null) {
this.offX = xfrm.offX;
}
if (xfrm.offY != null) {
this.offY = xfrm.offY;
}
if (xfrm.extX != null) {
this.extX = xfrm.extX;
}
if (xfrm.extY != null) {
this.extY = xfrm.extY;
}
if (xfrm.chOffX != null) {
this.chOffX = xfrm.chOffX;
}
if (xfrm.chOffY != null) {
this.chOffY = xfrm.chOffY;
}
if (xfrm.chExtX != null) {
this.chExtX = xfrm.chExtX;
}
if (xfrm.chExtY != null) {
this.chExtY = xfrm.chExtY;
}
if (xfrm.flipH != null) {
this.flipH = xfrm.flipH;
}
if (xfrm.flipV != null) {
this.flipV = xfrm.flipV;
}
if (xfrm.rot != null) {
this.rot = xfrm.rot;
}
},
createDuplicate: function () {
var duplicate = new CXfrm();
duplicate.setOffX(this.offX);
duplicate.setOffY(this.offY);
duplicate.setExtX(this.extX);
duplicate.setExtY(this.extY);
duplicate.setChOffX(this.chOffX);
duplicate.setChOffY(this.chOffY);
duplicate.setChExtX(this.chExtX);
duplicate.setChExtY(this.chExtY);
duplicate.setFlipH(this.flipH);
duplicate.setFlipV(this.flipV);
duplicate.setRot(this.rot);
return duplicate;
},
setParent: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetParent,
oldPr: this.parent,
newPr: pr
});
this.parent = pr;
},
setOffX: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetOffX,
oldPr: this.offX,
newPr: pr
});
this.offX = pr;
this.handleUpdatePosition();
},
setOffY: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetOffY,
oldPr: this.offY,
newPr: pr
});
this.offY = pr;
this.handleUpdatePosition();
},
setExtX: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetExtX,
oldPr: this.extX,
newPr: pr
});
this.extX = pr;
this.handleUpdateExtents();
},
setExtY: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetExtY,
oldPr: this.extY,
newPr: pr
});
this.extY = pr;
this.handleUpdateExtents();
},
setChOffX: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetChOffX,
oldPr: this.chOffX,
newPr: pr
});
this.chOffX = pr;
this.handleUpdateChildOffset();
},
setChOffY: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetChOffY,
oldPr: this.chOffY,
newPr: pr
});
this.chOffY = pr;
this.handleUpdateChildOffset();
},
setChExtX: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetChExtX,
oldPr: this.chExtX,
newPr: pr
});
this.chExtX = pr;
this.handleUpdateChildExtents();
},
setChExtY: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetChExtY,
oldPr: this.chExtY,
newPr: pr
});
this.chExtY = pr;
this.handleUpdateChildExtents();
},
setFlipH: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetFlipH,
oldPr: this.flipH,
newPr: pr
});
this.flipH = pr;
this.handleUpdateFlip();
},
setFlipV: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetFlipV,
oldPr: this.flipV,
newPr: pr
});
this.flipV = pr;
this.handleUpdateFlip();
},
setRot: function (pr) {
History.Add(this, {
Type: historyitem_Xfrm_SetRot,
oldPr: this.rot,
newPr: pr
});
this.rot = pr;
this.handleUpdateRot();
},
handleUpdatePosition: function () {
if (this.parent && this.parent.handleUpdatePosition) {
this.parent.handleUpdatePosition();
}
},
handleUpdateExtents: function () {
if (this.parent && this.parent.handleUpdateExtents) {
this.parent.handleUpdateExtents();
}
},
handleUpdateChildOffset: function () {
if (this.parent && this.parent.handleUpdateChildOffset) {
this.parent.handleUpdateChildOffset();
}
},
handleUpdateChildExtents: function () {
if (this.parent && this.parent.handleUpdateChildExtents) {
this.parent.handleUpdateChildExtents();
}
},
handleUpdateFlip: function () {
if (this.parent && this.parent.handleUpdateFlip) {
this.parent.handleUpdateFlip();
}
},
handleUpdateRot: function () {
if (this.parent && this.parent.handleUpdateRot) {
this.parent.handleUpdateRot();
}
},
Refresh_RecalcData: function (data) {
switch (data.Type) {
case historyitem_Xfrm_SetOffX:
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetOffY:
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetExtX:
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetExtY:
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetChOffX:
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChOffY:
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChExtX:
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetChExtY:
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetFlipH:
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetFlipV:
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetRot:
this.handleUpdateRot();
break;
}
},
Undo: function (data) {
switch (data.Type) {
case historyitem_Xfrm_SetParent:
this.parent = data.oldPr;
break;
case historyitem_Xfrm_SetOffX:
this.offX = data.oldPr;
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetOffY:
this.offY = data.oldPr;
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetExtX:
this.extX = data.oldPr;
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetExtY:
this.extY = data.oldPr;
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetChOffX:
this.chOffX = data.oldPr;
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChOffY:
this.chOffY = data.oldPr;
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChExtX:
this.chExtX = data.oldPr;
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetChExtY:
this.chExtY = data.oldPr;
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetFlipH:
this.flipH = data.oldPr;
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetFlipV:
this.flipV = data.oldPr;
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetRot:
this.rot = data.oldPr;
this.handleUpdateRot();
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_Xfrm_SetParent:
this.parent = data.newPr;
break;
case historyitem_Xfrm_SetOffX:
this.offX = data.newPr;
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetOffY:
this.offY = data.newPr;
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetExtX:
this.extX = data.newPr;
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetExtY:
this.extY = data.newPr;
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetChOffX:
this.chOffX = data.newPr;
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChOffY:
this.chOffY = data.newPr;
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChExtX:
this.chExtX = data.newPr;
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetChExtY:
this.chExtY = data.newPr;
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetFlipH:
this.flipH = data.newPr;
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetFlipV:
this.flipV = data.newPr;
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetRot:
this.rot = data.newPr;
this.handleUpdateRot();
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_Xfrm_SetOffX:
case historyitem_Xfrm_SetOffY:
case historyitem_Xfrm_SetExtX:
case historyitem_Xfrm_SetExtY:
case historyitem_Xfrm_SetChOffX:
case historyitem_Xfrm_SetChOffY:
case historyitem_Xfrm_SetChExtX:
case historyitem_Xfrm_SetChExtY:
case historyitem_Xfrm_SetRot:
writeDouble(w, data.newPr);
break;
case historyitem_Xfrm_SetFlipH:
case historyitem_Xfrm_SetFlipV:
writeBool(w, data.newPr);
break;
case historyitem_Xfrm_SetParent:
writeObject(w, data.newPr);
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_Xfrm_SetOffX:
this.offX = readDouble(r);
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetOffY:
this.offY = readDouble(r);
this.handleUpdatePosition();
break;
case historyitem_Xfrm_SetExtX:
this.extX = readDouble(r);
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetExtY:
this.extY = readDouble(r);
this.handleUpdateExtents();
break;
case historyitem_Xfrm_SetChOffX:
this.chOffX = readDouble(r);
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChOffY:
this.chOffY = readDouble(r);
this.handleUpdateChildOffset();
break;
case historyitem_Xfrm_SetChExtX:
this.chExtX = readDouble(r);
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetChExtY:
this.chExtY = readDouble(r);
this.handleUpdateChildExtents();
break;
case historyitem_Xfrm_SetFlipH:
this.flipH = readBool(r);
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetFlipV:
this.flipV = readBool(r);
this.handleUpdateFlip();
break;
case historyitem_Xfrm_SetRot:
this.rot = readDouble(r);
this.handleUpdateRot();
break;
case historyitem_Xfrm_SetParent:
this.parent = readObject(r);
break;
}
if (type === historyitem_Xfrm_SetOffX || type === historyitem_Xfrm_SetOffY) {
return this;
}
}
};
function CSpPr() {
this.bwMode = 0;
this.xfrm = null;
this.geometry = null;
this.Fill = null;
this.ln = null;
this.parent = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CSpPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function (data) {
switch (data.Type) {
case historyitem_SpPr_SetParent:
break;
case historyitem_SpPr_SetBwMode:
break;
case historyitem_SpPr_SetXfrm:
break;
case historyitem_SpPr_SetGeometry:
this.handleUpdateGeometry();
break;
case historyitem_SpPr_SetFill:
this.handleUpdateFill();
break;
case historyitem_SpPr_SetLn:
this.handleUpdateLn();
break;
}
},
Refresh_RecalcData2: function (data) {},
createDuplicate: function () {
var duplicate = new CSpPr();
duplicate.setBwMode(this.bwMode);
if (this.xfrm) {
duplicate.setXfrm(this.xfrm.createDuplicate());
duplicate.xfrm.setParent(duplicate);
}
if (this.geometry != null) {
duplicate.setGeometry(this.geometry.createDuplicate());
duplicate.geometry.setParent(duplicate);
}
if (this.Fill != null) {
duplicate.setFill(this.Fill.createDuplicate());
}
if (this.ln != null) {
duplicate.setLn(this.ln.createDuplicate());
}
return duplicate;
},
checkUniFillRasterImageId: function (unifill) {
if (unifill && unifill.fill && typeof unifill.fill.RasterImageId === "string" && unifill.fill.RasterImageId.length > 0) {
return unifill.fill.RasterImageId;
}
return null;
},
checkBlipFillRasterImage: function (images) {
var fill_image_id = this.checkUniFillRasterImageId(this.Fill);
if (fill_image_id !== null) {
images.push(fill_image_id);
}
if (this.ln) {
var line_image_id = this.checkUniFillRasterImageId(this.ln.Fill);
if (line_image_id) {
images.push(line_image_id);
}
}
},
merge: function (spPr) {
if (spPr.geometry != null) {
this.geometry = spPr.geometry.createDuplicate();
}
if (spPr.Fill != null && spPr.Fill.fill != null) {}
},
getObjectType: function () {
return historyitem_type_SpPr;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
setParent: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetParent,
oldPr: this.parent,
newPr: pr
});
this.parent = pr;
},
setBwMode: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetBwMode,
oldPr: this.bwMode,
newPr: pr
});
this.bwMode = pr;
},
setXfrm: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetXfrm,
oldPr: this.xfrm,
newPr: pr
});
this.xfrm = pr;
},
setGeometry: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetGeometry,
oldPr: this.geometry,
newPr: pr
});
this.geometry = pr;
this.handleUpdateGeometry();
},
setFill: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetFill,
oldPr: this.Fill,
newPr: pr
});
this.Fill = pr;
if (this.parent && this.parent.handleUpdateFill) {
this.parent.handleUpdateFill();
}
},
setLn: function (pr) {
History.Add(this, {
Type: historyitem_SpPr_SetLn,
oldPr: this.ln,
newPr: pr
});
this.ln = pr;
if (this.parent && this.parent.handleUpdateLn) {
this.parent.handleUpdateLn();
}
},
handleUpdatePosition: function () {
if (this.parent && this.parent.handleUpdatePosition) {
this.parent.handleUpdatePosition();
}
},
handleUpdateExtents: function () {
if (this.parent && this.parent.handleUpdateExtents) {
this.parent.handleUpdateExtents();
}
},
handleUpdateChildOffset: function () {
if (this.parent && this.parent.handleUpdateChildOffset) {
this.parent.handleUpdateChildOffset();
}
},
handleUpdateChildExtents: function () {
if (this.parent && this.parent.handleUpdateChildExtents) {
this.parent.handleUpdateChildExtents();
}
},
handleUpdateFlip: function () {
if (this.parent && this.parent.handleUpdateFlip) {
this.parent.handleUpdateFlip();
}
},
handleUpdateRot: function () {
if (this.parent && this.parent.handleUpdateRot) {
this.parent.handleUpdateRot();
}
},
handleUpdateGeometry: function () {
if (this.parent && this.parent.handleUpdateGeometry) {
this.parent.handleUpdateGeometry();
}
},
handleUpdateFill: function () {
if (this.parent && this.parent.handleUpdateFill) {
this.parent.handleUpdateFill();
}
},
handleUpdateLn: function () {
if (this.parent && this.parent.handleUpdateLn) {
this.parent.handleUpdateLn();
}
},
Undo: function (data) {
switch (data.Type) {
case historyitem_SpPr_SetParent:
this.parent = data.oldPr;
break;
case historyitem_SpPr_SetBwMode:
this.bwMode = data.oldPr;
break;
case historyitem_SpPr_SetXfrm:
this.xfrm = data.oldPr;
break;
case historyitem_SpPr_SetGeometry:
this.geometry = data.oldPr;
this.handleUpdateGeometry();
break;
case historyitem_SpPr_SetFill:
this.Fill = data.oldPr;
this.handleUpdateFill();
break;
case historyitem_SpPr_SetLn:
this.ln = data.oldPr;
this.handleUpdateLn();
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_SpPr_SetParent:
this.parent = data.newPr;
break;
case historyitem_SpPr_SetBwMode:
this.bwMode = data.newPr;
break;
case historyitem_SpPr_SetXfrm:
this.xfrm = data.newPr;
break;
case historyitem_SpPr_SetGeometry:
this.geometry = data.newPr;
this.handleUpdateGeometry();
break;
case historyitem_SpPr_SetFill:
this.Fill = data.newPr;
this.handleUpdateFill();
break;
case historyitem_SpPr_SetLn:
this.ln = data.newPr;
this.handleUpdateLn();
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_SpPr_SetBwMode:
writeBool(w, data.newPr);
break;
case historyitem_SpPr_SetXfrm:
case historyitem_SpPr_SetGeometry:
case historyitem_SpPr_SetParent:
writeObject(w, data.newPr);
break;
case historyitem_SpPr_SetFill:
w.WriteBool(isRealObject(data.newPr));
if (isRealObject(data.newPr)) {
data.newPr.Write_ToBinary(w);
}
break;
case historyitem_SpPr_SetLn:
w.WriteBool(isRealObject(data.newPr));
if (isRealObject(data.newPr)) {
data.newPr.Write_ToBinary(w);
}
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_SpPr_SetBwMode:
this.bwMode = readBool(r);
break;
case historyitem_SpPr_SetXfrm:
this.xfrm = readObject(r);
break;
case historyitem_SpPr_SetGeometry:
this.geometry = readObject(r);
this.handleUpdateGeometry();
break;
case historyitem_SpPr_SetFill:
if (r.GetBool()) {
this.Fill = new CUniFill();
this.Fill.Read_FromBinary(r);
if (typeof CollaborativeEditing !== "undefined") {
if (this.Fill.fill && this.Fill.fill.type === FILL_TYPE_BLIP && typeof this.Fill.fill.RasterImageId === "string" && this.Fill.fill.RasterImageId.length > 0) {
var full_image_src_func;
if ((!editor || !editor.isDocumentEditor && !editor.isPresentationEditor) && typeof getFullImageSrc === "function") {
full_image_src_func = getFullImageSrc;
} else {
if (typeof _getFullImageSrc === "function") {
full_image_src_func = _getFullImageSrc;
}
}
if (full_image_src_func) {
CollaborativeEditing.Add_NewImage(full_image_src_func(this.Fill.fill.RasterImageId));
}
}
}
} else {
this.Fill = null;
}
this.handleUpdateFill();
break;
case historyitem_SpPr_SetLn:
if (r.GetBool()) {
this.ln = new CLn();
this.ln.Read_FromBinary(r);
} else {
this.ln = null;
}
this.handleUpdateLn();
break;
case historyitem_SpPr_SetParent:
this.parent = readObject(r);
break;
}
}
};
var g_clr_MIN = 0;
var g_clr_accent1 = 0;
var g_clr_accent2 = 1;
var g_clr_accent3 = 2;
var g_clr_accent4 = 3;
var g_clr_accent5 = 4;
var g_clr_accent6 = 5;
var g_clr_dk1 = 6;
var g_clr_dk2 = 7;
var g_clr_folHlink = 8;
var g_clr_hlink = 9;
var g_clr_lt1 = 10;
var g_clr_lt2 = 11;
var g_clr_MAX = 11;
var g_clr_bg1 = g_clr_lt1;
var g_clr_bg2 = g_clr_lt2;
var g_clr_tx1 = g_clr_dk1;
var g_clr_tx2 = g_clr_dk2;
var phClr = 14;
var tx1 = 15;
var tx2 = 16;
function ClrScheme() {
this.name = "";
this.colors = [];
for (var i = g_clr_MIN; i <= g_clr_MAX; i++) {
this.colors[i] = null;
}
}
ClrScheme.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_ClrScheme;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
isIdentical: function (clrScheme) {
if (clrScheme == null) {
return false;
}
if (! (clrScheme instanceof ClrScheme)) {
return false;
}
if (clrScheme.name != this.name) {
return false;
}
for (var _clr_index = g_clr_MIN; _clr_index <= g_clr_MAX; ++_clr_index) {
if (this.colors[i] != clrScheme.colors[i]) {
return false;
}
}
return true;
},
createDuplicate: function () {
var _duplicate = new ClrScheme();
_duplicate.name = this.name;
for (var _clr_index = 0; _clr_index <= this.colors.length; ++_clr_index) {
_duplicate.colors[_clr_index] = this.colors[_clr_index];
}
return _duplicate;
},
Write_ToBinary: function (w) {
w.WriteLong(this.colors.length);
for (var i = 0; i < this.colors.length; ++i) {
w.WriteBool(isRealObject(this.colors[i]));
if (isRealObject(this.colors[i])) {
this.colors[i].Write_ToBinary(w);
}
}
},
Read_FromBinary: function (r) {
var len = r.GetLong();
for (var i = 0; i < len; ++i) {
if (r.GetBool()) {
this.colors[i] = new CUniColor();
this.colors[i].Read_FromBinary(r);
} else {
this.colors[i] = null;
}
}
},
setName: function (name) {
this.name = name;
},
addColor: function (index, color) {
this.colors[index] = color;
}
};
function ClrMap() {
this.color_map = [];
for (var i = g_clr_MIN; i <= g_clr_MAX; i++) {
this.color_map[i] = null;
}
if (typeof g_oIdCounter != "undefined" && typeof g_oTableId != "undefined" && g_oTableId && g_oIdCounter) {
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
}
ClrMap.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
createDuplicate: function () {
var _copy = new ClrMap();
for (var _color_index = g_clr_MIN; _color_index <= this.color_map.length; ++_color_index) {
_copy.color_map[_color_index] = this.color_map[_color_index];
}
return _copy;
},
compare: function (other) {
if (!other) {
return false;
}
for (var i = g_clr_MIN; i < this.color_map.length; ++i) {
if (this.color_map[i] !== other.color_map[i]) {
return false;
}
}
return true;
},
getObjectType: function () {
return historyitem_type_ClrMap;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
setClr: function (index, clr) {
History.Add(this, {
Type: historyitem_ClrMap_SetClr,
oldColor: this.color_map[index],
newColor: clr,
index: index
});
this.color_map[index] = clr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ClrMap_SetClr:
this.color_map[data.index] = data.oldColor;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ClrMap_SetClr:
this.color_map[data.index] = data.newColor;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ClrMap_SetClr:
writeLong(w, data.index);
writeLong(w, data.newColor);
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_ClrMap_SetClr:
var index = readLong(r);
this.color_map[index] = readLong(r);
break;
}
}
};
function ExtraClrScheme() {
this.clrScheme = null;
this.clrMap = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
ExtraClrScheme.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_ExtraClrScheme;
},
setClrScheme: function (pr) {
History.Add(this, {
Type: historyitem_ExtraClrScheme_SetClrScheme,
oldPr: this.clrScheme,
newPr: pr
});
this.clrScheme = pr;
},
setClrMap: function (pr) {
History.Add(this, {
Type: historyitem_ExtraClrScheme_SetClrMap,
oldPr: this.clrMap,
newPr: pr
});
this.clrMap = pr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ExtraClrScheme_SetClrScheme:
this.clrScheme = data.oldPr;
break;
case historyitem_ExtraClrScheme_SetClrMap:
this.clrMap = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ExtraClrScheme_SetClrScheme:
this.clrScheme = data.newPr;
break;
case historyitem_ExtraClrScheme_SetClrMap:
this.clrMap = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ExtraClrScheme_SetClrScheme:
case historyitem_ExtraClrScheme_SetClrMap:
writeObject(w, data.newPr);
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_ExtraClrScheme_SetClrScheme:
this.clrScheme = readObject(r);
break;
case historyitem_ExtraClrScheme_SetClrMap:
this.clrMap = readObject(r);
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function FontCollection(fontScheme) {
this.latin = null;
this.ea = null;
this.cs = null;
if (fontScheme) {
this.setFontScheme(fontScheme);
}
}
FontCollection.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
setFontScheme: function (fontScheme) {
this.fontScheme = fontScheme;
},
getObjectType: function () {
return historyitem_type_FontCollection;
},
setLatin: function (pr) {
this.latin = pr;
if (this.fontScheme) {
this.fontScheme.checkFromFontCollection(pr, this, FONT_REGION_LT);
}
},
setEA: function (pr) {
this.ea = pr;
if (this.fontScheme) {
this.fontScheme.checkFromFontCollection(pr, this, FONT_REGION_EA);
}
},
setCS: function (pr) {
this.cs = pr;
if (this.fontScheme) {
this.fontScheme.checkFromFontCollection(pr, this, FONT_REGION_CS);
}
},
Write_ToBinary: function (w) {
writeString(w, this.latin);
writeString(w, this.ea);
writeString(w, this.cs);
},
Read_FromBinary: function (r) {
this.latin = readString(r);
this.ea = readString(r);
this.cs = readString(r);
if (this.fontScheme) {
this.fontScheme.checkFromFontCollection(this.latin, this, FONT_REGION_LT);
this.fontScheme.checkFromFontCollection(this.ea, this, FONT_REGION_EA);
this.fontScheme.checkFromFontCollection(this.cs, this, FONT_REGION_CS);
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function FontScheme() {
this.name = "";
this.majorFont = new FontCollection(this);
this.minorFont = new FontCollection(this);
this.fontMap = {
"+mj-lt": undefined,
"+mj-ea": undefined,
"+mj-cs": undefined,
"+mn-lt": undefined,
"+mn-ea": undefined,
"+mn-cs": undefined
};
}
var FONT_REGION_LT = 0;
var FONT_REGION_EA = 1;
var FONT_REGION_CS = 2;
FontScheme.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
this.majorFont.Write_ToBinary(w);
this.minorFont.Write_ToBinary(w);
},
Read_FromBinary: function (r) {
this.majorFont.Read_FromBinary(r);
this.minorFont.Read_FromBinary(r);
},
checkFromFontCollection: function (font, fontCollection, region) {
if (fontCollection === this.majorFont) {
switch (region) {
case FONT_REGION_LT:
this.fontMap["+mj-lt"] = font;
break;
case FONT_REGION_EA:
this.fontMap["+mj-ea"] = font;
break;
case FONT_REGION_CS:
this.fontMap["+mj-cs"] = font;
break;
}
} else {
if (fontCollection === this.minorFont) {
switch (region) {
case FONT_REGION_LT:
this.fontMap["+mn-lt"] = font;
break;
case FONT_REGION_EA:
this.fontMap["+mn-ea"] = font;
break;
case FONT_REGION_CS:
this.fontMap["+mn-cs"] = font;
break;
}
}
}
},
checkFont: function (font) {
if (g_oThemeFontsName[font]) {
if (this.fontMap[font]) {
return this.fontMap[font];
} else {
if (this.fontMap["+mn-lt"]) {
return this.fontMap["+mn-lt"];
} else {
return "Arial";
}
}
}
return font;
},
getObjectType: function () {
return historyitem_type_FontScheme;
},
setName: function (pr) {
this.name = pr;
},
setMajorFont: function (pr) {
this.majorFont = pr;
},
setMinorFont: function (pr) {
this.minorFont = pr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_FontScheme_SetName:
this.name = data.oldPr;
break;
case historyitem_FontScheme_SetMajorFont:
this.majorFont = data.oldPr;
break;
case historyitem_FontScheme_SetMinorFont:
this.minorFont = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_FontScheme_SetName:
this.name = data.newPr;
break;
case historyitem_FontScheme_SetMajorFont:
this.majorFont = data.newPr;
break;
case historyitem_FontScheme_SetMinorFont:
this.minorFont = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_FontScheme_SetName:
writeString(w, data.newPr);
break;
case historyitem_FontScheme_SetMajorFont:
case historyitem_FontScheme_SetMinorFont:
writeObject(w, data.newPr);
this.majorFont = data.newPr;
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_FontScheme_SetName:
this.name = readString(r);
break;
case historyitem_FontScheme_SetMajorFont:
this.majorFont = readObject(r);
break;
case historyitem_FontScheme_SetMinorFont:
this.minorFont = readObject(r);
break;
}
}
};
function FmtScheme() {
this.name = "";
this.fillStyleLst = [];
this.lnStyleLst = [];
this.effectStyleLst = null;
this.bgFillStyleLst = [];
}
FmtScheme.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
GetFillStyle: function (number, unicolor) {
if (number >= 1 && number <= 999) {
var ret = this.fillStyleLst[number - 1];
if (!ret) {
return null;
}
var ret2 = ret.createDuplicate();
ret2.checkPhColor(unicolor);
return ret2;
} else {
if (number >= 1001) {
var ret = this.bgFillStyleLst[number - 1001];
if (!ret) {
return null;
}
var ret2 = ret.createDuplicate();
ret2.checkPhColor(unicolor);
return ret2;
}
}
return null;
},
getObjectType: function () {
return historyitem_type_FormatScheme;
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Write_ToBinary: function (w) {
writeString(w, this.name);
var i;
w.WriteLong(this.fillStyleLst.length);
for (i = 0; i < this.fillStyleLst.length; ++i) {
this.fillStyleLst[i].Write_ToBinary(w);
}
w.WriteLong(this.lnStyleLst.length);
for (i = 0; i < this.lnStyleLst.length; ++i) {
this.lnStyleLst[i].Write_ToBinary(w);
}
w.WriteLong(this.bgFillStyleLst.length);
for (i = 0; i < this.bgFillStyleLst.length; ++i) {
this.bgFillStyleLst[i].Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
this.name = readString(r);
var _len = r.GetLong(),
i;
for (i = 0; i < _len; ++i) {
this.fillStyleLst[i] = new CUniFill();
this.fillStyleLst[i].Read_FromBinary(r);
}
_len = r.GetLong();
for (i = 0; i < _len; ++i) {
this.lnStyleLst[i] = new CLn();
this.lnStyleLst[i].Read_FromBinary(r);
}
_len = r.GetLong();
for (i = 0; i < _len; ++i) {
this.bgFillStyleLst[i] = new CUniFill();
this.bgFillStyleLst[i].Read_FromBinary(r);
}
},
setName: function (pr) {
this.name = pr;
},
addFillToStyleLst: function (pr) {
this.fillStyleLst.push(pr);
},
addLnToStyleLst: function (pr) {
this.lnStyleLst.push(pr);
},
addEffectToStyleLst: function (pr) {
this.effectStyleLst.push(pr);
},
addBgFillToStyleLst: function (pr) {
this.bgFillStyleLst.push(pr);
}
};
function ThemeElements() {
this.clrScheme = new ClrScheme();
this.fontScheme = new FontScheme();
this.fmtScheme = new FmtScheme();
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
ThemeElements.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_ThemeElements;
},
setClrScheme: function (pr) {
History.Add(this, {
Type: historyitem_ThemeElements_SetClrScheme,
oldPr: this.clrScheme,
newPr: pr
});
this.clrScheme = pr;
},
setFontScheme: function (pr) {
History.Add(this, {
Type: historyitem_ThemeElements_SetFontScheme,
oldPr: this.fontScheme,
newPr: pr
});
this.fontScheme = pr;
},
setFmtScheme: function (pr) {
History.Add(this, {
Type: historyitem_ThemeElements_SetFmtScheme,
oldPr: this.fmtScheme,
newPr: pr
});
this.fmtScheme = pr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_ThemeElements_SetClrScheme:
this.clrScheme = data.oldPr;
break;
case historyitem_ThemeElements_SetFontScheme:
this.fontScheme = data.oldPr;
break;
case historyitem_ThemeElements_SetFmtScheme:
this.fmtScheme = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ThemeElements_SetClrScheme:
this.clrScheme = data.newPr;
break;
case historyitem_ThemeElements_SetFontScheme:
this.fontScheme = data.newPr;
break;
case historyitem_ThemeElements_SetFmtScheme:
this.fmtScheme = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ThemeElements_SetClrScheme:
case historyitem_ThemeElements_SetFontScheme:
case historyitem_ThemeElements_SetFmtScheme:
writeObject(w, data.newPr);
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_ThemeElements_SetClrScheme:
this.clrScheme = readObject(r);
break;
case historyitem_ThemeElements_SetFontScheme:
this.fontScheme = readObject(r);
break;
case historyitem_ThemeElements_SetFmtScheme:
this.fmtScheme = readObject(r);
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function CTheme() {
this.name = "";
this.themeElements = new ThemeElements();
this.spDef = null;
this.lnDef = null;
this.txDef = null;
this.extraClrSchemeLst = [];
this.isThemeOverride = false;
this.presentation = null;
this.clrMap = null;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
CTheme.prototype = {
Get_Id: function () {
return this.Id;
},
Document_Get_AllFontNames: function (AllFonts) {
var font_scheme = this.themeElements.fontScheme;
var major_font = font_scheme.majorFont;
typeof major_font.latin === "string" && major_font.latin.length > 0 && (AllFonts[major_font.latin] = 1);
typeof major_font.ea === "string" && major_font.ea.length > 0 && (AllFonts[major_font.ea] = 1);
typeof major_font.cs === "string" && major_font.latin.length > 0 && (AllFonts[major_font.cs] = 1);
var minor_font = font_scheme.minorFont;
typeof minor_font.latin === "string" && minor_font.latin.length > 0 && (AllFonts[minor_font.latin] = 1);
typeof minor_font.ea === "string" && minor_font.ea.length > 0 && (AllFonts[minor_font.ea] = 1);
typeof minor_font.cs === "string" && minor_font.latin.length > 0 && (AllFonts[minor_font.cs] = 1);
},
getFillStyle: function (idx, unicolor) {
if (idx === 0 || idx === 1000) {
return CreateNoFillUniFill();
}
var ret;
if (idx >= 1 && idx <= 999) {
if (this.themeElements.fmtScheme.fillStyleLst[idx - 1]) {
ret = this.themeElements.fmtScheme.fillStyleLst[idx - 1].createDuplicate();
if (ret) {
ret.checkPhColor(unicolor);
return ret;
}
}
} else {
if (idx >= 1001) {
if (this.themeElements.fmtScheme.bgFillStyleLst[idx - 1]) {
ret = this.themeElements.fmtScheme.bgFillStyleLst[idx - 1].createDuplicate();
if (ret) {
ret.checkPhColor(unicolor);
return ret;
}
}
}
}
return CreateSolidFillRGBA(0, 0, 0, 255);
},
getLnStyle: function (idx, unicolor) {
if (this.themeElements.fmtScheme.lnStyleLst[idx - 1]) {
var ret = this.themeElements.fmtScheme.lnStyleLst[idx - 1].createDuplicate();
if (ret.Fill) {
ret.Fill.checkPhColor(unicolor);
}
return ret;
}
return new CLn();
},
changeColorScheme: function (clrScheme) {
History.Add(this, {
Type: historyitem_ThemeSetColorScheme,
oldPr: this.themeElements.clrScheme,
newPr: clrScheme
});
this.themeElements.clrScheme = clrScheme;
},
setFontScheme: function (fontScheme) {
History.Add(this, {
Type: historyitem_ThemeSetFontScheme,
oldPr: this.themeElements.fontScheme,
newPr: fontScheme
});
this.themeElements.fontScheme = fontScheme;
},
setFormatScheme: function (fmtScheme) {
History.Add(this, {
Type: historyitem_ThemeSetFmtScheme,
oldPr: this.themeElements.fmtScheme,
newPr: fmtScheme
});
this.themeElements.fmtScheme = fmtScheme;
},
Refresh_RecalcData: function () {},
Undo: function (data) {
switch (data.Type) {
case historyitem_ThemeSetColorScheme:
this.themeElements.clrScheme = data.oldPr;
break;
case historyitem_ThemeSetFontScheme:
this.themeElements.fontScheme = data.oldPr;
break;
case historyitem_ThemeSetFmtScheme:
this.themeElements.fmtScheme = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_ThemeSetColorScheme:
this.themeElements.clrScheme = data.newPr;
break;
case historyitem_ThemeSetFontScheme:
this.themeElements.fontScheme = data.newPr;
break;
case historyitem_ThemeSetFmtScheme:
this.themeElements.fmtScheme = data.newPr;
break;
}
},
getObjectType: function () {
return historyitem_type_Theme;
},
Write_ToBinary2: function (w) {
w.WriteLong(historyitem_type_Theme);
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
},
Save_Changes: function (data, w) {
w.WriteLong(historyitem_type_Theme);
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_ThemeSetColorScheme:
case historyitem_ThemeSetFontScheme:
case historyitem_ThemeSetFmtScheme:
data.newPr.Write_ToBinary(w);
break;
}
},
Load_Changes: function (r) {
if (r.GetLong() === historyitem_type_Theme) {
var type = r.GetLong();
switch (type) {
case historyitem_ThemeSetColorScheme:
this.themeElements.clrScheme = new ClrScheme();
this.themeElements.clrScheme.Read_FromBinary(r);
break;
case historyitem_ThemeSetFontScheme:
this.themeElements.fontScheme = new FontScheme();
this.themeElements.fontScheme.Read_FromBinary(r);
break;
case historyitem_ThemeSetFmtScheme:
this.themeElements.fmtScheme = new FmtScheme();
this.themeElements.fmtScheme.Read_FromBinary(r);
break;
}
}
}
};
function HF() {
this.dt = true;
this.ftr = true;
this.hdr = true;
this.sldNum = true;
this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id);
}
HF.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_HF;
},
setDt: function (pr) {
History.Add(this, {
Type: historyitem_HF_SetDt,
oldPr: this.dt,
newPr: pr
});
this.dt = pr;
},
setFtr: function (pr) {
History.Add(this, {
Type: historyitem_HF_SetFtr,
oldPr: this.ftr,
newPr: pr
});
this.ftr = pr;
},
setHdr: function (pr) {
History.Add(this, {
Type: historyitem_HF_SetHdr,
oldPr: this.hdr,
newPr: pr
});
this.hdr = pr;
},
setSldNum: function (pr) {
History.Add(this, {
Type: historyitem_HF_SetSldNum,
oldPr: this.sldNum,
newPr: pr
});
this.sldNum = pr;
},
Undo: function (data) {
switch (data.Type) {
case historyitem_HF_SetDt:
this.dt = data.oldPr;
break;
case historyitem_HF_SetFtr:
this.ftr = data.oldPr;
break;
case historyitem_HF_SetHdr:
this.hdr = data.oldPr;
break;
case historyitem_HF_SetSldNum:
this.sldNum = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_HF_SetDt:
this.dt = data.newPr;
break;
case historyitem_HF_SetFtr:
this.ftr = data.newPr;
break;
case historyitem_HF_SetHdr:
this.hdr = data.newPr;
break;
case historyitem_HF_SetSldNum:
this.sldNum = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_HF_SetDt:
case historyitem_HF_SetFtr:
case historyitem_HF_SetHdr:
case historyitem_HF_SetSldNum:
writeBool(w, data.newPr);
break;
}
},
Load_Changes: function (r) {
var type = r.GetLong();
switch (type) {
case historyitem_HF_SetDt:
this.dt = readBool(r);
break;
case historyitem_HF_SetFtr:
this.ftr = readBool(r);
break;
case historyitem_HF_SetHdr:
this.hdr = readBool(r);
break;
case historyitem_HF_SetSldNum:
this.sldNum = readBool(r);
break;
}
},
Write_ToBinary2: function (w) {
w.WriteLong(this.getObjectType());
w.WriteString2(this.Id);
},
Read_FromBinary2: function (r) {
this.Id = r.GetString2();
}
};
function CBgPr() {
this.Fill = null;
this.shadeToTitle = false;
}
CBgPr.prototype = {
Get_Id: function () {
return this.Id;
},
merge: function (bgPr) {
if (this.Fill == null) {
this.Fill = new CUniFill();
if (bgPr.Fill != null) {
this.Fill.merge(bgPr.Fill);
}
}
},
createFullCopy: function () {
var _copy = new CBgPr();
if (this.Fill != null) {
_copy.Fill = this.Fill.createDuplicate();
}
_copy.shadeToTitle = this.shadeToTitle;
return _copy;
},
Refresh_RecalcData: function () {},
getObjectType: function () {
return historyitem_type_BgPr;
},
setFill: function (pr) {
this.Fill = pr;
},
setShadeToTitle: function (pr) {
this.shadeToTitle = pr;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.Fill));
if (isRealObject(this.Fill)) {
this.Fill.Write_ToBinary(w);
}
w.WriteBool(this.shadeToTitle);
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.Fill = new CUniFill();
this.Fill.Read_FromBinary(r);
}
this.shadeToTitle = r.GetBool();
}
};
function CBg() {
this.bwMode = null;
this.bgPr = null;
this.bgRef = null;
}
CBg.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
setBwMode: function (pr) {
this.bwMode = pr;
},
setBgPr: function (pr) {
this.bgPr = pr;
},
setBgRef: function (pr) {
this.bgRef = pr;
},
merge: function (bg) {
if (this.bgPr == null) {
this.bgPr = new CBgPr();
if (bg.bgPr != null) {
this.bgPr.merge(bg.bgPr);
}
}
},
createFullCopy: function () {
var _copy = new CBg();
_copy.bwMode = this.bwMode;
if (this.bgPr != null) {
_copy.bgPr = this.bgPr.createFullCopy();
}
if (this.bgRef != null) {
_copy.bgRef = this.bgRef.createDuplicate();
}
return _copy;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.bgPr));
if (isRealObject(this.bgPr)) {
this.bgPr.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.bgPr = new CBgPr();
this.bgPr.Read_FromBinary(r);
}
},
Undo: function (data) {
switch (data.Type) {
case historyitem_BgSetBwMode:
this.bwMode = data.oldPr;
break;
case historyitem_BgSetBgPr:
this.bgPr = data.oldPr;
break;
case historyitem_BgSetBgRef:
this.bgRef = data.oldPr;
break;
}
},
Redo: function (data) {
switch (data.Type) {
case historyitem_BgSetBwMode:
this.bwMode = data.newPr;
break;
case historyitem_BgSetBgPr:
this.bgPr = data.newPr;
break;
case historyitem_BgSetBgRef:
this.bgRef = data.newPr;
break;
}
},
Save_Changes: function (data, w) {
w.WriteLong(data.Type);
switch (data.Type) {
case historyitem_BgSetBwMode:
writeBool(w, data.newPr);
break;
case historyitem_BgSetBgPr:
case historyitem_BgSetBgRef:
writeObject(w, data.newPr);
break;
}
},
getObjectType: function () {
return historyitem_type_Bg;
}
};
function CSld() {
this.name = "";
this.Bg = null;
this.spTree = [];
}
function CTextStyle() {
this.defPPr = null;
this.lvl1pPr = null;
this.lvl2pPr = null;
this.lvl3pPr = null;
this.lvl4pPr = null;
this.lvl5pPr = null;
this.lvl6pPr = null;
this.lvl7pPr = null;
this.lvl8pPr = null;
this.lvl9pPr = null;
}
CTextStyle.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
function CTextStyles() {
this.titleStyle = null;
this.bodyStyle = null;
this.otherStyle = null;
}
CTextStyles.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.titleStyle));
if (isRealObject(this.titleStyle)) {
this.titleStyle.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.bodyStyle));
if (isRealObject(this.bodyStyle)) {
this.bodyStyle.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.otherStyle));
if (isRealObject(this.otherStyle)) {
this.otherStyle.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.titleStyle = new TextListStyle();
this.titleStyle.Read_FromBinary(r);
} else {
this.titleStyle = null;
}
if (r.GetBool()) {
this.bodyStyle = new TextListStyle();
this.bodyStyle.Read_FromBinary(r);
} else {
this.bodyStyle = null;
}
if (r.GetBool()) {
this.otherStyle = new TextListStyle();
this.otherStyle.Read_FromBinary(r);
} else {
this.otherStyle = null;
}
}
};
var nSldLtTBlank = 0;
var nSldLtTChart = 1;
var nSldLtTChartAndTx = 2;
var nSldLtTClipArtAndTx = 3;
var nSldLtTClipArtAndVertTx = 4;
var nSldLtTCust = 5;
var nSldLtTDgm = 6;
var nSldLtTFourObj = 7;
var nSldLtTMediaAndTx = 8;
var nSldLtTObj = 9;
var nSldLtTObjAndTwoObj = 10;
var nSldLtTObjAndTx = 11;
var nSldLtTObjOnly = 12;
var nSldLtTObjOverTx = 13;
var nSldLtTObjTx = 14;
var nSldLtTPicTx = 15;
var nSldLtTSecHead = 16;
var nSldLtTTbl = 17;
var nSldLtTTitle = 18;
var nSldLtTTitleOnly = 19;
var nSldLtTTwoColTx = 20;
var nSldLtTTwoObj = 21;
var nSldLtTTwoObjAndObj = 22;
var nSldLtTTwoObjAndTx = 23;
var nSldLtTTwoObjOverTx = 24;
var nSldLtTTwoTxTwoObj = 25;
var nSldLtTTx = 26;
var nSldLtTTxAndChart = 27;
var nSldLtTTxAndClipArt = 28;
var nSldLtTTxAndMedia = 29;
var nSldLtTTxAndObj = 30;
var nSldLtTTxAndTwoObj = 31;
var nSldLtTTxOverObj = 32;
var nSldLtTVertTitleAndTx = 33;
var nSldLtTVertTitleAndTxOverChart = 34;
var nSldLtTVertTx = 35;
var _weight_body = 9;
var _weight_chart = 5;
var _weight_clipArt = 2;
var _weight_ctrTitle = 11;
var _weight_dgm = 4;
var _weight_media = 3;
var _weight_obj = 8;
var _weight_pic = 7;
var _weight_subTitle = 10;
var _weight_tbl = 6;
var _weight_title = 11;
var _ph_multiplier = 4;
var _ph_summ_blank = 0;
var _ph_summ_chart = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_chart);
var _ph_summ_chart_and_tx = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_chart) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ_dgm = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_dgm);
var _ph_summ_four_obj = Math.pow(_ph_multiplier, _weight_title) + 4 * Math.pow(_ph_multiplier, _weight_obj);
var _ph_summ__media_and_tx = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_media) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__obj = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_obj);
var _ph_summ__obj_and_two_obj = Math.pow(_ph_multiplier, _weight_title) + 3 * Math.pow(_ph_multiplier, _weight_obj);
var _ph_summ__obj_and_tx = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_obj) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__obj_only = Math.pow(_ph_multiplier, _weight_obj);
var _ph_summ__pic_tx = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_pic) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__sec_head = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_subTitle);
var _ph_summ__tbl = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_tbl);
var _ph_summ__title_only = Math.pow(_ph_multiplier, _weight_title);
var _ph_summ__two_col_tx = Math.pow(_ph_multiplier, _weight_title) + 2 * Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__two_obj_and_tx = Math.pow(_ph_multiplier, _weight_title) + 2 * Math.pow(_ph_multiplier, _weight_obj) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__two_obj_and_two_tx = Math.pow(_ph_multiplier, _weight_title) + 2 * Math.pow(_ph_multiplier, _weight_obj) + 2 * Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__tx = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_body);
var _ph_summ__tx_and_clip_art = Math.pow(_ph_multiplier, _weight_title) + Math.pow(_ph_multiplier, _weight_body) + +Math.pow(_ph_multiplier, _weight_clipArt);
var _arr_lt_types_weight = [];
_arr_lt_types_weight[0] = _ph_summ_blank;
_arr_lt_types_weight[1] = _ph_summ_chart;
_arr_lt_types_weight[2] = _ph_summ_chart_and_tx;
_arr_lt_types_weight[3] = _ph_summ_dgm;
_arr_lt_types_weight[4] = _ph_summ_four_obj;
_arr_lt_types_weight[5] = _ph_summ__media_and_tx;
_arr_lt_types_weight[6] = _ph_summ__obj;
_arr_lt_types_weight[7] = _ph_summ__obj_and_two_obj;
_arr_lt_types_weight[8] = _ph_summ__obj_and_tx;
_arr_lt_types_weight[9] = _ph_summ__obj_only;
_arr_lt_types_weight[10] = _ph_summ__pic_tx;
_arr_lt_types_weight[11] = _ph_summ__sec_head;
_arr_lt_types_weight[12] = _ph_summ__tbl;
_arr_lt_types_weight[13] = _ph_summ__title_only;
_arr_lt_types_weight[14] = _ph_summ__two_col_tx;
_arr_lt_types_weight[15] = _ph_summ__two_obj_and_tx;
_arr_lt_types_weight[16] = _ph_summ__two_obj_and_two_tx;
_arr_lt_types_weight[17] = _ph_summ__tx;
_arr_lt_types_weight[18] = _ph_summ__tx_and_clip_art;
_arr_lt_types_weight.sort(fSortAscending);
var _global_layout_summs_array = {};
_global_layout_summs_array["_" + _ph_summ_blank] = nSldLtTBlank;
_global_layout_summs_array["_" + _ph_summ_chart] = nSldLtTChart;
_global_layout_summs_array["_" + _ph_summ_chart_and_tx] = nSldLtTChartAndTx;
_global_layout_summs_array["_" + _ph_summ_dgm] = nSldLtTDgm;
_global_layout_summs_array["_" + _ph_summ_four_obj] = nSldLtTFourObj;
_global_layout_summs_array["_" + _ph_summ__media_and_tx] = nSldLtTMediaAndTx;
_global_layout_summs_array["_" + _ph_summ__obj] = nSldLtTObj;
_global_layout_summs_array["_" + _ph_summ__obj_and_two_obj] = nSldLtTObjAndTwoObj;
_global_layout_summs_array["_" + _ph_summ__obj_and_tx] = nSldLtTObjAndTx;
_global_layout_summs_array["_" + _ph_summ__obj_only] = nSldLtTObjOnly;
_global_layout_summs_array["_" + _ph_summ__pic_tx] = nSldLtTPicTx;
_global_layout_summs_array["_" + _ph_summ__sec_head] = nSldLtTSecHead;
_global_layout_summs_array["_" + _ph_summ__tbl] = nSldLtTTbl;
_global_layout_summs_array["_" + _ph_summ__title_only] = nSldLtTTitleOnly;
_global_layout_summs_array["_" + _ph_summ__two_col_tx] = nSldLtTTwoColTx;
_global_layout_summs_array["_" + _ph_summ__two_obj_and_tx] = nSldLtTTwoObjAndTx;
_global_layout_summs_array["_" + _ph_summ__two_obj_and_two_tx] = nSldLtTTwoTxTwoObj;
_global_layout_summs_array["_" + _ph_summ__tx] = nSldLtTTx;
_global_layout_summs_array["_" + _ph_summ__tx_and_clip_art] = nSldLtTTxAndClipArt;
function NoteMaster() {
this.cSld = new CSld();
this.clrMap = new ClrMap();
this.hf = new HF();
this.notesStyle = null;
this.Theme = null;
this.TableStyles = null;
this.Calculate = function () {};
}
NoteMaster.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
function NoteSlide() {
this.cSld = new CSld();
this.clrMap = null;
this.showMasterPhAnim = false;
this.showMasterSp = false;
this.Calculate = function () {};
}
NoteSlide.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
function redrawSlide(slide, presentation, arrInd, pos, direction, arr_slides) {
slide.recalculate();
presentation.DrawingDocument.OnRecalculatePage(slide.num, slide);
if (direction == 0) {
if (pos > 0) {
presentation.backChangeThemeTimeOutId = setTimeout(function () {
redrawSlide(arr_slides[arrInd[pos - 1]], presentation, arrInd, pos - 1, -1, arr_slides);
},
recalcSlideInterval);
} else {
presentation.backChangeThemeTimeOutId = null;
}
if (pos < arrInd.length - 1) {
presentation.forwardChangeThemeTimeOutId = setTimeout(function () {
redrawSlide(arr_slides[arrInd[pos + 1]], presentation, arrInd, pos + 1, +1, arr_slides);
},
recalcSlideInterval);
} else {
presentation.forwardChangeThemeTimeOutId = null;
}
presentation.startChangeThemeTimeOutId = null;
}
if (direction > 0) {
if (pos < arrInd.length - 1) {
presentation.forwardChangeThemeTimeOutId = setTimeout(function () {
redrawSlide(arr_slides[arrInd[pos + 1]], presentation, arrInd, pos + 1, +1, arr_slides);
},
recalcSlideInterval);
} else {
presentation.forwardChangeThemeTimeOutId = null;
}
}
if (direction < 0) {
if (pos > 0) {
presentation.backChangeThemeTimeOutId = setTimeout(function () {
redrawSlide(arr_slides[arrInd[pos - 1]], presentation, arrInd, pos - 1, -1, arr_slides);
},
recalcSlideInterval);
} else {
presentation.backChangeThemeTimeOutId = null;
}
}
}
var text_fit_No = 0;
var text_fit_Auto = 1;
var text_fit_NormAuto = 2;
function CTextFit() {
this.type = 0;
this.fontScale = null;
this.lnSpcReduction = null;
}
CTextFit.prototype = {
CreateDublicate: function () {
var d = new CTextFit();
d.type = this.type;
d.fontScale = this.fontScale;
d.lnSpcReduction = this.lnSpcReduction;
return d;
},
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
var VERTICAL_ANCHOR_TYPE_BOTTOM = 0;
var VERTICAL_ANCHOR_TYPE_CENTER = 1;
var VERTICAL_ANCHOR_TYPE_DISTRIBUTED = 2;
var VERTICAL_ANCHOR_TYPE_JUSTIFIED = 3;
var VERTICAL_ANCHOR_TYPE_TOP = 4;
var nOTClip = 0;
var nOTEllipsis = 1;
var nOTOwerflow = 2;
var nTextATB = 0;
var nTextATCtr = 1;
var nTextATDist = 2;
var nTextATJust = 3;
var nTextATT = 4;
var nVertTTeaVert = 0;
var nVertTThorz = 1;
var nVertTTmongolianVert = 2;
var nVertTTvert = 3;
var nVertTTvert270 = 4;
var nVertTTwordArtVert = 5;
var nVertTTwordArtVertRtl = 6;
var nTWTNone = 0;
var nTWTSquare = 1;
var text_fit_No = 0;
var text_fit_Auto = 1;
var text_fit_NormAuto = 2;
function CBodyPr() {
this.flatTx = null;
this.anchor = null;
this.anchorCtr = null;
this.bIns = null;
this.compatLnSpc = null;
this.forceAA = null;
this.fromWordArt = null;
this.horzOverflow = null;
this.lIns = null;
this.numCol = null;
this.rIns = null;
this.rot = null;
this.rtlCol = null;
this.spcCol = null;
this.spcFirstLastPara = null;
this.tIns = null;
this.upright = null;
this.vert = null;
this.vertOverflow = null;
this.wrap = null;
this.textFit = null;
this.parent = null;
}
CBodyPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
isNotNull: function () {
return this.flatTx !== null || this.anchor !== null || this.anchorCtr !== null || this.bIns !== null || this.compatLnSpc !== null || this.forceAA !== null || this.fromWordArt !== null || this.horzOverflow !== null || this.lIns !== null || this.numCol !== null || this.rIns !== null || this.rot !== null || this.rtlCol !== null || this.spcCol !== null || this.spcFirstLastPara !== null || this.tIns !== null || this.upright !== null || this.vert !== null || this.vertOverflow !== null || this.wrap !== null || this.textFit !== null;
},
setAnchor: function (val) {
this.anchor = val;
},
setVert: function (val) {
this.vert = val;
},
setRot: function (val) {
this.rot = val;
},
reset: function () {
this.flatTx = null;
this.anchor = null;
this.anchorCtr = null;
this.bIns = null;
this.compatLnSpc = null;
this.forceAA = null;
this.fromWordArt = null;
this.horzOverflow = null;
this.lIns = null;
this.numCol = null;
this.rIns = null;
this.rot = null;
this.rtlCol = null;
this.spcCol = null;
this.spcFirstLastPara = null;
this.tIns = null;
this.upright = null;
this.vert = null;
this.vertOverflow = null;
this.wrap = null;
this.textFit = null;
},
Write_ToBinary2: function (w) {
var flag = this.flatTx != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.flatTx);
}
flag = this.anchor != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.anchor);
}
flag = this.anchorCtr != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.anchorCtr);
}
flag = this.bIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.bIns);
}
flag = this.compatLnSpc != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.compatLnSpc);
}
flag = this.forceAA != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.forceAA);
}
flag = this.fromWordArt != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.fromWordArt);
}
flag = this.horzOverflow != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.horzOverflow);
}
flag = this.lIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.lIns);
}
flag = this.numCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.numCol);
}
flag = this.rIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.rIns);
}
flag = this.rot != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.rot);
}
flag = this.rtlCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.rtlCol);
}
flag = this.spcCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.spcCol);
}
flag = this.spcFirstLastPara != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.spcFirstLastPara);
}
flag = this.tIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.tIns);
}
flag = this.upright != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.upright);
}
flag = this.vert != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.vert);
}
flag = this.vertOverflow != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.vertOverflow);
}
flag = this.wrap != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.wrap);
}
},
Read_FromBinary2: function (r) {
var flag = r.GetBool();
if (flag) {
this.flatTx = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.anchor = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.anchorCtr = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.bIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.compatLnSpc = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.forceAA = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.fromWordArt = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.horzOverflow = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.lIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.numCol = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.rIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.rot = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.rtlCol = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.spcCol = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.spcFirstLastPara = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.tIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.upright = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.vert = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.vertOverflow = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.wrap = r.GetLong();
}
},
setDefault: function () {
this.flatTx = null;
this.anchor = 4;
this.anchorCtr = false;
this.bIns = 45720 / 36000;
this.compatLnSpc = false;
this.forceAA = false;
this.fromWordArt = false;
this.horzOverflow = nOTOwerflow;
this.lIns = 91440 / 36000;
this.numCol = 1;
this.rIns = 91440 / 36000;
this.rot = null;
this.rtlCol = false;
this.spcCol = false;
this.spcFirstLastPara = null;
this.tIns = 45720 / 36000;
this.upright = false;
this.vert = nVertTThorz;
this.vertOverflow = nOTOwerflow;
this.wrap = nTWTSquare;
},
createDuplicate: function () {
var duplicate = new CBodyPr();
duplicate.flatTx = this.flatTx;
duplicate.anchor = this.anchor;
duplicate.anchorCtr = this.anchorCtr;
duplicate.bIns = this.bIns;
duplicate.compatLnSpc = this.compatLnSpc;
duplicate.forceAA = this.forceAA;
duplicate.fromWordArt = this.fromWordArt;
duplicate.horzOverflow = this.horzOverflow;
duplicate.lIns = this.lIns;
duplicate.rIns = this.rIns;
duplicate.rot = this.rot;
duplicate.rtlCol = this.rtlCol;
duplicate.spcCol = this.spcCol;
duplicate.spcFirstLastPara = this.spcFirstLastPara;
duplicate.tIns = this.tIns;
duplicate.upright = this.upright;
duplicate.vert = this.vert;
duplicate.vertOverflow = this.vertOverflow;
duplicate.wrap = this.wrap;
return duplicate;
},
merge: function (bodyPr) {
if (!bodyPr) {
return;
}
if (bodyPr.flatTx != null) {
this.flatTx = bodyPr.flatTx;
}
if (bodyPr.anchor != null) {
this.anchor = bodyPr.anchor;
}
if (bodyPr.anchorCtr != null) {
this.anchorCtr = bodyPr.anchorCtr;
}
if (bodyPr.bIns != null) {
this.bIns = bodyPr.bIns;
}
if (bodyPr.compatLnSpc != null) {
this.compatLnSpc = bodyPr.compatLnSpc;
}
if (bodyPr.forceAA != null) {
this.forceAA = bodyPr.forceAA;
}
if (bodyPr.fromWordArt != null) {
this.fromWordArt = bodyPr.fromWordArt;
}
if (bodyPr.horzOverflow != null) {
this.horzOverflow = bodyPr.horzOverflow;
}
if (bodyPr.lIns != null) {
this.lIns = bodyPr.lIns;
}
if (bodyPr.rIns != null) {
this.rIns = bodyPr.rIns;
}
if (bodyPr.rot != null) {
this.rot = bodyPr.rot;
}
if (bodyPr.rtlCol != null) {
this.rtlCol = bodyPr.rtlCol;
}
if (bodyPr.spcCol != null) {
this.spcCol = bodyPr.spcCol;
}
if (bodyPr.spcFirstLastPara != null) {
this.spcFirstLastPara = bodyPr.spcFirstLastPara;
}
if (bodyPr.tIns != null) {
this.tIns = bodyPr.tIns;
}
if (bodyPr.upright != null) {
this.upright = bodyPr.upright;
}
if (bodyPr.vert != null) {
this.vert = bodyPr.vert;
}
if (bodyPr.vertOverflow != null) {
this.vertOverflow = bodyPr.vertOverflow;
}
if (bodyPr.wrap != null) {
this.wrap = bodyPr.wrap;
}
return this;
},
Write_ToBinary: function (w) {
var flag = this.flatTx != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.flatTx);
}
flag = this.anchor != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.anchor);
}
flag = this.anchorCtr != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.anchorCtr);
}
flag = this.bIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.bIns);
}
flag = this.compatLnSpc != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.compatLnSpc);
}
flag = this.forceAA != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.forceAA);
}
flag = this.fromWordArt != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.fromWordArt);
}
flag = this.horzOverflow != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.horzOverflow);
}
flag = this.lIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.lIns);
}
flag = this.numCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.numCol);
}
flag = this.rIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.rIns);
}
flag = this.rot != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.rot);
}
flag = this.rtlCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.rtlCol);
}
flag = this.spcCol != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.spcCol);
}
flag = this.spcFirstLastPara != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.spcFirstLastPara);
}
flag = this.tIns != null;
w.WriteBool(flag);
if (flag) {
w.WriteDouble(this.tIns);
}
flag = this.upright != null;
w.WriteBool(flag);
if (flag) {
w.WriteBool(this.upright);
}
flag = this.vert != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.vert);
}
flag = this.vertOverflow != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.vertOverflow);
}
flag = this.wrap != null;
w.WriteBool(flag);
if (flag) {
w.WriteLong(this.wrap);
}
},
Read_FromBinary: function (r) {
var flag = r.GetBool();
if (flag) {
this.flatTx = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.anchor = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.anchorCtr = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.bIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.compatLnSpc = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.forceAA = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.fromWordArt = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.horzOverflow = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.lIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.numCol = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.rIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.rot = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.rtlCol = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.spcCol = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.spcFirstLastPara = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.tIns = r.GetDouble();
}
flag = r.GetBool();
if (flag) {
this.upright = r.GetBool();
}
flag = r.GetBool();
if (flag) {
this.vert = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.vertOverflow = r.GetLong();
}
flag = r.GetBool();
if (flag) {
this.wrap = r.GetLong();
}
}
};
function CHyperlink() {
this.url = "";
this.action = "";
}
CHyperlink.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
function CTextParagraphPr() {
this.bullet = new CBullet();
this.lvl = null;
this.pPr = new CParaPr();
this.rPr = new CTextPr();
this.createDuplicate = function () {
var duplicate = new CTextParagraphPr();
duplicate.bullet = this.bullet.createDuplicate();
duplicate.lvl = this.lvl;
duplicate.pPr = clone(this.pPr);
duplicate.rPr = clone(this.rPr);
return duplicate;
};
this.Write_ToBinary2 = function (w) {
w.WriteBool(isRealObject(this.bullet));
if (isRealObject(this.bullet)) {
this.bullet.Write_ToBinary2(w);
}
w.WriteBool(isRealNumber(this.lvl));
if (isRealNumber(this.lvl)) {
w.WriteLong(this.lvl);
}
w.WriteBool(isRealObject(this.pPr));
if (isRealObject(this.pPr)) {
this.pPr.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.rPr));
if (isRealObject(this.rPr)) {
this.rPr.Write_ToBinary(w);
}
};
this.Read_FromBinary2 = function (r) {
if (r.GetBool()) {
this.bullet = new CBullet();
this.bullet.Read_FromBinary2(r);
} else {
this.bullet = new CBullet();
}
if (r.GetBool()) {
this.lvl = r.GetLong();
} else {
this.lvl = null;
}
this.pPr = new CParaPr();
if (r.GetBool()) {
this.pPr.Read_FromBinary(r);
}
this.rPr = new CTextPr();
if (r.GetBool()) {
this.rPr.Read_FromBinary(r);
}
};
}
CTextParagraphPr.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {}
};
function CompareBullets(bullet1, bullet2) {
if (bullet1.bulletType && bullet2.bulletType && bullet1.bulletType.type === bullet2.bulletType.type && bullet1.bulletType.type !== BULLET_TYPE_BULLET_NONE) {
var ret = new CBullet();
ret.bulletType = new CBulletType();
switch (bullet1.bulletType.type) {
case BULLET_TYPE_BULLET_CHAR:
ret.bulletType.type = BULLET_TYPE_BULLET_CHAR;
if (bullet1.bulletType.Char === bullet2.bulletType.Char) {
ret.bulletType.Char = bullet1.bulletType.Char;
}
break;
case BULLET_TYPE_BULLET_BLIP:
ret.bulletType.type = BULLET_TYPE_BULLET_CHAR;
break;
case BULLET_TYPE_BULLET_AUTONUM:
if (bullet1.bulletType.AutoNumType === bullet2.bulletType.AutoNumType) {
ret.bulletType.AutoNumType = bullet1.bulletType.AutoNumType;
}
if (bullet1.bulletType.startAt === bullet2.bulletType.startAt) {
ret.bulletType.startAt = bullet1.bulletType.startAt;
}
if (bullet1.bulletType.type === bullet2.bulletType.type) {
ret.bulletType.type = bullet1.bulletType.type;
}
break;
}
return ret;
} else {
return undefined;
}
}
function CBullet() {
this.bulletColor = null;
this.bulletSize = null;
this.bulletTypeface = null;
this.bulletType = null;
this.Bullet = null;
}
CBullet.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Set_FromObject: function (obj) {
if (obj) {
if (obj.bulletColor) {
this.bulletColor = new CBulletColor();
this.bulletColor.Set_FromObject(obj.bulletColor);
} else {
this.bulletColor = null;
}
if (obj.bulletSize) {
this.bulletSize = new CBulletSize();
this.bulletSize.Set_FromObject(obj.bulletSize);
} else {
this.bulletSize = null;
}
if (obj.bulletTypeface) {
this.bulletTypeface = new CBulletTypeface();
this.bulletTypeface.Set_FromObject(obj.bulletTypeface);
} else {
this.bulletTypeface = null;
}
}
},
createDuplicate: function () {
var duplicate = new CBullet();
if (this.bulletColor) {
duplicate.bulletColor = this.bulletColor.createDuplicate();
}
if (this.bulletSize) {
duplicate.bulletSize = this.bulletSize.createDuplicate();
}
if (this.bulletTypeface) {
duplicate.bulletTypeface = this.bulletTypeface.createDuplicate();
}
if (this.bulletType) {
duplicate.bulletType = this.bulletType.createDuplicate();
}
duplicate.Bullet = this.Bullet;
return duplicate;
},
isBullet: function () {
return this.bulletType != null && this.bulletType.type != null;
},
getBulletType: function () {
var para_pr = new CParaPr();
para_pr.Bullet = this;
var pres_bullet = para_pr.Get_PresentationBullet();
return pres_bullet.m_nType;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealObject(this.bulletColor));
if (isRealObject(this.bulletColor)) {
this.bulletColor.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.bulletSize));
if (isRealObject(this.bulletSize)) {
this.bulletSize.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.bulletTypeface));
if (isRealObject(this.bulletTypeface)) {
this.bulletTypeface.Write_ToBinary(w);
}
w.WriteBool(isRealObject(this.bulletType));
if (isRealObject(this.bulletType)) {
this.bulletType.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
this.bulletColor = new CBulletColor();
this.bulletColor.Read_FromBinary(r);
}
if (r.GetBool()) {
this.bulletSize = new CBulletSize();
this.bulletSize.Read_FromBinary(r);
}
if (r.GetBool()) {
this.bulletTypeface = new CBulletTypeface();
this.bulletTypeface.Read_FromBinary(r);
}
if (r.GetBool()) {
this.bulletType = new CBulletType();
this.bulletType.Read_FromBinary(r);
}
}
};
var BULLET_TYPE_COLOR_NONE = 0;
var BULLET_TYPE_COLOR_CLRTX = 1;
var BULLET_TYPE_COLOR_CLR = 2;
function CBulletColor() {
this.type = BULLET_TYPE_COLOR_NONE;
this.UniColor = null;
}
CBulletColor.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
Set_FromObject: function (o) {
this.type = o.type;
if (o.UniColor) {}
},
createDuplicate: function () {
var duplicate = new CBulletColor();
duplicate.type = this.type;
if (this.UniColor != null) {
duplicate.UniColor = this.UniColor.createDuplicate();
}
return duplicate;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealNumber(this.type));
if (isRealNumber(this.type)) {
w.WriteLong(this.type);
}
w.WriteBool(isRealObject(this.UniColor));
if (isRealObject(this.UniColor)) {
this.UniColor.Write_ToBinary(w);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
(this.type) = r.GetLong();
}
if (r.GetBool()) {
this.UniColor = new CUniColor();
this.UniColor.Read_FromBinary(r);
}
}
};
var BULLET_TYPE_SIZE_NONE = 0;
var BULLET_TYPE_SIZE_TX = 1;
var BULLET_TYPE_SIZE_PCT = 2;
var BULLET_TYPE_SIZE_PTS = 3;
function CBulletSize() {
this.type = BULLET_TYPE_SIZE_NONE;
this.val = 0;
}
CBulletSize.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
createDuplicate: function () {
var d = new CBulletSize();
d.type = this.type;
d.val = this.val;
return d;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealNumber(this.type));
if (isRealNumber(this.type)) {
w.WriteLong(this.type);
}
w.WriteBool(isRealNumber(this.val));
if (isRealNumber(this.val)) {
w.WriteLong(this.val);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
(this.type) = r.GetLong();
}
if (r.GetBool()) {
(this.val) = r.GetLong();
}
}
};
var BULLET_TYPE_TYPEFACE_NONE = 0;
var BULLET_TYPE_TYPEFACE_TX = 1;
var BULLET_TYPE_TYPEFACE_BUFONT = 2;
function CBulletTypeface() {
this.type = BULLET_TYPE_TYPEFACE_NONE;
this.typeface = "";
}
CBulletTypeface.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
createDuplicate: function () {
var d = new CBulletTypeface();
d.type = this.type;
d.typeface = this.typeface;
return d;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealNumber(this.type));
if (isRealNumber(this.type)) {
w.WriteLong(this.type);
}
w.WriteBool(typeof this.typeface === "string");
if (typeof this.typeface === "string") {
w.WriteString2(this.typeface);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
(this.type) = r.GetLong();
}
if (r.GetBool()) {
(this.typeface) = r.GetString2();
}
}
};
var BULLET_TYPE_BULLET_NONE = 0;
var BULLET_TYPE_BULLET_CHAR = 1;
var BULLET_TYPE_BULLET_AUTONUM = 2;
var BULLET_TYPE_BULLET_BLIP = 3;
function CBulletType() {
this.type = null;
this.Char = "*";
this.AutoNumType = 0;
this.startAt = 1;
}
CBulletType.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
createDuplicate: function () {
var d = new CBulletType();
d.type = this.type;
d.Char = this.Char;
d.AutoNumType = this.AutoNumType;
d.startAt = this.startAt;
return d;
},
Write_ToBinary: function (w) {
w.WriteBool(isRealNumber(this.type));
if (isRealNumber(this.type)) {
w.WriteLong(this.type);
}
w.WriteBool(typeof this.Char === "string");
if (typeof this.Char === "string") {
w.WriteString2(this.Char);
}
w.WriteBool(isRealNumber(this.AutoNumType));
if (isRealNumber(this.AutoNumType)) {
w.WriteLong(this.AutoNumType);
}
w.WriteBool(isRealNumber(this.startAt));
if (isRealNumber(this.startAt)) {
w.WriteLong(this.startAt);
}
},
Read_FromBinary: function (r) {
if (r.GetBool()) {
(this.type) = r.GetLong();
}
if (r.GetBool()) {
(this.Char) = r.GetString2();
}
if (r.GetBool()) {
(this.AutoNumType) = r.GetLong();
}
if (r.GetBool()) {
(this.startAt) = r.GetLong();
}
}
};
function TextListStyle() {
this.levels = new Array(10);
for (var i = 0; i < 10; i++) {
this.levels[i] = null;
}
}
TextListStyle.prototype = {
Get_Id: function () {
return this.Id;
},
Refresh_RecalcData: function () {},
createDuplicate: function () {
var duplicate = new TextListStyle();
for (var i = 0; i < 10; ++i) {
if (this.levels[i] != null) {
duplicate.levels[i] = this.levels[i].Copy();
}
}
return duplicate;
},
Write_ToBinary: function (w) {
for (var i = 0; i < 10; ++i) {
w.WriteBool(isRealObject(this.levels[i]));
if (isRealObject(this.levels[i])) {
this.levels[i].Write_ToBinary(w);
}
}
},
Read_FromBinary: function (r) {
for (var i = 0; i < 10; ++i) {
if (r.GetBool()) {
this.levels[i] = new CParaPr();
this.levels[i].Read_FromBinary(r);
} else {
this.levels[i] = null;
}
}
}
};
var PARRUN_TYPE_NONE = 0;
var PARRUN_TYPE_RUN = 1;
var PARRUN_TYPE_FLD = 2;
var PARRUN_TYPE_BR = 3;
function GenerateDefaultTheme(presentation) {
return ExecuteNoHistory(function () {
var theme = new CTheme();
theme.presentation = presentation;
theme.setFontScheme(new FontScheme());
theme.themeElements.fontScheme.setMajorFont(new FontCollection(theme.themeElements.fontScheme));
theme.themeElements.fontScheme.setMinorFont(new FontCollection(theme.themeElements.fontScheme));
theme.themeElements.fontScheme.majorFont.setLatin("Arial");
theme.themeElements.fontScheme.minorFont.setLatin("Arial");
var scheme = theme.themeElements.clrScheme;
scheme.colors[8] = CreateUniColorRGB(0, 0, 0);
scheme.colors[12] = CreateUniColorRGB(255, 255, 255);
scheme.colors[9] = CreateUniColorRGB(31, 73, 125);
scheme.colors[13] = CreateUniColorRGB(238, 236, 225);
scheme.colors[0] = CreateUniColorRGB(79, 129, 189);
scheme.colors[1] = CreateUniColorRGB(192, 80, 77);
scheme.colors[2] = CreateUniColorRGB(155, 187, 89);
scheme.colors[3] = CreateUniColorRGB(128, 100, 162);
scheme.colors[4] = CreateUniColorRGB(75, 172, 198);
scheme.colors[5] = CreateUniColorRGB(247, 150, 70);
scheme.colors[11] = CreateUniColorRGB(0, 0, 255);
scheme.colors[10] = CreateUniColorRGB(128, 0, 128);
var brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(new CSchemeColor());
brush.fill.color.color.setId(phClr);
theme.themeElements.fmtScheme.fillStyleLst.push(brush);
brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(CreateUniColorRGB(0, 0, 0));
theme.themeElements.fmtScheme.fillStyleLst.push(brush);
brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(CreateUniColorRGB(0, 0, 0));
theme.themeElements.fmtScheme.fillStyleLst.push(brush);
brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(new CSchemeColor());
brush.fill.color.color.setId(phClr);
theme.themeElements.fmtScheme.bgFillStyleLst.push(brush);
brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(CreateUniColorRGB(0, 0, 0));
theme.themeElements.fmtScheme.bgFillStyleLst.push(brush);
brush = new CUniFill();
brush.setFill(new CSolidFill());
brush.fill.setColor(new CUniColor());
brush.fill.color.setColor(CreateUniColorRGB(0, 0, 0));
theme.themeElements.fmtScheme.bgFillStyleLst.push(brush);
var pen = new CLn();
pen.setW(9525);
pen.setFill(new CUniFill());
pen.Fill.setFill(new CSolidFill());
pen.Fill.fill.setColor(new CUniColor());
pen.Fill.fill.color.setColor(new CSchemeColor());
pen.Fill.fill.color.color.setId(phClr);
pen.Fill.fill.color.setMods(new CColorModifiers());
var mod = new CColorMod();
mod.setName("shade");
mod.setVal(95000);
pen.Fill.fill.color.Mods.addMod(mod);
mod = new CColorMod();
mod.setName("satMod");
mod.setVal(105000);
pen.Fill.fill.color.Mods.addMod(mod);
theme.themeElements.fmtScheme.lnStyleLst.push(pen);
pen = new CLn();
pen.setW(25400);
pen.setFill(new CUniFill());
pen.Fill.setFill(new CSolidFill());
pen.Fill.fill.setColor(new CUniColor());
pen.Fill.fill.color.setColor(new CSchemeColor());
pen.Fill.fill.color.color.setId(phClr);
theme.themeElements.fmtScheme.lnStyleLst.push(pen);
pen = new CLn();
pen.setW(38100);
pen.setFill(new CUniFill());
pen.Fill.setFill(new CSolidFill());
pen.Fill.fill.setColor(new CUniColor());
pen.Fill.fill.color.setColor(new CSchemeColor());
pen.Fill.fill.color.color.setId(phClr);
theme.themeElements.fmtScheme.lnStyleLst.push(pen);
theme.extraClrSchemeLst = [];
return theme;
},
this, []);
}
function GenerateDefaultMasterSlide(theme) {
var master = new MasterSlide(theme.presentation, theme);
master.Theme = theme;
master.sldLayoutLst[0] = GenerateDefaultSlideLayout(master);
return master;
}
function GenerateDefaultSlideLayout(master) {
var layout = new SlideLayout(master);
layout.Theme = master.Theme;
return layout;
}
function GenerateDefaultSlide(layout) {
var slide = new Slide(layout.Master.presentation, layout, 0);
slide.Master = layout.Master;
slide.Theme = layout.Master.Theme;
return slide;
}
function CreateDefaultTextRectStyle() {
var style = new CShapeStyle();
style.setLnRef(new StyleRef());
style.lnRef.setIdx(0);
var unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
var mod = new CColorMod();
mod.setName("shade");
mod.setVal(50000);
unicolor.setMods(new CColorModifiers());
unicolor.Mods.addMod(mod);
style.lnRef.setColor(unicolor);
style.setFillRef(new StyleRef());
style.fillRef.setIdx(0);
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
style.fillRef.setColor(unicolor);
style.setEffectRef(new StyleRef());
style.effectRef.setIdx(0);
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(g_clr_accent1);
style.setFontRef(new FontRef());
style.fontRef.setIdx(fntStyleInd_minor);
unicolor = new CUniColor();
unicolor.setColor(new CSchemeColor());
unicolor.color.setId(8);
style.fontRef.setColor(unicolor);
return style;
}
function GenerateDefaultColorMap() {
var clrMap = new ClrMap();
clrMap.color_map[0] = 0;
clrMap.color_map[1] = 1;
clrMap.color_map[2] = 2;
clrMap.color_map[3] = 3;
clrMap.color_map[4] = 4;
clrMap.color_map[5] = 5;
clrMap.color_map[10] = 10;
clrMap.color_map[11] = 11;
clrMap.color_map[6] = 12;
clrMap.color_map[7] = 13;
clrMap.color_map[15] = 8;
clrMap.color_map[16] = 9;
return clrMap;
}
var DEFAULT_COLOR_MAP = GenerateDefaultColorMap();