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

Добавил классы TablePart, AutoFilter, SortState, TableColumn, TableStyleInfo,...

Добавил классы TablePart, AutoFilter, SortState, TableColumn, TableStyleInfo, FilterColumn, Filters, Filter, DateGroupItem, CustomFilters, CustomFilter, DynamicFilter, ColorFilter, Top10, SortCondition и переделал открытие на них

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53247 954022d7-b5bf-4e40-9824-e11837661b57
parent 7ccd92ca
...@@ -3510,7 +3510,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3510,7 +3510,7 @@ function Binary_TableReader(stream, ws, Dxfs)
var oThis = this; var oThis = this;
if ( c_oSer_TablePart.Table == type ) if ( c_oSer_TablePart.Table == type )
{ {
var oNewTable = new Object(); var oNewTable = new TablePart();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadTable(t,l, oNewTable); return oThis.ReadTable(t,l, oNewTable);
}); });
...@@ -3536,28 +3536,28 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3536,28 +3536,28 @@ function Binary_TableReader(stream, ws, Dxfs)
oTable.DisplayName = this.stream.GetString2LE(length); oTable.DisplayName = this.stream.GetString2LE(length);
else if ( c_oSer_TablePart.AutoFilter == type ) else if ( c_oSer_TablePart.AutoFilter == type )
{ {
oTable.AutoFilter = new Object(); oTable.AutoFilter = new AutoFilter();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadAutoFilter(t,l, oTable.AutoFilter); return oThis.ReadAutoFilter(t,l, oTable.AutoFilter);
}); });
} }
else if ( c_oSer_TablePart.SortState == type ) else if ( c_oSer_TablePart.SortState == type )
{ {
oTable.SortState = new Object(); oTable.SortState = new SortState();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadSortState(t,l, oTable.SortState); return oThis.ReadSortState(t,l, oTable.SortState);
}); });
} }
else if ( c_oSer_TablePart.TableColumns == type ) else if ( c_oSer_TablePart.TableColumns == type )
{ {
oTable.TableColumns = new Array(); oTable.TableColumns = [];
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadTableColumns(t,l, oTable.TableColumns); return oThis.ReadTableColumns(t,l, oTable.TableColumns);
}); });
} }
else if ( c_oSer_TablePart.TableStyleInfo == type ) else if ( c_oSer_TablePart.TableStyleInfo == type )
{ {
oTable.TableStyleInfo = new Object(); oTable.TableStyleInfo = new TableStyleInfo();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadTableStyleInfo(t,l, oTable.TableStyleInfo); return oThis.ReadTableStyleInfo(t,l, oTable.TableStyleInfo);
}); });
...@@ -3574,14 +3574,14 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3574,14 +3574,14 @@ function Binary_TableReader(stream, ws, Dxfs)
oAutoFilter.Ref = this.stream.GetString2LE(length); oAutoFilter.Ref = this.stream.GetString2LE(length);
else if ( c_oSer_AutoFilter.FilterColumns == type ) else if ( c_oSer_AutoFilter.FilterColumns == type )
{ {
oAutoFilter.FilterColumns = new Array(); oAutoFilter.FilterColumns = [];
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadFilterColumns(t,l, oAutoFilter.FilterColumns); return oThis.ReadFilterColumns(t,l, oAutoFilter.FilterColumns);
}); });
} }
else if ( c_oSer_AutoFilter.SortState == type ) else if ( c_oSer_AutoFilter.SortState == type )
{ {
oAutoFilter.SortState = new Object(); oAutoFilter.SortState = new SortState();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadSortState(t,l, oAutoFilter.SortState); return oThis.ReadSortState(t,l, oAutoFilter.SortState);
}); });
...@@ -3589,14 +3589,14 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3589,14 +3589,14 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadFilterColumns = function(type, length, aFilterColumns) this.ReadFilterColumns = function(type, length, aFilterColumns)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this; var oThis = this;
if ( c_oSer_AutoFilter.FilterColumn == type ) if ( c_oSer_AutoFilter.FilterColumn == type )
{ {
var oFilterColumn = {ColId: null, Filters: null, CustomFiltersObj: null, DynamicFilter: null, ColorFilter: null, Top10: null, ShowButton: true}; var oFilterColumn = new FilterColumn();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadFilterColumn(t,l, oFilterColumn); return oThis.ReadFilterColumn(t,l, oFilterColumn);
}); });
...@@ -3605,7 +3605,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3605,7 +3605,7 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadFilterColumn = function(type, length, oFilterColumn) this.ReadFilterColumn = function(type, length, oFilterColumn)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
...@@ -3614,34 +3614,34 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3614,34 +3614,34 @@ function Binary_TableReader(stream, ws, Dxfs)
oFilterColumn.ColId = this.stream.GetULongLE(); oFilterColumn.ColId = this.stream.GetULongLE();
else if ( c_oSer_FilterColumn.Filters == type ) else if ( c_oSer_FilterColumn.Filters == type )
{ {
oFilterColumn.Filters = {Values: new Array(), Dates: new Array(), Blank: null}; oFilterColumn.Filters = new Filters();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadFilters(t,l, oFilterColumn.Filters); return oThis.ReadFilters(t,l, oFilterColumn.Filters);
}); });
} }
else if ( c_oSer_FilterColumn.CustomFilters == type ) else if ( c_oSer_FilterColumn.CustomFilters == type )
{ {
oFilterColumn.CustomFiltersObj = new Object(); oFilterColumn.CustomFiltersObj = new CustomFilters();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadCustomFilters(t,l, oFilterColumn.CustomFiltersObj); return oThis.ReadCustomFilters(t,l, oFilterColumn.CustomFiltersObj);
}); });
} }
else if ( c_oSer_FilterColumn.DynamicFilter == type ) else if ( c_oSer_FilterColumn.DynamicFilter == type )
{ {
oFilterColumn.DynamicFilter = new Object(); oFilterColumn.DynamicFilter = new DynamicFilter();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadDynamicFilter(t,l, oFilterColumn.DynamicFilter); return oThis.ReadDynamicFilter(t,l, oFilterColumn.DynamicFilter);
}); });
}else if ( c_oSer_FilterColumn.ColorFilter == type ) }else if ( c_oSer_FilterColumn.ColorFilter == type )
{ {
oFilterColumn.ColorFilter = new Object(); oFilterColumn.ColorFilter = new ColorFilter();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadColorFilter(t,l, oFilterColumn.ColorFilter); return oThis.ReadColorFilter(t,l, oFilterColumn.ColorFilter);
}); });
} }
else if ( c_oSer_FilterColumn.Top10 == type ) else if ( c_oSer_FilterColumn.Top10 == type )
{ {
oFilterColumn.Top10 = new Object(); oFilterColumn.Top10 = new Top10();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadTop10(t,l, oFilterColumn.Top10); return oThis.ReadTop10(t,l, oFilterColumn.Top10);
}); });
...@@ -3653,14 +3653,14 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3653,14 +3653,14 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadFilters = function(type, length, oFilters) this.ReadFilters = function(type, length, oFilters)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this; var oThis = this;
if ( c_oSer_FilterColumn.Filter == type ) if ( c_oSer_FilterColumn.Filter == type )
{ {
var oFilterVal = new Object(); var oFilterVal = new Filter();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadFilter(t,l, oFilterVal); return oThis.ReadFilter(t,l, oFilterVal);
}); });
...@@ -3669,7 +3669,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3669,7 +3669,7 @@ function Binary_TableReader(stream, ws, Dxfs)
} }
else if ( c_oSer_FilterColumn.DateGroupItem == type ) else if ( c_oSer_FilterColumn.DateGroupItem == type )
{ {
var oDateGroupItem = new Object(); var oDateGroupItem = new DateGroupItem();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadDateGroupItem(t,l, oDateGroupItem); return oThis.ReadDateGroupItem(t,l, oDateGroupItem);
}); });
...@@ -3680,21 +3680,19 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3680,21 +3680,19 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadFilter = function(type, length, oFilter) this.ReadFilter = function(type, length, oFilter)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_Filter.Val == type ) if ( c_oSer_Filter.Val == type )
oFilter.Val = this.stream.GetString2LE(length); oFilter.Val = this.stream.GetString2LE(length);
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadDateGroupItem = function(type, length, oDateGroupItem) this.ReadDateGroupItem = function(type, length, oDateGroupItem)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_DateGroupItem.DateTimeGrouping == type ) if ( c_oSer_DateGroupItem.DateTimeGrouping == type )
oDateGroupItem.DateTimeGrouping = this.stream.GetUChar(); oDateGroupItem.DateTimeGrouping = this.stream.GetUChar();
else if ( c_oSer_DateGroupItem.Day == type ) else if ( c_oSer_DateGroupItem.Day == type )
...@@ -3712,7 +3710,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3712,7 +3710,7 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadCustomFilters = function(type, length, oCustomFilters) this.ReadCustomFilters = function(type, length, oCustomFilters)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
...@@ -3721,22 +3719,22 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3721,22 +3719,22 @@ function Binary_TableReader(stream, ws, Dxfs)
oCustomFilters.And = this.stream.GetBool(); oCustomFilters.And = this.stream.GetBool();
else if ( c_oSer_CustomFilters.CustomFilters == type ) else if ( c_oSer_CustomFilters.CustomFilters == type )
{ {
oCustomFilters.CustomFilters = new Array(); oCustomFilters.CustomFilters = [];
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadCustomFiltersItems(t,l, oCustomFilters.CustomFilters); return oThis.ReadCustomFiltersItems(t,l, oCustomFilters.CustomFilters);
}); });
} }
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadCustomFiltersItems = function(type, length, aCustomFilters) this.ReadCustomFiltersItems = function(type, length, aCustomFilters)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this; var oThis = this;
if ( c_oSer_CustomFilters.CustomFilter == type ) if ( c_oSer_CustomFilters.CustomFilter == type )
{ {
var oCustomFiltersItem = new Object(); var oCustomFiltersItem = new CustomFilter();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadCustomFiltersItem(t,l, oCustomFiltersItem); return oThis.ReadCustomFiltersItem(t,l, oCustomFiltersItem);
}); });
...@@ -3745,11 +3743,10 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3745,11 +3743,10 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadCustomFiltersItem = function(type, length, oCustomFiltersItem) this.ReadCustomFiltersItem = function(type, length, oCustomFiltersItem)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_CustomFilters.Operator == type ) if ( c_oSer_CustomFilters.Operator == type )
oCustomFiltersItem.Operator = this.stream.GetUChar(); oCustomFiltersItem.Operator = this.stream.GetUChar();
else if ( c_oSer_CustomFilters.Val == type ) else if ( c_oSer_CustomFilters.Val == type )
...@@ -3757,11 +3754,10 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3757,11 +3754,10 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadDynamicFilter = function(type, length, oDynamicFilter) this.ReadDynamicFilter = function(type, length, oDynamicFilter)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_DynamicFilter.Type == type ) if ( c_oSer_DynamicFilter.Type == type )
oDynamicFilter.Type = this.stream.GetUChar(); oDynamicFilter.Type = this.stream.GetUChar();
else if ( c_oSer_DynamicFilter.Val == type ) else if ( c_oSer_DynamicFilter.Val == type )
...@@ -3771,27 +3767,24 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3771,27 +3767,24 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadColorFilter = function(type, length, oColorFilter) this.ReadColorFilter = function(type, length, oColorFilter)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_ColorFilter.CellColor == type ) if ( c_oSer_ColorFilter.CellColor == type )
oColorFilter.CellColor = this.stream.GetBool(); oColorFilter.CellColor = this.stream.GetBool();
else if ( c_oSer_ColorFilter.DxfId == type ) else if ( c_oSer_ColorFilter.DxfId == type )
{ {
var DxfId = this.stream.GetULongLE(); var DxfId = this.stream.GetULongLE();
var dxf = this.Dxfs[DxfId]; oColorFilter.dxf = this.Dxfs[DxfId];
oColorFilter.dxf = dxf;
} }
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadTop10 = function(type, length, oTop10) this.ReadTop10 = function(type, length, oTop10)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_Top10.FilterVal == type ) if ( c_oSer_Top10.FilterVal == type )
oTop10.FilterVal = this.stream.GetDoubleLE(); oTop10.FilterVal = this.stream.GetDoubleLE();
else if ( c_oSer_Top10.Percent == type ) else if ( c_oSer_Top10.Percent == type )
...@@ -3803,11 +3796,10 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3803,11 +3796,10 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadSortConditionContent = function(type, length, oSortCondition) this.ReadSortConditionContent = function(type, length, oSortCondition)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_SortState.ConditionRef == type ) if ( c_oSer_SortState.ConditionRef == type )
oSortCondition.Ref = this.stream.GetString2LE(length); oSortCondition.Ref = this.stream.GetString2LE(length);
else if ( c_oSer_SortState.ConditionSortBy == type ) else if ( c_oSer_SortState.ConditionSortBy == type )
...@@ -3817,20 +3809,19 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3817,20 +3809,19 @@ function Binary_TableReader(stream, ws, Dxfs)
else if ( c_oSer_SortState.ConditionDxfId == type ) else if ( c_oSer_SortState.ConditionDxfId == type )
{ {
var DxfId = this.stream.GetULongLE(); var DxfId = this.stream.GetULongLE();
var dxf = this.Dxfs[DxfId]; oSortCondition.dxf = this.Dxfs[DxfId];
oSortCondition.dxf = dxf;
} }
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadSortCondition = function(type, length, aSortConditions) this.ReadSortCondition = function(type, length, aSortConditions)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this; var oThis = this;
if ( c_oSer_SortState.SortCondition == type ) if ( c_oSer_SortState.SortCondition == type )
{ {
var oSortCondition = new Object(); var oSortCondition = new SortCondition();
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
return oThis.ReadSortConditionContent(t,l, oSortCondition); return oThis.ReadSortConditionContent(t,l, oSortCondition);
}); });
...@@ -3839,7 +3830,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3839,7 +3830,7 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadSortState = function(type, length, oSortState) this.ReadSortState = function(type, length, oSortState)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
...@@ -3850,7 +3841,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3850,7 +3841,7 @@ function Binary_TableReader(stream, ws, Dxfs)
oSortState.CaseSensitive = this.stream.GetBool(); oSortState.CaseSensitive = this.stream.GetBool();
else if ( c_oSer_SortState.SortConditions == type ) else if ( c_oSer_SortState.SortConditions == type )
{ {
oSortState.SortConditions = new Array(); oSortState.SortConditions = [];
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadSortCondition(t,l, oSortState.SortConditions); return oThis.ReadSortCondition(t,l, oSortState.SortConditions);
}); });
...@@ -3858,11 +3849,10 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3858,11 +3849,10 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadTableColumn = function(type, length, oTableColumn) this.ReadTableColumn = function(type, length, oTableColumn)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_TableColumns.Name == type ) if ( c_oSer_TableColumns.Name == type )
oTableColumn.Name = this.stream.GetString2LE(length); oTableColumn.Name = this.stream.GetString2LE(length);
else if ( c_oSer_TableColumns.TotalsRowLabel == type ) else if ( c_oSer_TableColumns.TotalsRowLabel == type )
...@@ -3874,22 +3864,21 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3874,22 +3864,21 @@ function Binary_TableReader(stream, ws, Dxfs)
else if ( c_oSer_TableColumns.DataDxfId == type ) else if ( c_oSer_TableColumns.DataDxfId == type )
{ {
var DxfId = this.stream.GetULongLE(); var DxfId = this.stream.GetULongLE();
var dxf = this.Dxfs[DxfId]; oTableColumn.dxf = this.Dxfs[DxfId];
oTableColumn.dxf = dxf;
} }
else if ( c_oSer_TableColumns.CalculatedColumnFormula == type ) else if ( c_oSer_TableColumns.CalculatedColumnFormula == type )
oTableColumn.CalculatedColumnFormula = this.stream.GetString2LE(length); oTableColumn.CalculatedColumnFormula = this.stream.GetString2LE(length);
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadTableColumns = function(type, length, aTableColumns) this.ReadTableColumns = function(type, length, aTableColumns)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this; var oThis = this;
if ( c_oSer_TableColumns.TableColumn == type ) if ( c_oSer_TableColumns.TableColumn == type )
{ {
var oTableColumn = new Object(); var oTableColumn = new TableColumn();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oThis.ReadTableColumn(t,l, oTableColumn); return oThis.ReadTableColumn(t,l, oTableColumn);
}); });
...@@ -3898,11 +3887,10 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3898,11 +3887,10 @@ function Binary_TableReader(stream, ws, Dxfs)
else else
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
} };
this.ReadTableStyleInfo = function(type, length, oTableStyleInfo) this.ReadTableStyleInfo = function(type, length, oTableStyleInfo)
{ {
var res = c_oSerConstants.ReadOk; var res = c_oSerConstants.ReadOk;
var oThis = this;
if ( c_oSer_TableStyleInfo.Name == type ) if ( c_oSer_TableStyleInfo.Name == type )
oTableStyleInfo.Name = this.stream.GetString2LE(length); oTableStyleInfo.Name = this.stream.GetString2LE(length);
else if ( c_oSer_TableStyleInfo.ShowColumnStripes == type ) else if ( c_oSer_TableStyleInfo.ShowColumnStripes == type )
...@@ -3917,7 +3905,7 @@ function Binary_TableReader(stream, ws, Dxfs) ...@@ -3917,7 +3905,7 @@ function Binary_TableReader(stream, ws, Dxfs)
res = c_oSerConstants.ReadUnknown; res = c_oSerConstants.ReadUnknown;
return res; return res;
}; };
}; }
/** @constructor */ /** @constructor */
function Binary_SharedStringTableReader(stream, wb, aSharedStrings) function Binary_SharedStringTableReader(stream, wb, aSharedStrings)
{ {
...@@ -5219,14 +5207,14 @@ function Binary_WorksheetTableReader(stream, wb, aSharedStrings, aCellXfs, Dxfs, ...@@ -5219,14 +5207,14 @@ function Binary_WorksheetTableReader(stream, wb, aSharedStrings, aCellXfs, Dxfs,
else if ( c_oSerWorksheetsTypes.Autofilter == type ) else if ( c_oSerWorksheetsTypes.Autofilter == type )
{ {
var oBinary_TableReader = new Binary_TableReader(this.stream, oWorksheet, this.Dxfs); var oBinary_TableReader = new Binary_TableReader(this.stream, oWorksheet, this.Dxfs);
oWorksheet.AutoFilter = new Object(); oWorksheet.AutoFilter = new AutoFilter();
res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
return oBinary_TableReader.ReadAutoFilter(t,l, oWorksheet.AutoFilter); return oBinary_TableReader.ReadAutoFilter(t,l, oWorksheet.AutoFilter);
}); });
} }
else if ( c_oSerWorksheetsTypes.TableParts == type ) else if ( c_oSerWorksheetsTypes.TableParts == type )
{ {
oWorksheet.TableParts = new Array(); oWorksheet.TableParts = [];
var oBinary_TableReader = new Binary_TableReader(this.stream, oWorksheet, this.Dxfs); var oBinary_TableReader = new Binary_TableReader(this.stream, oWorksheet, this.Dxfs);
oBinary_TableReader.Read(length, oWorksheet.TableParts); oBinary_TableReader.Read(length, oWorksheet.TableParts);
} }
......
...@@ -3903,3 +3903,110 @@ RangeDataManager.prototype = { ...@@ -3903,3 +3903,110 @@ RangeDataManager.prototype = {
this.oDependenceManager = oDependenceManager; this.oDependenceManager = oDependenceManager;
} }
}; };
// For Auto Filters
/** @constructor */
function TablePart() {
this.Ref = null;
this.HeaderRowCount = null;
this.TotalsRowCount = null;
this.DisplayName = null;
this.AutoFilter = null;
this.SortState = null;
this.TableColumns = null;
this.TableStyleInfo = null;
}
/** @constructor */
function AutoFilter() {
this.Ref = null;
this.FilterColumns = null;
this.SortState = null;
}
/** @constructor */
function SortState() {
this.Ref = null;
this.CaseSensitive = null;
this.SortConditions = null;
}
/** @constructor */
function TableColumn() {
this.Name = null;
this.TotalsRowLabel = null;
this.TotalsRowFunction = null;
this.TotalsRowFormula = null;
this.dxf = null;
this.CalculatedColumnFormula = null;
}
/** @constructor */
function TableStyleInfo() {
this.Name = null;
this.ShowColumnStripes = null;
this.ShowRowStripes = null;
this.ShowFirstColumn = null;
this.ShowLastColumn = null;
}
/** @constructor */
function FilterColumn() {
this.ColId = null;
this.Filters = null;
this.CustomFiltersObj = null;
this.DynamicFilter = null;
this.ColorFilter = null;
this.Top10 = null;
this.ShowButton = true;
}
/** @constructor */
function Filters() {
this.Values = [];
this.Dates = [];
this.Blank = null;
}
/** @constructor */
function Filter() {
this.Val = null;
}
/** @constructor */
function DateGroupItem() {
this.DateTimeGrouping = null;
this.Day = null;
this.Hour = null;
this.Minute = null;
this.Month = null;
this.Second = null;
this.Year = null;
}
/** @constructor */
function CustomFilters() {
this.And = null;
this.CustomFilters = null;
}
/** @constructor */
function CustomFilter() {
this.Operator = null;
this.Val = null;
}
/** @constructor */
function DynamicFilter() {
this.Type = null;
this.Val = null;
this.MaxVal = null;
}
/** @constructor */
function ColorFilter() {
this.CellColor = null;
this.dxf = null;
}
/** @constructor */
function Top10() {
this.FilterVal = null;
this.Percent = null;
this.Top = null;
this.Val = null;
}
/** @constructor */
function SortCondition() {
this.Ref = null;
this.ConditionSortBy = null;
this.ConditionDescending = null;
this.dxf = null;
}
\ No newline at end of file
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