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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 88413604d797e369803b72f0a12dcfa254cd9aa5 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include "vout_window.hpp"
  24. #include "vout_manager.hpp"
  25. #include "vlcproc.hpp"
  26. #include "theme.hpp"
  27. #include "os_factory.hpp"
  28. #include "os_graphics.hpp"
  29. #include "os_window.hpp"
  30. int VoutWindow::count = 0;
  31. VoutWindow::VoutWindow( intf_thread_t *pIntf, vout_thread_t* pVout,
  32.                         int width, int height, GenericWindow* pParent ) :
  33.       GenericWindow( pIntf, 0, 0, false, false, pParent ),
  34.       m_pVout( pVout ), original_width( width ), original_height( height ),
  35.       m_pParentWindow( pParent ), m_pCtrlVideo( NULL ), m_pImage( NULL )
  36. {
  37.     // counter for debug
  38.     count++;
  39.     if( m_pVout )
  40.         vlc_object_hold( m_pVout );
  41.     // needed on MS-Windows to prevent vlc hanging
  42.     show();
  43. }
  44. VoutWindow::~VoutWindow()
  45. {
  46.     delete m_pImage;
  47.     if( m_pVout )
  48.         vlc_object_release( m_pVout );
  49.     count--;
  50.     msg_Dbg( getIntf(), "VoutWindow count = %d", count );
  51. }
  52. void VoutWindow::resize( int width, int height )
  53. {
  54.     // don't try to resize with zero value
  55.     if( !width || !height )
  56.         return;
  57.     // Get the OSFactory
  58.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  59.     // Recreate the image
  60.     delete m_pImage;
  61.     m_pImage = pOsFactory->createOSGraphics( width, height );
  62.     // Draw a black rectangle
  63.     m_pImage->fillRect( 0, 0, width, height, 0 );
  64.     // Resize the window
  65.     GenericWindow::resize( width, height );
  66. }
  67. void VoutWindow::refresh( int left, int top, int width, int height )
  68. {
  69.     if( m_pImage )
  70.     {
  71.         if( !m_pCtrlVideo )
  72.         {
  73.             m_pImage->copyToWindow( *getOSWindow(), left, top,
  74.                                     width, height, left, top );
  75.         }
  76.     }
  77. }
  78. void VoutWindow::setCtrlVideo( CtrlVideo* pCtrlVideo )
  79. {
  80.     if( pCtrlVideo )
  81.     {
  82.         const Position *pPos = pCtrlVideo->getPosition();
  83.         int x = pPos->getLeft();
  84.         int y = pPos->getTop();
  85.         int w = pPos->getWidth();
  86.         int h = pPos->getHeight();
  87.         setParent( pCtrlVideo->getWindow(), x, y, w, h );
  88.         m_pParentWindow = pCtrlVideo->getWindow();
  89.     }
  90.     else
  91.     {
  92.         setParent( VoutManager::instance( getIntf() )->getVoutMainWindow(),
  93.                    0, 0, 0, 0 );
  94.         m_pParentWindow =
  95.                   VoutManager::instance( getIntf() )->getVoutMainWindow();
  96.     }
  97.     m_pCtrlVideo = pCtrlVideo;
  98. }