|
hipp
1.0
|
00001 /* 00002 Copyright 2011 Certec, Lund University, Sweden 00003 00004 This file is part of HIPP. 00005 00006 HIPP is free software: you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation, either version 3 of the License, or 00009 (at your option) any later version. 00010 00011 HIPP is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with HIPP. If not, see <http://www.gnu.org/licenses/>. 00018 00019 */ 00020 00021 #ifndef __HIPPELLIPSE_H__ 00022 #define __HIPPELLIPSE_H__ 00023 00024 #include <wx/docview.h> 00025 #include "HippShape.h" 00026 #include <xercesc/util/XMLString.hpp> 00027 #include <iostream> 00028 00029 using namespace xercesc; 00030 using namespace std; 00031 namespace hipp { 00032 00048 class HippEllipse: public HippShape { 00049 public: 00050 HippEllipse(void); 00051 ~HippEllipse(void); 00052 00053 void LoadObject(const xercesc::Attributes& attrs, const XMLCh* const localname=XMLString::transcode("ellipse")); 00054 ostream& SaveObject(ostream& stream); 00055 00056 ShapeType getShapeType(); 00057 00058 const wxRect& getBounds() const; 00059 bool containsPoint(wxPoint p) const; 00060 void OnDraw(Cairo::RefPtr<Cairo::Context> context, bool isHaptic = true) const; 00061 virtual HippEllipse* clone() const; 00062 void move(int diffX, int diffY); 00063 void zoom(int scaleX, int scaleY); 00064 00065 wxPoint getCenter(); 00066 int getXRadius(); 00067 int getYRadius(); 00068 00069 void setCenter(int x, int y); 00070 void setRadius(int rx, int ry); 00071 00072 private: 00073 wxPoint * center; 00074 int radiusX; 00075 int radiusY; 00076 void updateBoundingBox(); 00077 wxRect boundingBox; 00078 }; 00079 } 00080 #endif
1.7.5.1