]> git.sesse.net Git - vlc/blob - modules/gui/skins2/win32/win32_factory.cpp
* the sample theme should work better with that...
[vlc] / modules / gui / skins2 / win32 / win32_factory.cpp
1 /*****************************************************************************
2  * win32_factory.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: win32_factory.cpp,v 1.1 2004/01/03 23:31:34 asmax Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #ifdef WIN32_SKINS
26
27 #include "win32_factory.hpp"
28 #include "win32_graphics.hpp"
29 #include "win32_timer.hpp"
30 #include "win32_window.hpp"
31 #include "win32_tooltip.hpp"
32 #include "win32_loop.hpp"
33
34
35 LRESULT CALLBACK Win32Proc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
36 {
37     // Get pointer to thread info: should only work with the parent window
38     intf_thread_t *p_intf = (intf_thread_t *)GetWindowLongPtr( hwnd,
39         GWLP_USERDATA );
40
41     // If doesn't exist, treat windows message normally
42     if( p_intf == NULL || p_intf->p_sys->p_osFactory == NULL )
43     {
44         return DefWindowProc( hwnd, uMsg, wParam, lParam );
45     }
46
47     // Here we know we are getting a message for the parent window, since it is
48     // the only one to store p_intf...
49     // Yes, it is a kludge :)
50
51 //Win32Factory *pFactory = (Win32Factory*)Win32Factory::instance( p_intf );
52 //msg_Err( p_intf, "Parent window %p %p %u %i\n", pFactory->m_hParentWindow, hwnd, uMsg, wParam );
53     // If Window is parent window
54     // XXX: this test isn't needed, see the kludge above...
55 //    if( hwnd == pFactory->m_hParentWindow )
56     {
57         if( uMsg == WM_SYSCOMMAND )
58         {
59             // If closing parent window
60             if( wParam == SC_CLOSE )
61             {
62                 Win32Loop *pLoop = (Win32Loop*)Win32Loop::instance( p_intf );
63                 pLoop->exit();
64                 return 0;
65             }
66             else
67             {
68                 msg_Err( p_intf, "WM_SYSCOMMAND %i", wParam );
69             }
70 //            if( (Event *)wParam != NULL )
71 //                ( (Event *)wParam )->SendEvent();
72 //            return 0;
73         }
74     }
75
76     // If hwnd does not match any window or message not processed
77     return DefWindowProc( hwnd, uMsg, wParam, lParam );
78 }
79
80
81 Win32Factory::Win32Factory( intf_thread_t *pIntf ):
82     OSFactory( pIntf ), TransparentBlt( NULL ),
83     SetLayeredWindowAttributes( NULL )
84 {
85     // see init()
86 }
87
88
89 bool Win32Factory::init()
90 {
91     // Get instance handle
92     m_hInst = GetModuleHandle( NULL );
93     if( m_hInst == NULL )
94     {
95         msg_Err( getIntf(), "Cannot get module handle" );
96     }
97
98     // Create window class
99     WNDCLASS skinWindowClass;
100     skinWindowClass.style = CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS;
101     skinWindowClass.lpfnWndProc = (WNDPROC) Win32Proc;
102     skinWindowClass.lpszClassName = "SkinWindowClass";
103     skinWindowClass.lpszMenuName = NULL;
104     skinWindowClass.cbClsExtra = 0;
105     skinWindowClass.cbWndExtra = 0;
106     skinWindowClass.hbrBackground = HBRUSH (COLOR_WINDOW);
107     skinWindowClass.hCursor = LoadCursor( NULL , IDC_ARROW );
108     skinWindowClass.hIcon = LoadIcon( m_hInst, "VLC_ICON" );
109     skinWindowClass.hInstance = m_hInst;
110
111     // Register class and check it
112     if( !RegisterClass( &skinWindowClass ) )
113     {
114         WNDCLASS wndclass;
115
116         // Check why it failed. If it's because the class already exists
117         // then fine, otherwise return with an error.
118         if( !GetClassInfo( m_hInst, "SkinWindowClass", &wndclass ) )
119         {
120             msg_Err( getIntf(), "Cannot register window class" );
121             return false;
122         }
123     }
124
125     // Create Window
126     m_hParentWindow = CreateWindowEx( WS_EX_APPWINDOW, "SkinWindowClass",
127         "VLC Media Player", WS_SYSMENU, 0, 0, 0, 0, 0, 0,
128         m_hInst, NULL );
129     if( m_hParentWindow == NULL )
130     {
131         msg_Err( getIntf(), "Cannot create parent window" );
132         return false;
133     }
134
135     // We do it this way otherwise CreateWindowEx will fail
136     // if WS_EX_LAYERED is not supported
137     SetWindowLongPtr( m_hParentWindow, GWL_EXSTYLE,
138                       GetWindowLong( m_hParentWindow, GWL_EXSTYLE )
139                       | WS_EX_LAYERED );
140
141     // Store with it a pointer to the interface thread
142     SetWindowLongPtr( m_hParentWindow, GWLP_USERDATA, (LONG_PTR)getIntf() );
143     ShowWindow( m_hParentWindow, SW_SHOW );
144
145     // Initialize the OLE library (for drag & drop)
146     OleInitialize( NULL );
147
148     // We dynamically load msimg32.dll to get a pointer to TransparentBlt()
149     m_hMsimg32 = LoadLibrary( "msimg32.dll" );
150     if( !m_hMsimg32 ||
151         !( TransparentBlt =
152             (BOOL (WINAPI*)(HDC, int, int, int, int,
153                             HDC, int, int, int, int, unsigned int))
154             GetProcAddress( m_hMsimg32, "TransparentBlt" ) ) )
155     {
156         TransparentBlt = NULL;
157         msg_Dbg( getIntf(), "Couldn't find TransparentBlt(), "
158                  "falling back to BitBlt()" );
159     }
160
161     // Idem for user32.dll and SetLayeredWindowAttributes()
162     m_hUser32 = LoadLibrary( "user32.dll" );
163     if( !m_hUser32 ||
164         !( SetLayeredWindowAttributes =
165             (BOOL (WINAPI *)(HWND, COLORREF, BYTE, DWORD))
166             GetProcAddress( m_hUser32, "SetLayeredWindowAttributes" ) ) )
167     {
168         SetLayeredWindowAttributes = NULL;
169         msg_Dbg( getIntf(), "Couldn't find SetLayeredWindowAttributes()" );
170     }
171
172     // All went well
173     return true;
174 }
175
176
177 Win32Factory::~Win32Factory()
178 {
179     // Uninitialize the OLE library
180     OleUninitialize();
181
182     // Unload msimg32.dll and user32.dll
183     if( m_hMsimg32 )
184         FreeLibrary( m_hMsimg32 );
185     if( m_hUser32 )
186         FreeLibrary( m_hUser32 );
187 }
188
189
190 OSGraphics *Win32Factory::createOSGraphics( int width, int height )
191 {
192     return new Win32Graphics( getIntf(), width, height );
193 }
194
195
196 OSLoop *Win32Factory::getOSLoop()
197 {
198     return Win32Loop::instance( getIntf() );
199 }
200
201
202 void Win32Factory::destroyOSLoop()
203 {
204     Win32Loop::destroy( getIntf() );
205 }
206
207
208 OSTimer *Win32Factory::createOSTimer( const Callback &rCallback )
209 {
210     return new Win32Timer( getIntf(), rCallback, m_hParentWindow );
211 }
212
213
214 OSWindow *Win32Factory::createOSWindow( GenericWindow &rWindow, bool dragDrop,
215                                         bool playOnDrop )
216 {
217     return new Win32Window( getIntf(), rWindow, m_hInst, m_hParentWindow,
218                             dragDrop, playOnDrop );
219 }
220
221
222 OSTooltip *Win32Factory::createOSTooltip()
223 {
224     return new Win32Tooltip( getIntf(), m_hInst, m_hParentWindow );
225 }
226
227
228 const string Win32Factory::getDirSeparator() const
229 {
230     return "\\";
231 }
232
233
234 int Win32Factory::getScreenWidth() const
235 {
236     return GetSystemMetrics(SM_CXSCREEN);
237
238 }
239
240
241 int Win32Factory::getScreenHeight() const
242 {
243     return GetSystemMetrics(SM_CYSCREEN);
244 }
245
246
247 Rect Win32Factory::getWorkArea() const
248 {
249     RECT r;
250     SystemParametersInfo( SPI_GETWORKAREA, 0, &r, 0 );
251     // Fill a Rect object
252     Rect rect( r.left, r.top, r.right, r.bottom );
253     return rect;
254 }
255
256
257 void Win32Factory::getMousePos( int &rXPos, int &rYPos ) const
258 {
259     POINT mousePos;
260     GetCursorPos( &mousePos );
261     rXPos = mousePos.x;
262     rYPos = mousePos.y;
263 }
264
265
266 void Win32Factory::rmDir( const string &rPath )
267 {
268     WIN32_FIND_DATA find;
269     string file;
270     string findFiles = rPath + "\\*";
271     HANDLE handle    = FindFirstFile( findFiles.c_str(), &find );
272
273     while( handle != INVALID_HANDLE_VALUE )
274     {
275         // If file is neither "." nor ".."
276         if( strcmp( find.cFileName, "." ) && strcmp( find.cFileName, ".." ) )
277         {
278             // Set file name
279             file = rPath + "\\" + (string)find.cFileName;
280
281             // If file is a directory, delete it recursively
282             if( find.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY )
283             {
284                 rmDir( file );
285             }
286             // Else, it is a file so simply delete it
287             else
288             {
289                 DeleteFile( file.c_str() );
290             }
291         }
292
293         // If no more file in directory, exit while
294         if( !FindNextFile( handle, &find ) )
295             break;
296     }
297
298     // Now directory is empty so can be removed
299     FindClose( handle );
300     RemoveDirectory( rPath.c_str() );
301 }
302
303
304 #endif