Commit c57f3d11 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

CCellStyles и CCellStyle перевел на add prototype вместо create new

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57829 954022d7-b5bf-4e40-9824-e11837661b57
parent 83d84507
......@@ -1296,42 +1296,41 @@ function CCellStyles() {
// ToDo нужно все компоновать в общий список стилей (для того, чтобы не было проблем с добавлением стилей и отсутствия имени стиля)
this.AllStyles = {};
}
CCellStyles.prototype = {
generateFontMap: function (oFontMap) {
CCellStyles.prototype.generateFontMap = function (oFontMap) {
this._generateFontMap(oFontMap, this.DefaultStyles);
this._generateFontMap(oFontMap, this.CustomStyles);
},
_generateFontMap: function (oFontMap, aStyles) {
};
CCellStyles.prototype._generateFontMap = function (oFontMap, aStyles) {
var i, length, oStyle;
for (i = 0, length = aStyles.length; i < length; ++i) {
oStyle = aStyles[i];
if (null != oStyle.xfs && null != oStyle.xfs.font && null != oStyle.xfs.font.fn)
oFontMap[oStyle.xfs.font.fn] = 1;
}
},
/**
};
/**
* Возвращает колличество стилей без учета скрытых
*/
getDefaultStylesCount: function () {
CCellStyles.prototype.getDefaultStylesCount = function () {
var nCount = this.DefaultStyles.length;
for (var i = 0, length = nCount; i < length; ++i) {
if (this.DefaultStyles[i].Hidden)
--nCount;
}
return nCount;
},
/**
};
/**
* Возвращает колличество стилей без учета скрытых и стандартных
*/
getCustomStylesCount: function () {
CCellStyles.prototype.getCustomStylesCount = function () {
var nCount = this.CustomStyles.length;
for (var i = 0, length = nCount; i < length; ++i) {
if (this.CustomStyles[i].Hidden || null != this.CustomStyles[i].BuiltinId)
--nCount;
}
return nCount;
},
getStyleByXfId: function (oXfId) {
};
CCellStyles.prototype.getStyleByXfId = function (oXfId) {
for (var i = 0, length = this.CustomStyles.length; i < length; ++i) {
if (oXfId === this.CustomStyles[i].XfId) {
return this.CustomStyles[i];
......@@ -1339,8 +1338,8 @@ CCellStyles.prototype = {
}
return null;
},
getStyleNameByXfId: function (oXfId) {
};
CCellStyles.prototype.getStyleNameByXfId = function (oXfId) {
var styleName = null;
if (null === oXfId)
return styleName;
......@@ -1362,8 +1361,8 @@ CCellStyles.prototype = {
}
return styleName;
},
getDefaultStyleNameByBuiltinId: function (oBuiltinId) {
};
CCellStyles.prototype.getDefaultStyleNameByBuiltinId = function (oBuiltinId) {
var style = null;
for (var i = 0, length = this.DefaultStyles.length; i < length; ++i) {
style = this.DefaultStyles[i];
......@@ -1371,8 +1370,8 @@ CCellStyles.prototype = {
return style.Name;
}
return null;
},
_prepareCellStyle: function (name) {
};
CCellStyles.prototype._prepareCellStyle = function (name) {
var defaultStyle = null;
var style = null;
var i, length;
......@@ -1413,7 +1412,6 @@ CCellStyles.prototype = {
return this.CustomStyles[i].XfId;
}
return g_oDefaultXfId;
}
};
/** @constructor */
function CCellStyle() {
......@@ -1431,8 +1429,7 @@ function CCellStyle() {
this.ApplyFont = true;
this.ApplyNumberFormat = true;
}
CCellStyle.prototype = {
clone: function () {
CCellStyle.prototype.clone = function () {
var oNewStyle = new CCellStyle();
oNewStyle.BuiltinId = this.BuiltinId;
oNewStyle.CustomBuiltin = this.CustomBuiltin;
......@@ -1447,34 +1444,33 @@ CCellStyle.prototype = {
oNewStyle.xfs = this.xfs.clone();
return oNewStyle;
},
getFill: function () {
};
CCellStyle.prototype.getFill = function () {
if (null != this.xfs && null != this.xfs.fill)
return this.xfs.fill.bg;
return g_oDefaultFill.bg;
},
getFontColor: function () {
};
CCellStyle.prototype.getFontColor = function () {
if (null != this.xfs && null != this.xfs.font)
return this.xfs.font.c;
return g_oDefaultFont.c;
},
getFont: function () {
};
CCellStyle.prototype.getFont = function () {
if (null != this.xfs && null != this.xfs.font)
return this.xfs.font;
return null;
},
getBorder: function () {
};
CCellStyle.prototype.getBorder = function () {
if (null != this.xfs && null != this.xfs.border)
return this.xfs.border;
return g_oDefaultBorder;
},
getNumFormatStr: function () {
};
CCellStyle.prototype.getNumFormatStr = function () {
if(null != this.xfs && null != this.xfs.num)
return this.xfs.num.f;
return g_oDefaultNum.f;
}
};
/** @constructor */
function StyleManager(){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment