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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * anchor.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: anchor.hpp 7228 2004-04-01 21:04:43Z ipkiss $
  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 ANCHOR_HPP
  25. #define ANCHOR_HPP
  26. #include "skin_common.hpp"
  27. #include "generic_layout.hpp"
  28. #include "../utils/bezier.hpp"
  29. /// Class for the windows anchors
  30. class Anchor: public SkinObject
  31. {
  32.     public:
  33.         Anchor( intf_thread_t *pIntf, int xPos, int yPos, int range,
  34.                 int priority, const Bezier &rCurve, GenericLayout &rLayout ):
  35.             SkinObject( pIntf ), m_xPos( xPos ), m_yPos( yPos ),
  36.             m_rCurve( rCurve ), m_range( range ), m_priority( priority ),
  37.             m_rLayout( rLayout ) {}
  38.         virtual ~Anchor() {}
  39.         /// Return true if the given anchor is hanged by this one
  40.         /// Two conditions are required:
  41.         ///  - the other anchor must be in position of anchoring (as defined
  42.         ///    by canHang())
  43.         ///  - the priority of the other anchor must be lower than this one's
  44.         bool isHanging( const Anchor &rOther ) const;
  45.         /// Return true if the other anchor, moved by the (xOffset, yOffset)
  46.         /// vector, is "hangable" by this one (i.e. if it is in its range of
  47.         /// action), else return false.
  48.         /// When the function returns true, the xOffset and yOffset parameters
  49.         /// are modified to indicate the position that the other anchor would
  50.         /// take if hanged by this one (this position is calculated to minimize
  51.         /// the difference with the old xOffset and yOffset, so that the window
  52.         /// doesn't "jump" in a strange way).
  53.         bool canHang( const Anchor &rOther, int &xOffset, int &yOffset ) const;
  54.         // Indicate whether this anchor is reduced to a single point
  55.         bool isPoint() const { return m_rCurve.getNbCtrlPoints() == 1; }
  56.         // Getters
  57.         int getXPosAbs() const { return (m_xPos + m_rLayout.getLeft()); }
  58.         int getYPosAbs() const { return (m_yPos + m_rLayout.getTop()); }
  59.     private:
  60.         /// Coordinates relative to the window
  61.         int m_xPos, m_yPos;
  62.         /// Curve of the anchor
  63.         const Bezier &m_rCurve;
  64.         /// Range of action
  65.         int m_range;
  66.         /// Priority
  67.         int m_priority;
  68.         /// Parent window
  69.         GenericLayout &m_rLayout;
  70. };
  71. #endif