]> git.sesse.net Git - vlc/blob - modules/gui/skins2/x11/x11_window.hpp
f20b06daf14ccbae666d620035481cf3291710f9
[vlc] / modules / gui / skins2 / x11 / x11_window.hpp
1 /*****************************************************************************
2  * x11_window.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 X11_WINDOW_HPP
26 #define X11_WINDOW_HPP
27
28 #include <X11/Xlib.h>
29
30 #include "../src/os_window.hpp"
31
32 class X11Display;
33 class X11DragDrop;
34
35
36 /// X11 implementation of OSWindow
37 class X11Window: public OSWindow
38 {
39     public:
40         X11Window( intf_thread_t *pIntf, GenericWindow &rWindow,
41                    X11Display &rDisplay, bool dragDrop, bool playOnDrop,
42                    X11Window *pParentWindow );
43
44         virtual ~X11Window();
45
46         // Show the window
47         virtual void show( int left, int top ) const;
48
49         // Hide the window
50         virtual void hide() const;
51
52         /// Move the window
53         virtual void moveResize( int left, int top,
54                                  int width, int height ) const;
55
56         /// Bring the window on top
57         virtual void raise() const;
58
59         /// Set the opacity of the window (0 = transparent, 255 = opaque)
60         virtual void setOpacity( uint8_t value ) const;
61
62         /// Toggle the window on top
63         virtual void toggleOnTop( bool onTop ) const;
64
65         /// Get the window ID
66         Window getDrawable() const { return m_wnd; }
67
68         /// Getter for the handler
69         void* getOSHandle() const { return (void*) m_wnd; }
70
71         /// Getter for the handler
72         void* getParentOSHandle() const { return (void*) m_wnd_parent; }
73
74         /// reparent the window
75         void reparent( void* OSHandle, int x, int y, int w, int h );
76
77     private:
78         /// X11 display
79         X11Display &m_rDisplay;
80         /// Window ID
81         Window m_wnd;
82         /// Window ID
83         Window m_wnd_parent;
84         /// Parent window
85         X11Window *m_pParent;
86         /// Indicates whether the window handles drag&drop events
87         bool m_dragDrop;
88         /// Drop target
89         X11DragDrop *m_pDropTarget;
90 };
91
92
93 #endif