DocumentServer/OfficeWeb/sdk/Common/Drawings/TrackObjects/PolyLine.js
2015-04-28 17:59:00 +03:00

200 lines
7.6 KiB
JavaScript

/*
* (c) Copyright Ascensio System SIA 2010-2015
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
* EU, LV-1021.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
"use strict";
function PolyLine(drawingObjects, theme, master, layout, slide, pageIndex) {
ExecuteNoHistory(function () {
this.drawingObjects = drawingObjects;
this.arrPoint = [];
this.Matrix = new CMatrixL();
this.TransformMatrix = new CMatrixL();
this.pageIndex = pageIndex;
this.style = CreateDefaultShapeStyle();
var style = this.style;
style.fillRef.Color.Calculate(theme, slide, layout, master, {
R: 0,
G: 0,
B: 0,
A: 255
});
var RGBA = style.fillRef.Color.RGBA;
var pen = theme.getLnStyle(style.lnRef.idx, style.lnRef.Color);
style.lnRef.Color.Calculate(theme, slide, layout, master);
RGBA = style.lnRef.Color.RGBA;
if (pen.Fill) {
pen.Fill.calculate(theme, slide, layout, master, RGBA);
}
this.pen = pen;
this.polylineForDrawer = new PolylineForDrawer(this);
},
this, []);
this.Draw = function (graphics) {
graphics.SetIntegerGrid(false);
graphics.transform3(this.Matrix);
var shape_drawer = new CShapeDrawer();
shape_drawer.fromShape(this, graphics);
shape_drawer.draw(this);
};
this.draw = function (g) {
if (isRealNumber(this.pageIndex) && g.SetCurrentPage) {
g.SetCurrentPage(this.pageIndex);
}
this.polylineForDrawer.Draw(g);
return;
if (this.arrPoint.length < 2) {
return;
}
g._m(this.arrPoint[0].x, this.arrPoint[0].y);
for (var i = 1; i < this.arrPoint.length; ++i) {
g._l(this.arrPoint[i].x, this.arrPoint[i].y);
}
g.ds();
};
this.getBounds = function () {
var boundsChecker = new CSlideBoundsChecker();
this.draw(boundsChecker);
boundsChecker.Bounds.posX = boundsChecker.Bounds.min_x;
boundsChecker.Bounds.posY = boundsChecker.Bounds.min_y;
boundsChecker.Bounds.extX = boundsChecker.Bounds.max_x - boundsChecker.Bounds.min_x;
boundsChecker.Bounds.extY = boundsChecker.Bounds.max_y - boundsChecker.Bounds.min_y;
return boundsChecker.Bounds;
};
this.getShape = function (bWord, drawingDocument, drawingObjects) {
var xMax = this.arrPoint[0].x,
yMax = this.arrPoint[0].y,
xMin = xMax,
yMin = yMax;
var i;
var bClosed = false;
var min_dist;
if (drawingObjects) {
min_dist = drawingObjects.convertPixToMM(3);
} else {
min_dist = editor.WordControl.m_oDrawingDocument.GetMMPerDot(3);
}
if (this.arrPoint.length > 2) {
var dx = this.arrPoint[0].x - this.arrPoint[this.arrPoint.length - 1].x;
var dy = this.arrPoint[0].y - this.arrPoint[this.arrPoint.length - 1].y;
if (Math.sqrt(dx * dx + dy * dy) < min_dist) {
bClosed = true;
}
}
var _n = bClosed ? this.arrPoint.length - 1 : this.arrPoint.length;
for (i = 1; i < _n; ++i) {
if (this.arrPoint[i].x > xMax) {
xMax = this.arrPoint[i].x;
}
if (this.arrPoint[i].y > yMax) {
yMax = this.arrPoint[i].y;
}
if (this.arrPoint[i].x < xMin) {
xMin = this.arrPoint[i].x;
}
if (this.arrPoint[i].y < yMin) {
yMin = this.arrPoint[i].y;
}
}
var shape = new CShape();
shape.setSpPr(new CSpPr());
shape.spPr.setParent(shape);
shape.spPr.setXfrm(new CXfrm());
shape.spPr.xfrm.setParent(shape.spPr);
if (!bWord) {
shape.spPr.xfrm.setOffX(xMin);
shape.spPr.xfrm.setOffY(yMin);
} else {
shape.setWordShape(true);
shape.spPr.xfrm.setOffX(0);
shape.spPr.xfrm.setOffY(0);
}
shape.spPr.xfrm.setExtX(xMax - xMin);
shape.spPr.xfrm.setExtY(yMax - yMin);
shape.setStyle(CreateDefaultShapeStyle());
var geometry = new Geometry();
var w = xMax - xMin,
h = yMax - yMin;
var kw, kh, pathW, pathH;
if (w > 0) {
pathW = 43200;
kw = 43200 / w;
} else {
pathW = 0;
kw = 0;
}
if (h > 0) {
pathH = 43200;
kh = 43200 / h;
} else {
pathH = 0;
kh = 0;
}
geometry.AddPathCommand(0, undefined, bClosed ? "norm" : "none", undefined, pathW, pathH);
geometry.AddRect("l", "t", "r", "b");
geometry.AddPathCommand(1, (((this.arrPoint[0].x - xMin) * kw) >> 0) + "", (((this.arrPoint[0].y - yMin) * kh) >> 0) + "");
for (i = 1; i < _n; ++i) {
geometry.AddPathCommand(2, (((this.arrPoint[i].x - xMin) * kw) >> 0) + "", (((this.arrPoint[i].y - yMin) * kh) >> 0) + "");
}
if (bClosed) {
geometry.AddPathCommand(6);
}
shape.spPr.setGeometry(geometry);
shape.setBDeleted(false);
shape.recalculate();
shape.x = xMin;
shape.y = yMin;
return shape;
};
}
function PolylineForDrawer(polyline) {
this.polyline = polyline;
this.pen = polyline.pen;
this.brush = polyline.brush;
this.TransformMatrix = polyline.TransformMatrix;
this.Matrix = polyline.Matrix;
this.Draw = function (graphics) {
graphics.SetIntegerGrid(false);
graphics.transform3(this.Matrix);
var shape_drawer = new CShapeDrawer();
shape_drawer.fromShape(this, graphics);
shape_drawer.draw(this);
};
this.draw = function (g) {
g._e();
if (this.polyline.arrPoint.length < 2) {
return;
}
g._m(this.polyline.arrPoint[0].x, this.polyline.arrPoint[0].y);
for (var i = 1; i < this.polyline.arrPoint.length; ++i) {
g._l(this.polyline.arrPoint[i].x, this.polyline.arrPoint[i].y);
}
g.ds();
};
}