]> git.sesse.net Git - vlc/blob - modules/gui/skins2/controls/ctrl_video.hpp
skins2: remove dead code
[vlc] / modules / gui / skins2 / controls / ctrl_video.hpp
1 /*****************************************************************************
2  * ctrl_video.hpp
3  *****************************************************************************
4  * Copyright (C) 2004 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 CTRL_VIDEO_HPP
25 #define CTRL_VIDEO_HPP
26
27 #include "ctrl_generic.hpp"
28 #include "../utils/position.hpp"
29 #include "../src/vout_window.hpp"
30 #include <vlc_vout.h>
31
32
33 /// Control video
34 class CtrlVideo: public CtrlGeneric
35 {
36 public:
37     CtrlVideo( intf_thread_t *pIntf, GenericLayout &rLayout,
38                bool autoResize, const UString &rHelp, VarBool *pVisible );
39     virtual ~CtrlVideo();
40
41     /// Handle an event on the control
42     virtual void handleEvent( EvtGeneric &rEvent );
43
44     /// Check whether coordinates are inside the control
45     virtual bool mouseOver( int x, int y ) const;
46
47     /// Callback for layout resize
48     virtual void onResize();
49
50     /// Called when the Position is set
51     virtual void onPositionChange();
52
53     /// Draw the control on the given graphics
54     virtual void draw( OSGraphics &rImage, int xDest, int yDest );
55
56     /// Get the type of control (custom RTTI)
57     virtual string getType() const { return "video"; }
58
59     /// Method called when visibility or ActiveLayout is updated
60     virtual void onUpdate( Subject<VarBool> &rVariable , void* );
61
62     // Attach a voutWindow to a Video Control
63     void attachVoutWindow( VoutWindow* pVoutWindow,
64                            int width = -1, int height = -1 );
65
66     // Detach a voutWindow from a Video Control
67     void detachVoutWindow( );
68
69     // Get TopWindow associated with the video control
70     virtual TopWindow* getWindow() { return CtrlGeneric::getWindow(); }
71
72     // Get the VoutWindow associated with the video control
73     virtual VoutWindow* getVoutWindow() { return m_pVoutWindow; }
74
75     /// Set the position and the associated layout of the control
76     virtual void setLayout( GenericLayout *pLayout,
77                             const Position &rPosition );
78     virtual void unsetLayout();
79
80     // resize the video Control
81     virtual void resizeControl( int width, int height );
82
83     // Is this control useable (visibility requirements)
84     virtual bool isUseable() { return m_bIsUseable; }
85
86     // Is this control used
87     virtual bool isUsed() { return m_pVoutWindow ? true : false; }
88
89 private:
90     /// Associated layout
91     GenericLayout &m_rLayout;
92
93     /// Autoresize parameter
94     bool m_bAutoResize;
95
96     /// Difference between layout size and video size
97     int m_xShift, m_yShift;
98
99     /// Is the video Control useable
100     bool m_bIsUseable;
101
102     /// Vout window
103     VoutWindow *m_pVoutWindow;
104 };
105
106 #endif