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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * ctrl_generic.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: ctrl_generic.cpp 7073 2004-03-14 14:33:12Z asmax $
  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 "ctrl_generic.hpp"
  25. #include "../src/generic_layout.hpp"
  26. #include "../src/top_window.hpp"
  27. #include "../src/os_graphics.hpp"
  28. #include "../utils/position.hpp"
  29. #include "../utils/var_bool.hpp"
  30. CtrlGeneric::CtrlGeneric( intf_thread_t *pIntf, const UString &rHelp,
  31.                           VarBool *pVisible):
  32.     SkinObject( pIntf ), m_pLayout( NULL ), m_pPosition( NULL ),
  33.     m_help( rHelp ), m_pVisible( pVisible )
  34. {
  35.     // Observe the visibility variable
  36.     if( m_pVisible )
  37.     {
  38.         m_pVisible->addObserver( this );
  39.     }
  40. }
  41. CtrlGeneric::~CtrlGeneric()
  42. {
  43.     if( m_pPosition )
  44.     {
  45.         delete m_pPosition;
  46.     }
  47.     if( m_pVisible )
  48.     {
  49.         m_pVisible->delObserver( this );
  50.     }
  51. }
  52. void CtrlGeneric::setLayout( GenericLayout *pLayout,
  53.                              const Position &rPosition )
  54. {
  55.     m_pLayout = pLayout;
  56.     if( m_pPosition )
  57.     {
  58.         delete m_pPosition;
  59.     }
  60.     m_pPosition = new Position( rPosition );
  61.     onPositionChange();
  62. }
  63. void CtrlGeneric::notifyLayout() const
  64. {
  65.     // Notify the layout
  66.     if( m_pLayout )
  67.     {
  68.         m_pLayout->onControlUpdate( *this );
  69.     }
  70. }
  71. void CtrlGeneric::captureMouse() const
  72. {
  73.     // Tell the layout we want to capture the mouse
  74.     if( m_pLayout )
  75.     {
  76.         m_pLayout->onControlCapture( *this );
  77.     }
  78. }
  79. void CtrlGeneric::releaseMouse() const
  80. {
  81.     // Tell the layout we want to release the mouse
  82.     if( m_pLayout )
  83.     {
  84.         m_pLayout->onControlRelease( *this );
  85.     }
  86. }
  87. void CtrlGeneric::notifyTooltipChange() const
  88. {
  89.     TopWindow *pWin = getWindow();
  90.     if( pWin )
  91.     {
  92.         // Notify the window
  93.         pWin->onTooltipChange( *this );
  94.     }
  95. }
  96. TopWindow *CtrlGeneric::getWindow() const
  97. {
  98.     if( m_pLayout )
  99.     {
  100.         return m_pLayout->getWindow();
  101.     }
  102.     return NULL;
  103. }
  104. bool CtrlGeneric::isVisible() const
  105. {
  106.     return !m_pVisible || m_pVisible->get();
  107. }
  108. void CtrlGeneric::onUpdate( Subject<VarBool> &rVariable )
  109. {
  110.     // Is it the visibily variable ?
  111.     if( &rVariable == m_pVisible )
  112.     {
  113.         // Redraw the layout
  114.         notifyLayout();
  115.     }
  116.     else
  117.     {
  118.         // Call the user-defined callback
  119.         onVarBoolUpdate( (VarBool&)rVariable );
  120.     }
  121. }