]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/vout_window.cpp
Quick patch to make pda.c inteface compile again. It disables the management of the...
[vlc] / modules / gui / skins2 / src / vout_window.cpp
1 /*****************************************************************************
2  * vout_window.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id$
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
24 #include "vout_window.hpp"
25 #include "vlcproc.hpp"
26 #include "os_factory.hpp"
27 #include "os_graphics.hpp"
28 #include "os_window.hpp"
29
30
31 VoutWindow::VoutWindow( intf_thread_t *pIntf, int left, int top,
32                         bool dragDrop, bool playOnDrop,
33                         GenericWindow &rParent ):
34     GenericWindow( pIntf, left, top, dragDrop, playOnDrop,
35                    &rParent ), m_pImage( NULL )
36 {
37 }
38
39
40 VoutWindow::~VoutWindow()
41 {
42     if( m_pImage )
43     {
44         delete m_pImage;
45     }
46
47     // Get the VlcProc
48     VlcProc *pVlcProc = getIntf()->p_sys->p_vlcProc;
49
50     // Reparent the video output
51     if( pVlcProc && pVlcProc->isVoutUsed() )
52     {
53         pVlcProc->dropVout();
54     }
55 }
56
57
58 void VoutWindow::resize( int width, int height )
59 {
60     // Get the OSFactory
61     OSFactory *pOsFactory = OSFactory::instance( getIntf() );
62
63     // Recreate the image
64     if( m_pImage )
65     {
66         delete m_pImage;
67     }
68     m_pImage = pOsFactory->createOSGraphics( width, height );
69     // Draw a black rectangle
70     m_pImage->fillRect( 0, 0, width, height, 0 );
71
72     // Resize the window
73     GenericWindow::resize( width, height );
74 }
75
76
77 void VoutWindow::refresh( int left, int top, int width, int height )
78 {
79     if( m_pImage )
80     {
81         // Get the VlcProc
82         VlcProc *pVlcProc = getIntf()->p_sys->p_vlcProc;
83
84         // Refresh only when there is no video!
85         if( pVlcProc && !pVlcProc->isVoutUsed() )
86         {
87             m_pImage->copyToWindow( *getOSWindow(), left, top,
88                                     width, height, left, top );
89         }
90     }
91 }