position.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * position.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: aba4b4af70d2cf41296107cae08755c72241284c $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef POSITION_HPP
  25. #define POSITION_HPP
  26. #include "variable.hpp"
  27. #include "observer.hpp"
  28. #include "pointer.hpp"
  29. /// Interface for rectangular objects
  30. class Box
  31. {
  32.     public:
  33.         virtual ~Box() {}
  34.         /// Get the size of the box
  35.         virtual int getWidth() const = 0;
  36.         virtual int getHeight() const = 0;
  37. };
  38. /// Interface for rectangular objects with a position
  39. class GenericRect: public Box
  40. {
  41.     public:
  42.         virtual int getLeft() const = 0;
  43.         virtual int getTop() const = 0;
  44. };
  45. /// Characterization of a rectangle
  46. class SkinsRect: public GenericRect
  47. {
  48.     public:
  49.         SkinsRect( int left, int top, int right, int bottom );
  50.         virtual int getLeft() const { return m_left; }
  51.         virtual int getTop() const { return m_top; }
  52.         virtual int getRight() const { return m_right; }
  53.         virtual int getBottom() const { return m_bottom; }
  54.         virtual int getWidth() const { return m_right - m_left; }
  55.         virtual int getHeight() const { return m_bottom - m_top; }
  56.     private:
  57.         int m_left;
  58.         int m_top;
  59.         int m_right;
  60.         int m_bottom;
  61. };
  62. /// Relative position of a rectangle in a box
  63. /**
  64.  * Note: Even if the object is tied to its direct container rectangle, the
  65.  * coordinates returned by getLeft(), getTop(), getRight() and getBottom() are
  66.  * not relative to the direct container (which is usually a panel or the layout)
  67.  * but to the root container (i.e. the layout).
  68.  */
  69. class Position: public GenericRect
  70. {
  71.     public:
  72.         /// Type for reference edge/corner
  73.         enum Ref_t
  74.         {
  75.             /// Coordinates are relative to the upper left corner
  76.             kLeftTop,
  77.             /// Coordinates are relative to the upper right corner
  78.             kRightTop,
  79.             /// Coordinates are relative to the lower left corner
  80.             kLeftBottom,
  81.             /// Coordinates are relative to the lower right corner
  82.             kRightBottom
  83.         };
  84.         /// Create a new position relative to the given box
  85.         Position( int left, int top, int right, int bottom,
  86.                   const GenericRect &rRect,
  87.                   Ref_t refLeftTop, Ref_t refRightBottom,
  88.                   bool xKeepRatio, bool yKeepRatio );
  89.         ~Position() {}
  90.         /// Get the position relative to the left top corner of the box
  91.         virtual int getLeft() const;
  92.         virtual int getTop() const;
  93.         int getRight() const;
  94.         int getBottom() const;
  95.         /// Get the size of the rectangle
  96.         virtual int getWidth() const;
  97.         virtual int getHeight() const;
  98.         /// Get the reference corners
  99.         Ref_t getRefLeftTop() const { return m_refLeftTop; }
  100.         Ref_t getRefRightBottom() const { return m_refRighBottom; }
  101.     private:
  102.         /// Position and reference edge/corner
  103.         int m_left;
  104.         int m_top;
  105.         int m_right;
  106.         int m_bottom;
  107.         const GenericRect &m_rRect;
  108.         Ref_t m_refLeftTop;
  109.         Ref_t m_refRighBottom;
  110.         /// "Keep ratio" mode
  111.         bool m_xKeepRatio;
  112.         bool m_yKeepRatio;
  113.         /// Initial width ratio (usually between 0 and 1)
  114.         double m_xRatio;
  115.         /// Initial height ratio (usually between 0 and 1)
  116.         double m_yRatio;
  117. };
  118. typedef CountedPtr<Position> PositionPtr;
  119. /// Variable implementing the Box interface
  120. class VarBox: public Variable, public Box, public Subject<VarBox>
  121. {
  122.     public:
  123.         VarBox( intf_thread_t *pIntf, int width = 0, int height = 0 );
  124.         virtual ~VarBox() {}
  125.         /// Get the variable type
  126.         virtual const string &getType() const { return m_type; }
  127.         /// Get the size of the box
  128.         virtual int getWidth() const;
  129.         virtual int getHeight() const;
  130.         /// Change the size of the box
  131.         void setSize( int width, int height );
  132.     private:
  133.         /// Variable type
  134.         static const string m_type;
  135.         /// Size
  136.         int m_width, m_height;
  137. };
  138. #endif