Commit 118ec71c authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

новый сборщик. полная реализация

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59495 954022d7-b5bf-4e40-9824-e11837661b57
parent 99d0df4e
......@@ -408,7 +408,7 @@ function CBinaryFileWriter()
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
this.WriteDocument = function(presentation)
this.WriteDocument2 = function(presentation)
{
this.font_map = {};
this.image_map = {};
......@@ -674,6 +674,11 @@ function CBinaryFileWriter()
// теперь запишем информацию о главных таблицах
this.WriteMainPart();
}
this.WriteDocument = function(presentation)
{
this.WriteDocument2(presentation);
// и скинем все в base64
var ret = "PPTY;v1;" + this.pos + ";";
......
......@@ -5165,7 +5165,7 @@ function asc_ajax(obj){
}
//test
window["asc_docs_api"] = asc_docs_api;
window["asc_docs_api"].prototype["asc_nativeOpenFile"] = function(base64File)
window["asc_docs_api"].prototype["asc_nativeOpenFile"] = function(base64File, version)
{
this.DocumentUrl = "TeamlabNative";
......@@ -5185,7 +5185,15 @@ window["asc_docs_api"].prototype["asc_nativeOpenFile"] = function(base64File)
var _loader = new BinaryPPTYLoader();
_loader.Api = this;
_loader.Load(base64File, this.WordControl.m_oLogicDocument);
if (version === undefined)
{
loader.Load(base64File, this.WordControl.m_oLogicDocument);
}
else
{
loader.Load2(base64File, this.WordControl.m_oLogicDocument);
}
this.LoadedObject = 1;
g_oIdCounter.Set_Load(false);
......@@ -5214,6 +5222,73 @@ window["asc_docs_api"].prototype["asc_nativeApplyChanges"] = function(changes)
CollaborativeEditing.Apply_OtherChanges();
}
window["asc_docs_api"].prototype["asc_nativeApplyChanges2"] = function(data, isFull)
{
// Чтобы заново созданные параграфы не отображались залоченными
g_oIdCounter.Set_Load( true );
var stream = new FT_Stream2(data, data.length);
stream.obj = null;
var Loader = { Reader : stream, Reader2 : null };
var _color = new CDocumentColor( 191, 255, 199 );
// Применяем изменения, пока они есть
var _count = Loader.Reader.GetLong();
//console.log("count:" + _count);
var _pos = 4;
for (var i = 0; i < _count; i++)
{
if (window["NATIVE_EDITOR_ENJINE"] === true && window["native"]["CheckNextChange"])
{
if (!window["native"]["CheckNextChange"]())
break;
}
var _id = Loader.Reader.GetLong();
var _len = Loader.Reader.GetLong();
//console.log("change: [" + _id + ", " + _len + "]");
_pos += 8;
stream.size = _pos + _len;
var Type = Loader.Reader.GetLong();
var Class = null;
if ( historyitem_type_HdrFtr === Type )
{
Class = editor.WordControl.m_oLogicDocument.HdrFtr;
}
else
Class = g_oTableId.Get_ById( "" + _id );
stream.Seek2(_pos);
if ( null != Class )
Class.Load_Changes( Loader.Reader, Loader.Reader2, _color );
_pos += _len;
stream.Seek2(_pos);
stream.size = data.length;
}
if (isFull)
{
CollaborativeEditing.m_aChanges = [];
// У новых элементов выставляем указатели на другие классы
CollaborativeEditing.Apply_LinkData();
// Делаем проверки корректности новых изменений
CollaborativeEditing.Check_MergeData();
CollaborativeEditing.OnEnd_ReadForeignChanges();
}
g_oIdCounter.Set_Load( false );
}
window["asc_docs_api"].prototype["asc_nativeGetFile"] = function()
{
var writer = new CBinaryFileWriter();
......@@ -5221,6 +5296,18 @@ window["asc_docs_api"].prototype["asc_nativeGetFile"] = function()
return writer.WriteDocument(this.WordControl.m_oLogicDocument);
}
window["asc_docs_api"].prototype["asc_nativeGetFileData"] = function()
{
var writer = new CBinaryFileWriter();
this.WordControl.m_oLogicDocument.CalculateComments();
writer.WriteDocument2(this.WordControl.m_oLogicDocument);
var _header = "PPTY;v1;" + writer.pos + ";";
window["native"]["Save_End"](_header, writer.pos);
return writer.ImData.data;
}
window["asc_docs_api"].prototype["asc_nativeCheckPdfRenderer"] = function(_memory1, _memory2)
{
if (true)
......
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