]> git.sesse.net Git - vlc/blob - modules/gui/skins2/x11/x11_factory.hpp
Use long instead of int32_t when passing 32-bits value to XChangeProperty.
[vlc] / modules / gui / skins2 / x11 / x11_factory.hpp
1 /*****************************************************************************
2  * x11_factory.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_FACTORY_HPP
26 #define X11_FACTORY_HPP
27
28 #include <X11/Xlib.h>
29
30 #include "../src/os_factory.hpp"
31 #include <map>
32
33 class X11Display;
34 class X11DragDrop;
35 class X11TimerLoop;
36
37
38 /// Class used to instanciate X11 specific objects
39 class X11Factory: public OSFactory
40 {
41     public:
42         /// Map to find the GenericWindow associated to a X11Window
43         map<Window, GenericWindow*> m_windowMap;
44         /// Map to find the Dnd object associated to a X11Window
45         map<Window, X11DragDrop*> m_dndMap;
46
47         X11Factory( intf_thread_t *pIntf );
48         virtual ~X11Factory();
49
50         /// Initialization method
51         virtual bool init();
52
53         /// Instantiate an object OSGraphics
54         virtual OSGraphics *createOSGraphics( int width, int height );
55
56         /// Get the instance of the singleton OSLoop
57         virtual OSLoop *getOSLoop();
58
59         /// Destroy the instance of OSLoop
60         virtual void destroyOSLoop();
61
62         /// Instantiate an OSTimer with the given command
63         virtual OSTimer *createOSTimer( CmdGeneric &rCmd );
64
65         /// Minimize all the windows
66         virtual void minimize();
67
68         /// Restore the minimized windows
69         virtual void restore();
70
71         /// Add an icon in the system tray
72         virtual void addInTray();
73
74         /// Remove the icon from the system tray
75         virtual void removeFromTray();
76
77         /// Show the task in the task bar
78         virtual void addInTaskBar();
79
80         /// Remove the task from the task bar
81         virtual void removeFromTaskBar();
82
83         /// Instantiate an OSWindow object
84         virtual OSWindow *createOSWindow( GenericWindow &rWindow,
85                                           bool dragDrop, bool playOnDrop,
86                                           OSWindow *pParent );
87
88         /// Instantiate an object OSTooltip
89         virtual OSTooltip *createOSTooltip();
90
91         /// Instantiate an object OSPopup
92         virtual OSPopup *createOSPopup();
93
94         /// Get the directory separator
95         virtual const string &getDirSeparator() const { return m_dirSep; }
96
97         /// Get the resource path
98         virtual const list<string> &getResourcePath() const
99             { return m_resourcePath; }
100
101         /// Get the screen size
102         virtual int getScreenWidth() const;
103         virtual int getScreenHeight() const;
104
105         /// Get the work area (screen area without taskbars)
106         virtual SkinsRect getWorkArea() const;
107
108         /// Get the position of the mouse
109         virtual void getMousePos( int &rXPos, int &rYPos ) const;
110
111         /// Change the cursor
112         virtual void changeCursor( CursorType_t type ) const { /*TODO*/ }
113
114         /// Delete a directory recursively
115         virtual void rmDir( const string &rPath );
116
117         /// Get the timer loop
118         X11TimerLoop *getTimerLoop() const { return m_pTimerLoop; }
119
120     private:
121         /// X11 display
122         X11Display *m_pDisplay;
123         /// Timer loop
124         X11TimerLoop *m_pTimerLoop;
125         /// Directory separator
126         const string m_dirSep;
127         /// Resource path
128         list<string> m_resourcePath;
129 };
130
131 #endif