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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * position.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 6ba21cb3c094dc8d7b52e57e12d8d515da42c49a $
  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. #include "position.hpp"
  25. const string VarBox::m_type = "box";
  26. SkinsRect::SkinsRect( int left, int top, int right, int bottom ):
  27.     m_left( left ), m_top( top ), m_right( right ), m_bottom( bottom )
  28. {
  29. }
  30. Position::Position( int left, int top, int right, int bottom,
  31.                     const GenericRect &rRect,
  32.                     Ref_t refLeftTop, Ref_t refRightBottom,
  33.                     bool xKeepRatio, bool yKeepRatio ):
  34.     m_left( left ), m_top( top ), m_right( right ), m_bottom( bottom ),
  35.     m_rRect( rRect ), m_refLeftTop( refLeftTop ),
  36.     m_refRighBottom( refRightBottom ), m_xKeepRatio( xKeepRatio ),
  37.     m_yKeepRatio( yKeepRatio )
  38. {
  39.     // Here is how the resizing algorithm works:
  40.     //
  41.     //  - if we "keep the ratio" (xkeepratio="true" in the XML), the relative
  42.     //    position of the control in the parent box (i.e. the given rRect) is
  43.     //    saved, and will be kept constant. The size of the control will not
  44.     //    be changed, only its position may vary. To do that, we consider the
  45.     //    part of the box to the left of the control (for an horizontal
  46.     //    resizing) and the part of the box to the right of the control,
  47.     //    and we make sure that the ratio between their widths is constant.
  48.     //
  49.     //  - if we don't keep the ratio, the resizing algorithm is completely
  50.     //    different. We consider that the top left hand corner of the control
  51.     //    ("lefttop" attribute in the XML) is linked to one of the 4 corners
  52.     //    of the parent box ("lefttop", "leftbottom", "righttop" and
  53.     //    "rightbottom" values for the attribute). Same thing for the bottom
  54.     //    right hand corner ("rightbottom" attribute). When resizing occurs,
  55.     //    the linked corners will move together, and this will drive the
  56.     //    moving/resizing of the control.
  57.     // Initialize the horizontal ratio
  58.     if( m_xKeepRatio )
  59.     {
  60.         // First compute the width of the box minus the width of the control
  61.         int freeSpace = m_rRect.getWidth() - (m_right - m_left);
  62.         // Instead of computing left/right, we compute left/(left+right),
  63.         // which is more convenient in my opinion.
  64.         if( freeSpace != 0 )
  65.         {
  66.             m_xRatio = (double)m_left / (double)freeSpace;
  67.         }
  68.         else
  69.         {
  70.             // If the control has the same size as the box, we can't compute
  71.             // the ratio in the same way (otherwise we would divide by zero).
  72.             // So we consider that the intent was to keep the control centered
  73.             // (if you are unhappy with this, go and fix your skin :))
  74.             m_xRatio = 0.5;
  75.         }
  76.     }
  77.     // Initial the vertical ratio
  78.     if( m_yKeepRatio )
  79.     {
  80.         // First compute the height of the box minus the height of the control
  81.         int freeSpace = m_rRect.getHeight() - (m_bottom - m_top);
  82.         // Instead of computing top/bottom, we compute top/(top+bottom),
  83.         // which is more convenient in my opinion.
  84.         if( freeSpace != 0 )
  85.         {
  86.             m_yRatio = (double)m_top / (double)freeSpace;
  87.         }
  88.         else
  89.         {
  90.             // If the control has the same size as the box, we can't compute
  91.             // the ratio in the same way (otherwise we would divide by zero).
  92.             // So we consider that the intent was to keep the control centered
  93.             // (if you are unhappy with this, go and fix your skin :))
  94.             m_yRatio = 0.5;
  95.         }
  96.     }
  97. }
  98. int Position::getLeft() const
  99. {
  100.     if( m_xKeepRatio )
  101.     {
  102.         // Ratio mode
  103.         // First compute the width of the box minus the width of the control
  104.         int freeSpace = m_rRect.getWidth() - (m_right - m_left);
  105.         return m_rRect.getLeft() + (int)(m_xRatio * freeSpace);
  106.     }
  107.     else
  108.     {
  109.         switch( m_refLeftTop )
  110.         {
  111.             case kLeftTop:
  112.             case kLeftBottom:
  113.                 return m_rRect.getLeft() + m_left;
  114.                 break;
  115.             case kRightTop:
  116.             case kRightBottom:
  117.                 return m_rRect.getLeft() + m_rRect.getWidth() + m_left - 1;
  118.                 break;
  119.         }
  120.         // Avoid a warning
  121.         return 0;
  122.     }
  123. }
  124. int Position::getTop() const
  125. {
  126.     if( m_yKeepRatio )
  127.     {
  128.         // Ratio mode
  129.         // First compute the height of the box minus the height of the control
  130.         int freeSpace = m_rRect.getHeight() - (m_bottom - m_top);
  131.         return m_rRect.getTop() + (int)(m_yRatio * freeSpace);
  132.     }
  133.     else
  134.     {
  135.         switch( m_refLeftTop )
  136.         {
  137.             case kLeftTop:
  138.             case kRightTop:
  139.                 return m_rRect.getTop() + m_top;
  140.                 break;
  141.             case kRightBottom:
  142.             case kLeftBottom:
  143.                 return m_rRect.getTop() + m_rRect.getHeight() + m_top - 1;
  144.                 break;
  145.         }
  146.         // Avoid a warning
  147.         return 0;
  148.     }
  149. }
  150. int Position::getRight() const
  151. {
  152.     if( m_xKeepRatio )
  153.     {
  154.         // Ratio mode
  155.         // The width of the control being constant, we can use the result of
  156.         // getLeft() (this will avoid rounding issues).
  157.         return getLeft() + m_right - m_left;
  158.     }
  159.     else
  160.     {
  161.         switch( m_refRighBottom )
  162.         {
  163.             case kLeftTop:
  164.             case kLeftBottom:
  165.                 return m_rRect.getLeft() + m_right;
  166.                 break;
  167.             case kRightTop:
  168.             case kRightBottom:
  169.                 return m_rRect.getLeft() + m_rRect.getWidth() + m_right - 1;
  170.                 break;
  171.         }
  172.         // Avoid a warning
  173.         return 0;
  174.     }
  175. }
  176. int Position::getBottom() const
  177. {
  178.     if( m_yKeepRatio )
  179.     {
  180.         // Ratio mode
  181.         // The height of the control being constant, we can use the result of
  182.         // getTop() (this will avoid rounding issues).
  183.         return getTop() + m_bottom - m_top;
  184.     }
  185.     else
  186.     {
  187.         switch( m_refRighBottom )
  188.         {
  189.             case kLeftTop:
  190.             case kRightTop:
  191.                 return m_rRect.getTop() + m_bottom;
  192.                 break;
  193.             case kLeftBottom:
  194.             case kRightBottom:
  195.                 return m_rRect.getTop() + m_rRect.getHeight() + m_bottom - 1;
  196.                 break;
  197.         }
  198.         // Avoid a warning
  199.         return 0;
  200.     }
  201. }
  202. int Position::getWidth() const
  203. {
  204.     return getRight() - getLeft() + 1;
  205. }
  206. int Position::getHeight() const
  207. {
  208.     return getBottom() - getTop() + 1;
  209. }
  210. VarBox::VarBox( intf_thread_t *pIntf, int width, int height ):
  211.     Variable( pIntf ), m_width( width ), m_height( height )
  212. {
  213. }
  214. int VarBox::getWidth() const
  215. {
  216.     return m_width;
  217. }
  218. int VarBox::getHeight() const
  219. {
  220.     return m_height;
  221. }
  222. void VarBox::setSize( int width, int height )
  223. {
  224.     m_width = width;
  225.     m_height = height;
  226.     notify();
  227. }