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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * generic_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: generic_window.cpp 7267 2004-04-03 20:17:06Z 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. #include "generic_window.hpp"
  25. #include "os_window.hpp"
  26. #include "os_factory.hpp"
  27. #include "../events/evt_refresh.hpp"
  28. GenericWindow::GenericWindow( intf_thread_t *pIntf, int left, int top,
  29.                               bool dragDrop, bool playOnDrop,
  30.                               GenericWindow *pParent ):
  31.     SkinObject( pIntf ), m_left( left ), m_top( top ), m_width( 0 ),
  32.     m_height( 0 ), m_varVisible( pIntf )
  33. {
  34.    // Get the OSFactory
  35.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  36.     // Get the parent OSWindow, if any
  37.     OSWindow *pOSParent = NULL;
  38.     if( pParent )
  39.     {
  40.         pOSParent = pParent->m_pOsWindow;
  41.     }
  42.     // Create an OSWindow to handle OS specific processing
  43.     m_pOsWindow = pOsFactory->createOSWindow( *this, dragDrop, playOnDrop,
  44.                                               pOSParent );
  45.     // Observe the visibility variable
  46.     m_varVisible.addObserver( this );
  47. }
  48. GenericWindow::~GenericWindow()
  49. {
  50.     m_varVisible.delObserver( this );
  51.     if( m_pOsWindow )
  52.     {
  53.         delete m_pOsWindow;
  54.     }
  55. }
  56. void GenericWindow::processEvent( EvtRefresh &rEvtRefresh )
  57. {
  58.     // Refresh the given area
  59.     refresh( rEvtRefresh.getXStart(), rEvtRefresh.getYStart(),
  60.              rEvtRefresh.getWidth(), rEvtRefresh.getHeight() );
  61. }
  62. void GenericWindow::show() const
  63. {
  64.     m_varVisible.set( true );
  65. }
  66. void GenericWindow::hide() const
  67. {
  68.     m_varVisible.set( false );
  69. }
  70. void GenericWindow::move( int left, int top )
  71. {
  72.     // Update the window coordinates
  73.     m_left = left;
  74.     m_top = top;
  75.     m_pOsWindow->moveResize( left, top, m_width, m_height );
  76. }
  77. void GenericWindow::resize( int width, int height )
  78. {
  79.     // Update the window size
  80.     m_width = width;
  81.     m_height = height;
  82.     m_pOsWindow->moveResize( m_left, m_top, width, height );
  83. }
  84. void GenericWindow::raise() const
  85. {
  86.     m_pOsWindow->raise();
  87. }
  88. void GenericWindow::setOpacity( uint8_t value )
  89. {
  90.     m_pOsWindow->setOpacity( value );
  91. }
  92. void GenericWindow::toggleOnTop( bool onTop ) const
  93. {
  94.     m_pOsWindow->toggleOnTop( onTop );
  95. }
  96. void GenericWindow::onUpdate( Subject<VarBool> &rVariable )
  97. {
  98.     if( m_varVisible.get() )
  99.     {
  100.         innerShow();
  101.     }
  102.     else
  103.     {
  104.         innerHide();
  105.     }
  106. }
  107. void GenericWindow::innerShow()
  108. {
  109.     if( m_pOsWindow )
  110.     {
  111.         m_pOsWindow->show( m_left, m_top );
  112.     }
  113. }
  114. void GenericWindow::innerHide()
  115. {
  116.     if( m_pOsWindow )
  117.     {
  118.         m_pOsWindow->hide();
  119.     }
  120. }