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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vout_window.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: vout_window.cpp 7074 2004-03-14 14:58:11Z asmax $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "vout_window.hpp"
  24. #include "os_factory.hpp"
  25. #include "os_graphics.hpp"
  26. #include "os_window.hpp"
  27. VoutWindow::VoutWindow( intf_thread_t *pIntf, int left, int top,
  28.                         bool dragDrop, bool playOnDrop,
  29.                         GenericWindow &rParent ):
  30.     GenericWindow( pIntf, left, top, dragDrop, playOnDrop,
  31.                    &rParent ), m_pImage( NULL )
  32. {
  33. }
  34. VoutWindow::~VoutWindow()
  35. {
  36.     if( m_pImage )
  37.     {
  38.         delete m_pImage;
  39.     }
  40.     // XXX we should stop the vout before destroying the window!
  41. }
  42. void VoutWindow::resize( int width, int height )
  43. {
  44.     // Get the OSFactory
  45.     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
  46.     // Recreate the image
  47.     if( m_pImage )
  48.     {
  49.         delete m_pImage;
  50.     }
  51.     m_pImage = pOsFactory->createOSGraphics( width, height );
  52.     // Draw a black rectangle
  53.     m_pImage->fillRect( 0, 0, width, height, 0 );
  54.     // Resize the window
  55.     GenericWindow::resize( width, height );
  56. }
  57. void VoutWindow::refresh( int left, int top, int width, int height )
  58. {
  59.     if( m_pImage )
  60.     {
  61.         m_pImage->copyToWindow( *getOSWindow(), left, top, width, height, left,
  62.                                 top );
  63.     }
  64. }