Commit 83c51d45 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49395 954022d7-b5bf-4e40-9824-e11837661b57
parent 458f692e
......@@ -4241,6 +4241,11 @@ function BinaryPPTYLoader()
_table = this.ReadTable(_xfrm, _graphic_frame);
break;
}
case 3:
{
// TODO: chartData
break;
}
default:
{
break;
......
......@@ -948,6 +948,7 @@ function CBinaryFileWriter()
{
oThis.WriteTable(spTree[i]);
}
// TODO: WriteChart
oThis.EndRecord();
}
......@@ -2068,6 +2069,20 @@ function CBinaryFileWriter()
oThis.EndRecord();
}
this.WriteChart = function(grObj)
{
oThis.StartRecord(5);
oThis.WriteUChar(g_nodeAttributeStart);
oThis.WriteUChar(g_nodeAttributeEnd);
oThis.WriteRecord1(0, grObj.nvGraphicFramePr, oThis.WriteUniNvPr);
oThis.WriteRecord2(1, grObj.getXfrm(), oThis.WriteXfrm);
oThis.WriteRecord2(3, grObj.graphicObject, oThis.WriteChart2);
oThis.EndRecord();
}
this.WriteTable2 = function(table)
{
var obj = new Object();
......@@ -2364,6 +2379,7 @@ function CBinaryFileWriter()
{
oThis.WriteTable(spTree[i]);
}
// TODO: WriteChart
oThis.EndRecord(0);
}
......
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