]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_resize.hpp
skins2 vout manager
[vlc] / modules / gui / skins2 / commands / cmd_resize.hpp
1 /*****************************************************************************
2  * cmd_resize.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
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
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef CMD_RESIZE_HPP
26 #define CMD_RESIZE_HPP
27
28 #include "cmd_generic.hpp"
29 #include <vlc_vout.h>
30
31 class WindowManager;
32 class GenericLayout;
33 class CtrlVideo;
34 class VoutWindow;
35
36
37 /// Command to resize a layout
38 class CmdResize: public CmdGeneric
39 {
40     public:
41         /// Resize the given layout
42         CmdResize( intf_thread_t *pIntf, const WindowManager &rWindowManager,
43                    GenericLayout &rLayout, int width, int height );
44         virtual ~CmdResize() {}
45
46         /// This method does the real job of the command
47         virtual void execute();
48
49         /// Return the type of the command
50         virtual string getType() const { return "resize"; }
51
52     private:
53         const WindowManager &m_rWindowManager;
54         GenericLayout &m_rLayout;
55         int m_width, m_height;
56 };
57
58
59 /// Command to resize the vout window
60 class CmdResizeVout: public CmdGeneric
61 {
62     public:
63         /// Resize the given layout
64         CmdResizeVout( intf_thread_t *pIntf, void *pWindow, int width,
65                        int height );
66         virtual ~CmdResizeVout() {}
67
68         /// This method does the real job of the command
69         virtual void execute();
70
71         /// Return the type of the command
72         virtual string getType() const { return "resize vout"; }
73
74     private:
75         void *m_pWindow;
76         int m_width, m_height;
77 };
78
79
80 /// Command to resize the inner vout window
81 class CmdResizeInnerVout: public CmdGeneric
82 {
83     public:
84         /// Resize the given layout
85         CmdResizeInnerVout( intf_thread_t *pIntf, CtrlVideo* pCtrlVideo );
86         virtual ~CmdResizeInnerVout() {}
87
88         /// This method does the real job of the command
89         virtual void execute();
90
91         /// Return the type of the command
92         virtual string getType() const { return "resize inner vout"; }
93
94     private:
95         CtrlVideo* m_pCtrlVideo;
96 };
97
98 #endif