Commit 79ce52ed authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49821 954022d7-b5bf-4e40-9824-e11837661b57
parent ab49fe22
/**
* Created with JetBrains WebStorm.
* User: Sergey.Luzyanin
* Date: 6/26/13
* Time: 6:19 PM
* To change this template use File | Settings | File Templates.
*/
/**
* Created with JetBrains WebStorm.
* User: Sergey.Luzyanin
* Date: 6/26/13
* Time: 6:24 PM
* To change this template use File | Settings | File Templates.
*/
function CImage(drawingBase)
{
this.drawingBase = drawingBase;
this.blipFill = new CBlipFill();
this.spPr = new CSpPr();
this.nvSpPr = null;
this.style = null;
this.x = null;
this.y = null;
this.x = null;
this.y = null;
this.extX = null;
this.extY = null;
this.rot = null;
this.flipH = null;
this.flipV = null;
this.transform = null;
this.invertTransform = null;
this.cursorTypes = [];
this.brush = null;
this.pen = null;
this.selected = false;
}
CImage.prototype =
{
};
\ No newline at end of file
/**
* Created with JetBrains WebStorm.
* User: Sergey.Luzyanin
* Date: 6/26/13
* Time: 6:09 PM
* To change this template use File | Settings | File Templates.
*/
function CShape(drawingBase)
{
this.drawingBase = drawingBase;
this.nvSpPr = null;
this.spPr = new CSpPr();
this.style = null;
this.txBody = null;
this.x = null;
this.y = null;
this.x = null;
this.y = null;
this.extX = null;
this.extY = null;
this.rot = null;
this.flipH = null;
this.flipV = null;
this.transform = null;
this.invertTransform = null;
this.transformText = null;
this.invertTransformText = null;
this.cursorTypes = [];
this.brush = null;
this.pen = null;
this.selected = false;
}
CShape.prototype =
{
initDefault: function()
{},
initDefaultTextRect: function()
{},
recalculateBrush: function()
{}
};
\ 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