/* * Copyright (c) 2012 Mateusz Piękos * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ /* * Copyright (c) 2015-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class SWIFTEN_API WhiteboardPolygonElement : public WhiteboardElement { typedef std::pair Point; public: typedef std::shared_ptr ref; public: WhiteboardPolygonElement() { } const std::vector& getPoints() const { return points_; } void setPoints(const std::vector& points) { points_ = points; } const WhiteboardColor& getPenColor() const { return penColor_; } void setPenColor(const WhiteboardColor& color) { penColor_ = color; } const WhiteboardColor& getBrushColor() const { return brushColor_; } void setBrushColor(const WhiteboardColor& color) { brushColor_ = color; } int getPenWidth() const { return penWidth_; } void setPenWidth(const int penWidth) { penWidth_ = penWidth; } void accept(WhiteboardElementVisitor& visitor) { visitor.visit(*this); } private: std::vector points_; WhiteboardColor penColor_; WhiteboardColor brushColor_; int penWidth_ = 0; }; }