]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/vout_window.hpp
2ff60ba750f09867aea5c8c2d8249ab3de23ca29
[vlc] / modules / gui / skins2 / src / vout_window.hpp
1 /*****************************************************************************
2  * vout_window.hpp
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 along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef VOUT_WINDOW_HPP
25 #define VOUT_WINDOW_HPP
26
27 #include "generic_window.hpp"
28 #include <vlc_vout_window.h>
29
30 class OSGraphics;
31 class CtrlVideo;
32
33
34 /// Class to handle a video output window
35 class VoutWindow: private GenericWindow
36 {
37 public:
38
39     VoutWindow( intf_thread_t *pIntf, vout_window_t* pWnd,
40                 int width, int height, GenericWindow* pParent = NULL );
41     virtual ~VoutWindow();
42
43     // counter used for debugging purpose
44     static int count;
45
46     /// Make some functions public
47     //@{
48     using GenericWindow::show;
49     using GenericWindow::hide;
50     using GenericWindow::move;
51     using GenericWindow::resize;
52     using GenericWindow::getOSHandle;
53     //@}
54
55     /// get the parent  window
56     virtual GenericWindow* getWindow( ) { return m_pParentWindow; }
57
58     /// hotkeys processing
59     virtual void processEvent( EvtKey &rEvtKey );
60
61     /// set and get Video Control for VoutWindow
62     virtual void setCtrlVideo( CtrlVideo* pCtrlVideo );
63     virtual CtrlVideo* getCtrlVideo( ) { return m_pCtrlVideo; }
64
65     /// toggle fullscreen mode
66     virtual void setFullscreen( bool b_fullscreen );
67     virtual bool isFullscreen() { return m_bFullscreen; }
68
69     /// get original size of vout
70     virtual int getOriginalWidth( ) { return original_width; }
71     virtual int getOriginalHeight( ) { return original_height; }
72
73     /// set original size of vout
74     virtual void setOriginalWidth( int width ) { original_width = width; }
75     virtual void setOriginalHeight( int height ) { original_height = height; }
76
77     virtual string getType() const { return "Vout"; }
78
79 private:
80
81     /// vout thread
82     vout_window_t* m_pWnd;
83
84     /// original width and height
85     int original_width;
86     int original_height;
87
88     /// fulscreen mode indicator
89     bool m_bFullscreen;
90
91     /// VideoControl attached to it
92     CtrlVideo* m_pCtrlVideo;
93
94     /// Parent Window
95     GenericWindow* m_pParentWindow;
96 };
97
98 typedef CountedPtr<VoutWindow> VoutWindowPtr;
99
100 #endif