]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/vout_window.hpp
skins(Win32): replace GetWindowDC with GetDC
[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     /// Make some functions public
44     //@{
45     using GenericWindow::show;
46     using GenericWindow::hide;
47     using GenericWindow::move;
48     using GenericWindow::resize;
49     using GenericWindow::getOSHandle;
50     //@}
51
52     /// get the parent  window
53     virtual GenericWindow* getWindow( ) { return m_pParentWindow; }
54
55     /// hotkeys processing
56     virtual void processEvent( EvtKey &rEvtKey );
57
58     /// set and get Video Control for VoutWindow
59     virtual void setCtrlVideo( CtrlVideo* pCtrlVideo );
60     virtual CtrlVideo* getCtrlVideo( ) { return m_pCtrlVideo; }
61
62     /// get original size of vout
63     virtual int getOriginalWidth( ) { return original_width; }
64     virtual int getOriginalHeight( ) { return original_height; }
65
66     /// set original size of vout
67     virtual void setOriginalWidth( int width ) { original_width = width; }
68     virtual void setOriginalHeight( int height ) { original_height = height; }
69
70     virtual string getType() const { return "Vout"; }
71
72 private:
73
74     /// vout thread
75     vout_window_t* m_pWnd;
76
77     /// original width and height
78     int original_width;
79     int original_height;
80
81     /// VideoControl attached to it
82     CtrlVideo* m_pCtrlVideo;
83
84     /// Parent Window
85     GenericWindow* m_pParentWindow;
86 };
87
88 typedef CountedPtr<VoutWindow> VoutWindowPtr;
89
90 #endif