(C++) ShapeWidget

January 25, 2018 · View on GitHub

 

 

 

 

 

(C++) ShapeWidget

 

STLQt
CreatorLubuntu

 

ShapeWidget is a widget class for a Shape.

Technical facts

 

 

 

 

 

 

./CppShapeWidget/CppShapeWidget.pri

 


INCLUDEPATH += \     ../../Classes/CppShapeWidget SOURCES += \     ../../Classes/CppShapeWidget/shapewidget.cpp HEADERS  += \     ../../Classes/CppShapeWidget/shapewidget.h OTHER_FILES += \     ../../Classes/CppShapeWidget/Licence.txt

 

 

 

 

 

./CppShapeWidget/shapewidget.h

 


 

 

 

 

 

./CppShapeWidget/shapewidget.cpp

 


#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Weffc++" #pragma GCC diagnostic ignored "-Wunused-local-typedefs" #include "shapewidget.h" #include <cassert> #include <cmath> #include <boost/numeric/conversion/cast.hpp> #include "shape.h" //#include "trace.h" #pragma GCC diagnostic pop ribi::ShapeWidget::ShapeWidget(   const int n_corners,   const double rotation,   const int x,   const int y,   const int width,   const int height,   const unsigned char red,   const unsigned char green,   const unsigned char blue)   : m_shape(new Shape(n_corners,rotation,red,green,blue)) {   SetGeometry(x,y,width,height); } ribi::ShapeWidget * ribi::ShapeWidget::Clone() const noexcept {   ShapeWidget * const w = new ShapeWidget(     GetShape()->GetNumberOfCorners(),     GetShape()->GetRotation(),     GetLeft(),     GetTop(),     GetWidth(),     GetHeight(),     GetShape()->GetRed(),     GetShape()->GetGreen(),     GetShape()->GetBlue()   );   assert(*w == *this);   return w; } std::string ribi::ShapeWidget::GetVersion() noexcept {   return "2.1"; } std::vector<std::string> ribi::ShapeWidget::GetVersionHistory() noexcept {   return {     "2011-07-13: Version 1.0: initial version",     "2011-07-18: Version 1.1: removed useless member functions",     "2011-08-08: Version 2.0: conformized architecture to MysteryMachineWidget",     "2014-03-28: version 2.1: replaced Rect by Boost.Geometry its box class"   }; } bool ribi::operator==(const ShapeWidget& lhs,const ShapeWidget& rhs) noexcept {   return     //lhs.GetGeometry() ==  rhs.GetGeometry()     //&&     *lhs.GetShape()    == *rhs.GetShape(); }