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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * generic_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: cbad909af458d7a4e5ee652cb35cfe19d7e0d948 $
  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 "generic_window.hpp"
  25. #include "os_window.hpp"
  26. #include "os_factory.hpp"
  27. #include "var_manager.hpp"
  28. #include "../events/evt_refresh.hpp"
  29. GenericWindow::GenericWindow( intf_thread_t *pIntf, int left, int top,
  30.                               bool dragDrop, bool playOnDrop,
  31.                               GenericWindow *pParent ):
  32.     SkinObject( pIntf ), m_left( left ), m_top( top ), m_width( 0 ),
  33.     m_height( 0 ), m_pVarVisible( NULL )
  34. {
  35.     // Get the OSFactory
  36.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  37.     // Get the parent OSWindow, if any
  38.     OSWindow *pOSParent = NULL;
  39.     if( pParent )
  40.     {
  41.         pOSParent = pParent->m_pOsWindow;
  42.     }
  43.     // Create an OSWindow to handle OS specific processing
  44.     m_pOsWindow = pOsFactory->createOSWindow( *this, dragDrop, playOnDrop,
  45.                                               pOSParent );
  46.     // Create the visibility variable and register it in the manager
  47.     m_pVarVisible = new VarBoolImpl( pIntf );
  48.     VarManager::instance( pIntf )->registerVar( VariablePtr( m_pVarVisible ) );
  49.     // Observe the visibility variable
  50.     m_pVarVisible->addObserver( this );
  51. }
  52. GenericWindow::~GenericWindow()
  53. {
  54.     m_pVarVisible->delObserver( this );
  55.     delete m_pOsWindow;
  56. }
  57. void GenericWindow::processEvent( EvtRefresh &rEvtRefresh )
  58. {
  59.     // Refresh the given area
  60.     refresh( rEvtRefresh.getXStart(), rEvtRefresh.getYStart(),
  61.              rEvtRefresh.getWidth(), rEvtRefresh.getHeight() );
  62. }
  63. void GenericWindow::show() const
  64. {
  65.     m_pVarVisible->set( true );
  66. }
  67. void GenericWindow::hide() const
  68. {
  69.     m_pVarVisible->set( false );
  70. }
  71. void GenericWindow::move( int left, int top )
  72. {
  73.     // Update the window coordinates
  74.     m_left = left;
  75.     m_top = top;
  76.     m_pOsWindow->moveResize( left, top, m_width, m_height );
  77. }
  78. void GenericWindow::resize( int width, int height )
  79. {
  80.     // don't try when value is 0 (may crash)
  81.     if( !width || ! height )
  82.         return;
  83.     // Update the window size
  84.     m_width = width;
  85.     m_height = height;
  86.     m_pOsWindow->moveResize( m_left, m_top, width, height );
  87. }
  88. void GenericWindow::raise() const
  89. {
  90.     m_pOsWindow->raise();
  91. }
  92. void GenericWindow::setOpacity( uint8_t value )
  93. {
  94.     m_pOsWindow->setOpacity( value );
  95. }
  96. void GenericWindow::toggleOnTop( bool onTop ) const
  97. {
  98.     m_pOsWindow->toggleOnTop( onTop );
  99. }
  100. void GenericWindow::onUpdate( Subject<VarBool> &rVariable, void*arg )
  101. {
  102.     if (&rVariable == m_pVarVisible )
  103.     {
  104.         if( m_pVarVisible->get() )
  105.         {
  106.             innerShow();
  107.         }
  108.         else
  109.         {
  110.             innerHide();
  111.         }
  112.     }
  113. }
  114. void GenericWindow::innerShow()
  115. {
  116.     if( m_pOsWindow )
  117.     {
  118.         m_pOsWindow->show( m_left, m_top );
  119.     }
  120. }
  121. void GenericWindow::innerHide()
  122. {
  123.     if( m_pOsWindow )
  124.     {
  125.         m_pOsWindow->hide();
  126.     }
  127. }
  128. void* GenericWindow::getOSHandle() const
  129. {
  130.     return m_pOsWindow->getOSHandle();
  131. }
  132. void GenericWindow::setParent( GenericWindow* pParent, int x, int y, int w, int h )
  133. {
  134.     void* handle = pParent ? pParent->getOSHandle() : NULL;
  135.     m_pOsWindow->reparent( handle, x, y, w, h );
  136. }