1 /*****************************************************************************
2 * cmd_resize.cpp
3 *****************************************************************************
4 * Copyright (C) 2003 the VideoLAN team
5 * $Id: 6b8b378f062c2612bd0834405befc527048285eb $
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 along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
24
25 #include "cmd_resize.hpp"
26 #include "../src/generic_layout.hpp"
27 #include "../src/vlcproc.hpp"
28 #include "../src/window_manager.hpp"
29 #include "../src/vout_manager.hpp"
30 #include "../controls/ctrl_video.hpp"
31
32
CmdResize(intf_thread_t * pIntf,const WindowManager & rWindowManager,GenericLayout & rLayout,int width,int height)33 CmdResize::CmdResize( intf_thread_t *pIntf, const WindowManager &rWindowManager,
34 GenericLayout &rLayout, int width, int height )
35 : CmdGeneric( pIntf ), m_rWindowManager( rWindowManager ),
36 m_rLayout( rLayout ), m_width( width ), m_height( height ) { }
37
38
execute()39 void CmdResize::execute()
40 {
41 // Resize the layout
42 m_rWindowManager.resize( m_rLayout, m_width, m_height );
43 }
44
45
46
CmdResizeVout(intf_thread_t * pIntf,vout_window_t * pWnd,int width,int height)47 CmdResizeVout::CmdResizeVout( intf_thread_t *pIntf, vout_window_t* pWnd,
48 int width, int height )
49 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_width( width ),
50 m_height( height ) { }
51
52
execute()53 void CmdResizeVout::execute()
54 {
55 getIntf()->p_sys->p_voutManager->setSizeWnd( m_pWnd, m_width, m_height );
56 }
57
CmdSetFullscreen(intf_thread_t * pIntf,vout_window_t * pWnd,bool fullscreen)58 CmdSetFullscreen::CmdSetFullscreen( intf_thread_t *pIntf,
59 vout_window_t * pWnd, bool fullscreen )
60 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_bFullscreen( fullscreen ) { }
61
62
execute()63 void CmdSetFullscreen::execute()
64 {
65 getIntf()->p_sys->p_voutManager->setFullscreenWnd( m_pWnd, m_bFullscreen );
66 }
67
68
CmdHideMouse(intf_thread_t * pIntf,vout_window_t * pWnd,bool hide)69 CmdHideMouse::CmdHideMouse( intf_thread_t *pIntf,
70 vout_window_t * pWnd, bool hide )
71 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_bHide( hide ) { }
72
73
execute()74 void CmdHideMouse::execute()
75 {
76 getIntf()->p_sys->p_voutManager->hideMouseWnd( m_pWnd, m_bHide );
77 }
78