2018-04-21 21:24:46 +08:00
|
|
|
#include "..\..\e2dshape.h"
|
2018-04-02 23:01:38 +08:00
|
|
|
|
|
|
|
|
e2d::Shape::Shape()
|
2018-05-09 00:34:15 +08:00
|
|
|
: _style(ShapeStyle::SOLID)
|
|
|
|
|
, _fillColor(Color::WHITE)
|
|
|
|
|
, _lineColor(Color::BLUE, 0.5)
|
|
|
|
|
, _strokeWidth(1)
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
e2d::Shape::~Shape()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void e2d::Shape::onRender()
|
|
|
|
|
{
|
2018-04-22 13:15:57 +08:00
|
|
|
auto pBrush = Renderer::getSolidColorBrush();
|
2018-05-09 00:34:15 +08:00
|
|
|
pBrush->SetOpacity(_displayOpacity);
|
2018-04-22 13:15:57 +08:00
|
|
|
|
2018-05-09 00:34:15 +08:00
|
|
|
switch (_style)
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
|
|
|
|
case ShapeStyle::FILL:
|
|
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
pBrush->SetColor(_fillColor.toColorF());
|
2018-04-02 23:01:38 +08:00
|
|
|
this->_renderFill();
|
|
|
|
|
|
2018-05-09 00:34:15 +08:00
|
|
|
pBrush->SetColor(_lineColor.toColorF());
|
2018-04-02 23:01:38 +08:00
|
|
|
this->_renderLine();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ShapeStyle::ROUND:
|
|
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
pBrush->SetColor(_lineColor.toColorF());
|
2018-04-02 23:01:38 +08:00
|
|
|
this->_renderLine();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ShapeStyle::SOLID:
|
|
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
pBrush->SetColor(_fillColor.toColorF());
|
2018-04-02 23:01:38 +08:00
|
|
|
this->_renderFill();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-22 13:15:57 +08:00
|
|
|
e2d::Color e2d::Shape::getFillColor() const
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
return _fillColor;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
2018-04-22 13:15:57 +08:00
|
|
|
e2d::Color e2d::Shape::getLineColor() const
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
return _lineColor;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double e2d::Shape::getStrokeWidth() const
|
|
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
return _strokeWidth;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
2018-04-24 21:22:34 +08:00
|
|
|
e2d::ShapeStyle e2d::Shape::getStyle() const
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
return _style;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
2018-04-22 13:15:57 +08:00
|
|
|
void e2d::Shape::setFillColor(Color fillColor)
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
_fillColor = fillColor;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
2018-04-22 13:15:57 +08:00
|
|
|
void e2d::Shape::setLineColor(Color lineColor)
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
_lineColor = lineColor;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void e2d::Shape::setStrokeWidth(double strokeWidth)
|
|
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
_strokeWidth = float(strokeWidth);
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
2018-04-24 21:22:34 +08:00
|
|
|
void e2d::Shape::setStyle(ShapeStyle style)
|
2018-04-02 23:01:38 +08:00
|
|
|
{
|
2018-05-09 00:34:15 +08:00
|
|
|
_style = style;
|
2018-04-02 23:01:38 +08:00
|
|
|
}
|