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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * position.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: position.cpp 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. #include "position.hpp"
  25. Rect::Rect( int left, int top, int right, int bottom ):
  26.     m_left( left ), m_top( top ), m_right( right ), m_bottom( bottom )
  27. {
  28. }
  29. Position::Position( int left, int top, int right, int bottom, const Box &rBox,
  30.                     Ref_t refLeftTop, Ref_t refRightBottom ):
  31.     m_left( left ), m_top( top ), m_right( right ), m_bottom( bottom ),
  32.     m_rBox( rBox ), m_refLeftTop( refLeftTop ),
  33.     m_refRighBottom( refRightBottom )
  34. {
  35. }
  36. int Position::getLeft() const
  37. {
  38.     switch( m_refLeftTop )
  39.     {
  40.         case kLeftTop:
  41.         case kLeftBottom:
  42.             return m_left;
  43.             break;
  44.         case kRightTop:
  45.         case kRightBottom:
  46.             return m_rBox.getWidth() + m_left - 1;
  47.             break;
  48.     }
  49.     // Avoid a warning
  50.     return 0;
  51. }
  52. int Position::getTop() const
  53. {
  54.     switch( m_refLeftTop )
  55.     {
  56.         case kLeftTop:
  57.         case kRightTop:
  58.             return m_top;
  59.             break;
  60.         case kRightBottom:
  61.         case kLeftBottom:
  62.             return m_rBox.getHeight() + m_top - 1;
  63.             break;
  64.     }
  65.     // Avoid a warning
  66.     return 0;
  67. }
  68. int Position::getRight() const
  69. {
  70.     switch( m_refRighBottom )
  71.     {
  72.         case kLeftTop:
  73.         case kLeftBottom:
  74.             return m_right;
  75.             break;
  76.         case kRightTop:
  77.         case kRightBottom:
  78.             return m_rBox.getWidth() + m_right - 1;
  79.             break;
  80.     }
  81.     // Avoid a warning
  82.     return 0;
  83. }
  84. int Position::getBottom() const
  85. {
  86.     switch( m_refRighBottom )
  87.     {
  88.         case kLeftTop:
  89.         case kRightTop:
  90.             return m_bottom;
  91.             break;
  92.         case kLeftBottom:
  93.         case kRightBottom:
  94.             return m_rBox.getHeight() + m_bottom - 1;
  95.             break;
  96.     }
  97.     // Avoid a warning
  98.     return 0;
  99. }
  100. int Position::getWidth() const
  101. {
  102.     return getRight() - getLeft() + 1;
  103. }
  104. int Position::getHeight() const
  105. {
  106.     return getBottom() - getTop() + 1;
  107. }