All Classes Functions Variables
MovableRect.h
1 #ifndef MOVABLERECT_H
2 #define MOVABLERECT_H
3 
4 #include "Systems/RectangleMy.hpp"
5 class wxClientDC;
6 
7 class MovableRect : public RectangleMy
8 {
9  public:
10  MovableRect( const Point & bottomLeft, const Point & topRight );
11  MovableRect( const Point & pos);
12  virtual ~MovableRect();
13  bool Contains( const Point & clickNatural ) const;
14  void Move( const Point & diff );
15  void Draw( wxClientDC & dc, double zoom, const Point & ref ) const;
16 
17 
18  protected:
19  private:
20 };
21 
22 #endif // MOVABLERECT_H