Commit 5981f462 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52062 954022d7-b5bf-4e40-9824-e11837661b57
parent 6ec2f3fa
......@@ -1948,6 +1948,22 @@ CGraphicObjects.prototype =
return false;
},
Get_SelectedContent: function(SelectedContent)
{
switch(this.curState.id)
{
case STATES_ID_TEXT_ADD:
case STATES_ID_TEXT_ADD_IN_GROUP:
{
if(this.curState.textObject.Get_SelectedContent)
this.curState.textObject.Get_SelectedContent(SelectedContent);
break;
}
}
},
getCurrentPageAbsolute: function()
{
if(isRealObject(this.majorGraphicObject))
......
......@@ -2172,6 +2172,12 @@ WordShape.prototype =
return this.wrapPolygon;
},
Get_SelectedContent: function(SelectedContent)
{
if(this.textBoxContent)
this.textBoxContent.Get_SelectedContent(SelectedContent);
},
drawAdjustments: function()
{
if(this.spPr.geometry !== null)
......
......@@ -3478,6 +3478,13 @@ function ParaDrawing(W, H, GraphicObj, DrawingDocument, DocumentContent, Parent)
ParaDrawing.prototype =
{
Get_SelectedContent: function(SelectedContent)
{
if(this.GraphicObj && this.GraphicObj.Get_SelectedContent)
{
this.GraphicObj.Get_SelectedContent(SelectedContent);
}
},
Search_GetId : function(bNext, bCurrent)
{
if(isRealObject(this.GraphicObj) && typeof this.GraphicObj.Search_GetId === "function")
......
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