orca-robotics INTRODUCTION Overview Download and Install Documentation REPOSITORY Interfaces Drivers Libraries Utilities Software Map DEVELOPER Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
guielement2d.h00001 #ifndef HYDRO_GUIELEMENT2D_H 00002 #define HYDRO_GUIELEMENT2D_H 00003 00004 #include <hydroqguielementutil/iguielement.h> 00005 00006 class QPainter; 00007 00008 namespace hydroqguielementutil 00009 { 00010 00014 class GuiElement2d : public IGuiElement 00015 { 00016 00017 public: 00018 00019 virtual ~GuiElement2d() {}; 00020 00022 virtual void paint( QPainter *p, int z ) {}; 00023 00025 virtual bool paintThisLayer( int z ) const=0; 00026 00028 virtual QPointF pos() const { return QPointF(-9999.9999, -9999.9999); }; 00029 00030 private: 00031 00032 00033 }; 00034 00035 } 00036 00037 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)