degate 0.1.1
Rectangle.h
Go to the documentation of this file.
00001 /* -*-c++-*-
00002 
00003  This file is part of the IC reverse engineering tool degate.
00004 
00005  Copyright 2008, 2009, 2010 by Martin Schobert
00006 
00007  Degate is free software: you can redistribute it and/or modify
00008  it under the terms of the GNU General Public License as published by
00009  the Free Software Foundation, either version 3 of the License, or
00010  any later version.
00011 
00012  Degate is distributed in the hope that it will be useful,
00013  but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  GNU General Public License for more details.
00016 
00017  You should have received a copy of the GNU General Public License
00018  along with degate. If not, see <http://www.gnu.org/licenses/>.
00019 
00020 */
00021 
00022 #ifndef __RECTANGLE_H__
00023 #define __RECTANGLE_H__
00024 
00025 #include "BoundingBox.h"
00026 #include "Shape.h"
00027 
00028 namespace degate {
00029 
00030   class Rectangle : public AbstractShape {
00031 
00032   private:
00033     int min_x, max_x, min_y, max_y;
00034 
00035     BoundingBox bounding_box;
00036 
00037     void calculate_bounding_box();
00038 
00039   public:
00040 
00041     Rectangle();
00042 
00043     Rectangle(int min_x, int max_x, int min_y, int max_y);
00044     Rectangle(const Rectangle&);
00045 
00046     virtual ~Rectangle();
00047 
00048     virtual bool in_shape(int x, int y, int max_distance = 0) const;
00049     virtual bool in_bounding_box(BoundingBox const& bbox) const;
00050     virtual BoundingBox const& get_bounding_box() const;
00051 
00052     virtual bool operator==(const Rectangle& other) const;
00053     virtual bool operator!=(const Rectangle& other) const;
00054 
00055     virtual bool intersects(Rectangle const & rect) const;
00056     virtual bool complete_within(Rectangle const & rect) const;
00057 
00058     virtual unsigned int get_width() const;
00059     virtual unsigned int get_height() const;
00060 
00061     virtual int get_min_x() const;
00062     virtual int get_max_x() const;
00063     virtual int get_min_y() const;
00064     virtual int get_max_y() const;
00065 
00066     virtual int get_center_x() const;
00067     virtual int get_center_y() const;
00068 
00069     virtual void set_min_x(int min_x);
00070     virtual void set_min_y(int min_y);
00071     virtual void set_max_x(int max_x);
00072     virtual void set_max_y(int max_y);
00073 
00074     virtual void set_position(int min_x, int max_x, int min_y, int max_y);
00075 
00076     virtual void shift_x(int delta_x);
00077     virtual void shift_y(int delta_y);
00078 
00079   };
00080 
00081 }
00082 
00083 #endif