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

midi

开发平台:

Unix_Linux

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