]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/vout_window.cpp
Qt: iconView delegate: encode PLModel::IsCurrent(QModelIndex) into cache key
[vlc] / modules / gui / skins2 / src / vout_window.cpp
1 /*****************************************************************************
2  * vout_window.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "vout_window.hpp"
25 #include "vout_manager.hpp"
26 #include "vlcproc.hpp"
27 #include "theme.hpp"
28 #include "os_factory.hpp"
29 #include "os_graphics.hpp"
30 #include "os_window.hpp"
31 #include "../events/evt_key.hpp"
32
33 #include <vlc_keys.h>
34
35
36 VoutWindow::VoutWindow( intf_thread_t *pIntf, vout_window_t* pWnd,
37                         int width, int height, GenericWindow* pParent ) :
38       GenericWindow( pIntf, 0, 0, false, false, pParent,
39                      GenericWindow::VoutWindow ),
40       m_pWnd( pWnd ), original_width( width ), original_height( height ),
41       m_pParentWindow( pParent ), m_pCtrlVideo( NULL )
42 {
43     if( m_pWnd )
44         vlc_object_hold( m_pWnd );
45 }
46
47
48 VoutWindow::~VoutWindow()
49 {
50     if( m_pWnd )
51         vlc_object_release( m_pWnd );
52 }
53
54
55 void VoutWindow::setCtrlVideo( CtrlVideo* pCtrlVideo )
56 {
57     if( pCtrlVideo )
58     {
59         hide();
60         const Position *pPos = pCtrlVideo->getPosition();
61         int x = pPos->getLeft();
62         int y = pPos->getTop();
63         int w = pPos->getWidth();
64         int h = pPos->getHeight();
65
66         setParent( pCtrlVideo->getWindow(), x, y, w, h );
67         m_pParentWindow = pCtrlVideo->getWindow();
68
69         show();
70     }
71     else
72     {
73         hide();
74         int w = VoutManager::instance( getIntf() )->getVoutMainWindow()->getWidth();
75         int h = VoutManager::instance( getIntf() )->getVoutMainWindow()->getHeight();
76
77         setParent( VoutManager::instance( getIntf() )->getVoutMainWindow(),
78                    0, 0, w, h );
79         m_pParentWindow =
80                   VoutManager::instance( getIntf() )->getVoutMainWindow();
81         show();
82     }
83
84     m_pCtrlVideo = pCtrlVideo;
85 }
86
87
88 void VoutWindow::processEvent( EvtKey &rEvtKey )
89 {
90     // Only do the action when the key is down
91     if( rEvtKey.getKeyState() == EvtKey::kDown )
92         var_SetInteger( getIntf()->p_libvlc, "key-pressed",
93                          rEvtKey.getModKey() );
94 }
95