position.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * position.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: position.hpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef POSITION_HPP
  25. #define POSITION_HPP
  26. /// Interface for rectangular objects
  27. class Box
  28. {
  29.     public:
  30.         /// Get the size of the box
  31.         virtual int getWidth() const = 0;
  32.         virtual int getHeight() const = 0;
  33. };
  34. /// Characterization of a rectangle
  35. class Rect: public Box
  36. {
  37.     public:
  38.         Rect( int left, int top, int right, int bottom );
  39.         virtual int getLeft() const { return m_left; }
  40.         virtual int getTop() const { return m_top; }
  41.         virtual int getRight() const { return m_right; }
  42.         virtual int getBottom() const { return m_bottom; }
  43.         virtual int getWidth() const { return m_right - m_left; }
  44.         virtual int getHeight() const { return m_bottom - m_top; }
  45.     private:
  46.         int m_left;
  47.         int m_top;
  48.         int m_right;
  49.         int m_bottom;
  50. };
  51. /// Relative position of a rectangle in a box
  52. class Position
  53. {
  54.     public:
  55.         /// Type for reference edge/corner
  56.         typedef enum
  57.         {
  58.             /// Coordinates are relative to the upper left corner
  59.             kLeftTop,
  60.             /// Coordinates are relative to the upper right corner
  61.             kRightTop,
  62.             /// Coordinates are relative to the lower left corner
  63.             kLeftBottom,
  64.             /// Coordinates are relative to the lower right corner
  65.             kRightBottom
  66.         } Ref_t;
  67.         /// Create a new position relative to the given box
  68.         Position( int left, int top, int right, int bottom, const Box &rBox,
  69.                   Ref_t refLeftTop = kLeftTop,
  70.                   Ref_t refRightBottom = kLeftTop );
  71.         ~Position() {}
  72.         /// Get the position relative to the left top corner of the box
  73.         int getLeft() const;
  74.         int getTop() const;
  75.         int getRight() const;
  76.         int getBottom() const;
  77.         /// Get the size of the rectangle
  78.         int getWidth() const;
  79.         int getHeight() const;
  80.     private:
  81.         /// Position and reference edge/corner
  82.         int m_left;
  83.         int m_top;
  84.         int m_right;
  85.         int m_bottom;
  86.         const Box &m_rBox;
  87.         Ref_t m_refLeftTop;
  88.         Ref_t m_refRighBottom;
  89. };
  90. #endif