Commit 4d88d666 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49653 954022d7-b5bf-4e40-9824-e11837661b57
parent 840a13f9
......@@ -162,6 +162,7 @@ var historyitem_TableCell_Border_Top = 7; // Изменяем верхнюю
var historyitem_TableCell_Border_Bottom = 8; // Изменяем нижнюю границу ячейки
var historyitem_TableCell_VAlign = 9; // Изменяем вертикальное выравнивание ячейки
var historyitem_TableCell_W = 10; // Изменяем ширину ячейки
var historyitem_TableCell_Pr = 11; // Изменяем настройки целиком
// Типы изменений в классе CDocumentContent
var historyitem_DocumentContent_AddItem = 1; // Добавляем элемент в документ
......
......@@ -9652,6 +9652,17 @@ CTable.prototype =
}
},
Set_TableStyle2 : function(StyleId)
{
if ( this.TableStyle != StyleId )
{
History.Add( this, { Type : historyitem_Table_TableStyle, Old : this.TableStyle, New : StyleId } );
this.TableStyle = StyleId;
this.Recalc_CompiledPr();
}
},
Get_TableStyle : function()
{
return this.TableStyle;
......@@ -19692,6 +19703,13 @@ CTableCell.prototype =
}
},
Set_Pr : function(CellPr)
{
History.Add( this, { Type : historyitem_TableCell_Pr, Old : this.Pr, New : RowPr } );
this.Pr = CellPr;
this.Recalc_CompiledPr();
},
Copy_Pr : function(OtherPr, bCopyOnlyVisualProps)
{
if ( true != bCopyOnlyVisualProps )
......@@ -20429,6 +20447,13 @@ CTableCell.prototype =
this.Recalc_CompiledPr();
break;
}
case historyitem_TableCell_Pr:
{
this.Pr = Data.Old;
this.Recalc_CompiledPr();
break;
}
}
},
......@@ -20547,6 +20572,13 @@ CTableCell.prototype =
this.Recalc_CompiledPr();
break;
}
case historyitem_TableCell_Pr:
{
this.Pr = Data.New;
this.Recalc_CompiledPr();
break;
}
}
},
......@@ -20571,6 +20603,7 @@ CTableCell.prototype =
case historyitem_TableCell_Border_Bottom:
case historyitem_TableCell_VAlign:
case historyitem_TableCell_W:
case historyitem_TableCell_Pr:
{
bNeedRecalc = true;
break;
......@@ -20787,6 +20820,13 @@ CTableCell.prototype =
break;
}
case historyitem_TableCell_Pr:
{
// CTableCellPr
Data.New.Write_ToBinary( Writer );
break;
}
}
return Writer;
......@@ -21050,6 +21090,17 @@ CTableCell.prototype =
break;
}
case historyitem_TableCell_Pr:
{
// CTableCellPr
this.Pr = new CTableCellPr();
this.Pr.Read_FromBinary( Reader );
this.Recalc_CompiledPr();
break;
}
}
},
......
......@@ -1010,8 +1010,8 @@ $("#td_formatmodel,#td_info, #td_redo, #td_undo, #td_orient, #td_bold, #td_itali
//editor.WordControl.m_oLogicDocument.Document_CreateFontMap();
Menu_Hyperlink_Add();
//editor.WordControl.m_oLogicDocument.Add_DropCap();
//Menu_Hyperlink_Add();
editor.WordControl.m_oLogicDocument.Add_DropCap();
//editor.WordControl.m_oLogicDocument.Search_Start(String);
break;
......
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