]> git.sesse.net Git - vlc/blob - activex/plugin.cpp
- activex: misc. cleanups
[vlc] / activex / plugin.cpp
1 /*****************************************************************************
2  * plugin.cpp: ActiveX control for VLC
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  *
6  * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #include "plugin.h"
24
25 #include "oleobject.h"
26 #include "olecontrol.h"
27 #include "oleinplaceobject.h"
28 #include "oleinplaceactiveobject.h"
29 #include "persistpropbag.h"
30 #include "persiststreaminit.h"
31 #include "persiststorage.h"
32 #include "provideclassinfo.h"
33 #include "connectioncontainer.h"
34 #include "objectsafety.h"
35 #include "vlccontrol.h"
36 #include "vlccontrol2.h"
37 #include "viewobject.h"
38 #include "dataobject.h"
39 #include "supporterrorinfo.h"
40
41 #include "utils.h"
42
43 #include <string.h>
44 #include <winreg.h>
45 #include <winuser.h>
46 #include <servprov.h>
47 #include <shlwapi.h>
48 #include <wininet.h>
49
50 using namespace std;
51
52 ////////////////////////////////////////////////////////////////////////
53 //class factory
54
55 static LRESULT CALLBACK VLCInPlaceClassWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
56     VLCPlugin *p_instance = reinterpret_cast<VLCPlugin *>(GetWindowLongPtr(hWnd, GWLP_USERDATA));
57
58     switch( uMsg )
59     {
60         case WM_ERASEBKGND:
61             return 1L;
62
63         case WM_PAINT:
64             PAINTSTRUCT ps;
65             RECT pr;
66             if( GetUpdateRect(hWnd, &pr, FALSE) )
67             {
68                 RECT bounds;
69                 GetClientRect(hWnd, &bounds);
70                 BeginPaint(hWnd, &ps);
71                 p_instance->onPaint(ps.hdc, bounds, pr);
72                 EndPaint(hWnd, &ps);
73             }
74             return 0L;
75
76         default:
77             return DefWindowProc(hWnd, uMsg, wParam, lParam);
78     }
79 };
80
81 VLCPluginClass::VLCPluginClass(LONG *p_class_ref, HINSTANCE hInstance, REFCLSID rclsid) :
82     _p_class_ref(p_class_ref),
83     _hinstance(hInstance),
84     _classid(rclsid),
85     _inplace_picture(NULL)
86 {
87     WNDCLASS wClass;
88
89     if( ! GetClassInfo(hInstance, getInPlaceWndClassName(), &wClass) )
90     {
91         wClass.style          = CS_NOCLOSE|CS_DBLCLKS;
92         wClass.lpfnWndProc    = VLCInPlaceClassWndProc;
93         wClass.cbClsExtra     = 0;
94         wClass.cbWndExtra     = 0;
95         wClass.hInstance      = hInstance;
96         wClass.hIcon          = NULL;
97         wClass.hCursor        = LoadCursor(NULL, IDC_ARROW);
98         wClass.hbrBackground  = NULL;
99         wClass.lpszMenuName   = NULL;
100         wClass.lpszClassName  = getInPlaceWndClassName();
101
102         _inplace_wndclass_atom = RegisterClass(&wClass);
103     }
104     else
105     {
106         _inplace_wndclass_atom = 0;
107     }
108
109     HBITMAP hbitmap = (HBITMAP)LoadImage(getHInstance(), TEXT("INPLACE-PICT"), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
110     if( NULL != hbitmap )
111     {
112         PICTDESC pictDesc;
113
114         pictDesc.cbSizeofstruct = sizeof(PICTDESC);
115         pictDesc.picType        = PICTYPE_BITMAP;
116         pictDesc.bmp.hbitmap    = hbitmap;
117         pictDesc.bmp.hpal       = NULL;
118
119         if( FAILED(OleCreatePictureIndirect(&pictDesc, IID_IPicture, TRUE, reinterpret_cast<LPVOID*>(&_inplace_picture))) )
120             _inplace_picture = NULL;
121     }
122     AddRef();
123 };
124
125 VLCPluginClass::~VLCPluginClass()
126 {
127     if( 0 != _inplace_wndclass_atom )
128         UnregisterClass(MAKEINTATOM(_inplace_wndclass_atom), _hinstance);
129
130     if( NULL != _inplace_picture )
131         _inplace_picture->Release();
132 };
133
134 STDMETHODIMP VLCPluginClass::QueryInterface(REFIID riid, void **ppv)
135 {
136     if( NULL == ppv )
137         return E_INVALIDARG;
138
139     if( (IID_IUnknown == riid)
140      || (IID_IClassFactory == riid) )
141     {
142         AddRef();
143         *ppv = reinterpret_cast<LPVOID>(this);
144
145         return NOERROR;
146     }
147
148     *ppv = NULL;
149
150     return E_NOINTERFACE;
151 };
152
153 STDMETHODIMP_(ULONG) VLCPluginClass::AddRef(void)
154 {
155     return InterlockedIncrement(_p_class_ref);
156 };
157
158 STDMETHODIMP_(ULONG) VLCPluginClass::Release(void)
159 {
160     ULONG refcount = InterlockedDecrement(_p_class_ref);
161     if( 0 == refcount )
162     {
163         delete this;
164         return 0;
165     }
166     return refcount;
167 };
168
169 STDMETHODIMP VLCPluginClass::CreateInstance(LPUNKNOWN pUnkOuter, REFIID riid, void **ppv)
170 {
171     if( NULL == ppv )
172         return E_POINTER;
173
174     *ppv = NULL;
175
176     if( (NULL != pUnkOuter) && (IID_IUnknown != riid) ) {
177         return CLASS_E_NOAGGREGATION;
178     }
179
180     VLCPlugin *plugin = new VLCPlugin(this, pUnkOuter);
181     if( NULL != plugin )
182     {
183         HRESULT hr = plugin->QueryInterface(riid, ppv);
184         // the following will destroy the object if QueryInterface() failed
185         plugin->Release();
186         return hr;
187     }
188     return E_OUTOFMEMORY;
189 };
190
191 STDMETHODIMP VLCPluginClass::LockServer(BOOL fLock)
192 {
193     if( fLock )
194         AddRef();
195     else 
196         Release();
197
198     return S_OK;
199 };
200
201 ////////////////////////////////////////////////////////////////////////
202
203 VLCPlugin::VLCPlugin(VLCPluginClass *p_class, LPUNKNOWN pUnkOuter) :
204     _inplacewnd(NULL),
205     _p_class(p_class),
206     _i_ref(1UL),
207     _p_libvlc(NULL),
208     _i_codepage(CP_ACP),
209     _b_usermode(TRUE)
210 {
211     p_class->AddRef();
212
213     vlcOleControl = new VLCOleControl(this);
214     vlcOleInPlaceObject = new VLCOleInPlaceObject(this);
215     vlcOleInPlaceActiveObject = new VLCOleInPlaceActiveObject(this);
216     vlcPersistStorage = new VLCPersistStorage(this);
217     vlcPersistStreamInit = new VLCPersistStreamInit(this);
218     vlcPersistPropertyBag = new VLCPersistPropertyBag(this);
219     vlcProvideClassInfo = new VLCProvideClassInfo(this);
220     vlcConnectionPointContainer = new VLCConnectionPointContainer(this);
221     vlcObjectSafety = new VLCObjectSafety(this);
222     vlcControl = new VLCControl(this);
223     vlcControl2 = new VLCControl2(this);
224     vlcViewObject = new VLCViewObject(this);
225     vlcDataObject = new VLCDataObject(this);
226     vlcOleObject = new VLCOleObject(this);
227     vlcSupportErrorInfo = new VLCSupportErrorInfo(this);
228
229     // configure controlling IUnknown interface for implemented interfaces
230     this->pUnkOuter = (NULL != pUnkOuter) ? pUnkOuter : dynamic_cast<LPUNKNOWN>(this);
231
232     // default picure
233     _p_pict = p_class->getInPlacePict();
234
235     // make sure that persistable properties are initialized
236     onInit();
237 };
238
239 VLCPlugin::~VLCPlugin()
240 {
241     delete vlcSupportErrorInfo;
242     delete vlcOleObject;
243     delete vlcDataObject;
244     delete vlcViewObject;
245     delete vlcControl2;
246     delete vlcControl;
247     delete vlcConnectionPointContainer;
248     delete vlcProvideClassInfo;
249     delete vlcPersistPropertyBag;
250     delete vlcPersistStreamInit;
251     delete vlcPersistStorage;
252     delete vlcOleInPlaceActiveObject;
253     delete vlcOleInPlaceObject;
254     delete vlcObjectSafety;
255
256     delete vlcOleControl;
257     if( _p_pict )
258         _p_pict->Release();
259
260     SysFreeString(_bstr_mrl);
261     SysFreeString(_bstr_baseurl);
262
263     _p_class->Release();
264 };
265
266 STDMETHODIMP VLCPlugin::QueryInterface(REFIID riid, void **ppv)
267 {
268     if( NULL == ppv )
269         return E_INVALIDARG;
270
271     if( IID_IUnknown == riid )
272         *ppv = reinterpret_cast<LPVOID>(this);
273     else if( IID_IOleObject == riid )
274         *ppv = reinterpret_cast<LPVOID>(vlcOleObject);
275     else if( IID_IOleControl == riid )
276         *ppv = reinterpret_cast<LPVOID>(vlcOleControl);
277     else if( IID_IOleWindow == riid )
278         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceObject);
279     else if( IID_IOleInPlaceObject == riid )
280         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceObject);
281     else if( IID_IOleInPlaceActiveObject == riid )
282         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceActiveObject);
283     else if( IID_IPersist == riid )
284         *ppv = reinterpret_cast<LPVOID>(vlcPersistStreamInit);
285     else if( IID_IPersistStreamInit == riid )
286         *ppv = reinterpret_cast<LPVOID>(vlcPersistStreamInit);
287     else if( IID_IPersistStorage == riid )
288         *ppv = reinterpret_cast<LPVOID>(vlcPersistStorage);
289     else if( IID_IPersistPropertyBag == riid )
290         *ppv = reinterpret_cast<LPVOID>(vlcPersistPropertyBag);
291     else if( IID_IProvideClassInfo == riid )
292         *ppv = reinterpret_cast<LPVOID>(vlcProvideClassInfo);
293     else if( IID_IProvideClassInfo2 == riid )
294         *ppv = reinterpret_cast<LPVOID>(vlcProvideClassInfo);
295     else if( IID_IConnectionPointContainer == riid )
296         *ppv = reinterpret_cast<LPVOID>(vlcConnectionPointContainer);
297     else if( IID_IObjectSafety == riid )
298         *ppv = reinterpret_cast<LPVOID>(vlcObjectSafety);
299     else if( IID_IDispatch == riid )
300         *ppv = (CLSID_VLCPlugin2 == getClassID()) ?
301                 reinterpret_cast<LPVOID>(vlcControl2) :
302                 reinterpret_cast<LPVOID>(vlcControl);
303     else if( IID_IVLCControl == riid )
304         *ppv = reinterpret_cast<LPVOID>(vlcControl);
305     else if( IID_IVLCControl2 == riid )
306         *ppv = reinterpret_cast<LPVOID>(vlcControl2);
307     else if( IID_IViewObject == riid )
308         *ppv = reinterpret_cast<LPVOID>(vlcViewObject);
309     else if( IID_IViewObject2 == riid )
310         *ppv = reinterpret_cast<LPVOID>(vlcViewObject);
311     else if( IID_IDataObject == riid )
312         *ppv = reinterpret_cast<LPVOID>(vlcDataObject);
313     else if( IID_ISupportErrorInfo == riid )
314         *ppv = reinterpret_cast<LPVOID>(vlcSupportErrorInfo);
315     else
316     {
317         *ppv = NULL;
318         return E_NOINTERFACE;
319     }
320     ((LPUNKNOWN)*ppv)->AddRef();
321     return NOERROR;
322 };
323
324 STDMETHODIMP_(ULONG) VLCPlugin::AddRef(void)
325 {
326     return InterlockedIncrement((LONG *)&_i_ref);
327 };
328
329 STDMETHODIMP_(ULONG) VLCPlugin::Release(void)
330 {
331     if( ! InterlockedDecrement((LONG *)&_i_ref) )
332     {
333         delete this;
334         return 0;
335     }
336     return _i_ref;
337 };
338
339 //////////////////////////////////////
340
341 HRESULT VLCPlugin::onInit(void)
342 {
343     if( NULL == _p_libvlc )
344     {
345         // initialize persistable properties
346         _b_autoplay = TRUE;
347         _b_autoloop = FALSE;
348         _bstr_baseurl = NULL;
349         _bstr_mrl = NULL;
350         _b_visible = TRUE;
351         _b_mute = FALSE;
352         _i_volume = 50;
353         _i_time   = 0;
354         // set default/preferred size (320x240) pixels in HIMETRIC
355         HDC hDC = CreateDevDC(NULL);
356         _extent.cx = 320;
357         _extent.cy = 240;
358         HimetricFromDP(hDC, (LPPOINT)&_extent, 1);
359         DeleteDC(hDC);
360
361         return S_OK;
362     }
363     return CO_E_ALREADYINITIALIZED;
364 };
365
366 HRESULT VLCPlugin::onLoad(void)
367 {
368     if( SysStringLen(_bstr_baseurl) == 0 )
369     {
370         /*
371         ** try to retreive the base URL using the client site moniker, which for Internet Explorer
372         ** is the URL of the page the plugin is embedded into. 
373         */
374         LPOLECLIENTSITE pClientSite;
375         if( SUCCEEDED(vlcOleObject->GetClientSite(&pClientSite)) && (NULL != pClientSite) )
376         {
377             IBindCtx *pBC = 0;
378             if( SUCCEEDED(CreateBindCtx(0, &pBC)) )
379             {
380                 LPMONIKER pContMoniker = NULL;
381                 if( SUCCEEDED(pClientSite->GetMoniker(OLEGETMONIKER_ONLYIFTHERE,
382                                 OLEWHICHMK_CONTAINER, &pContMoniker)) )
383                 {
384                     LPOLESTR base_url;
385                     if( SUCCEEDED(pContMoniker->GetDisplayName(pBC, NULL, &base_url)) )
386                     {
387                         /*
388                         ** check that the moniker name is a URL
389                         */
390                         if( UrlIsW(base_url, URLIS_URL) )
391                         {
392                             /* copy base URL */
393                             _bstr_baseurl = SysAllocString(base_url);
394                         }
395                         CoTaskMemFree(base_url);
396                     }
397                 }
398             }
399         }
400     }
401     setDirty(FALSE);
402     return S_OK;
403 };
404
405 HRESULT VLCPlugin::getVLCObject(int* i_vlc)
406 {
407     libvlc_instance_t *p_libvlc;
408     HRESULT result = getVLC(&p_libvlc);
409     if( SUCCEEDED(result) )
410     {
411         *i_vlc = libvlc_get_vlc_id(p_libvlc);
412     }
413     else
414     {
415         *i_vlc = 0;
416     }
417     return result;
418 }
419
420 HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
421 {
422     extern HMODULE DllGetModule();
423
424     if( ! isRunning() )
425     {
426         /*
427         ** default initialization options
428         */
429         char *ppsz_argv[32] = { "vlc" };
430         int   ppsz_argc = 1;
431
432         char p_progpath[MAX_PATH];
433         {
434             TCHAR w_progpath[MAX_PATH];
435             DWORD len = GetModuleFileName(DllGetModule(), w_progpath, MAX_PATH);
436             if( len > 0 )
437             {
438                 len = WideCharToMultiByte(CP_UTF8, 0, w_progpath, len, p_progpath,
439                            sizeof(p_progpath)-1, NULL, NULL);
440                 if( len > 0 )
441                 {
442                     p_progpath[len] = '\0';
443                     ppsz_argv[0] = p_progpath;
444                 }
445             }
446         }
447
448         ppsz_argv[ppsz_argc++] = "-vv";
449
450         HKEY h_key;
451         char p_pluginpath[MAX_PATH];
452         if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, TEXT("Software\\VideoLAN\\VLC"),
453                           0, KEY_READ, &h_key ) == ERROR_SUCCESS )
454         {
455             DWORD i_type, i_data = MAX_PATH;
456             TCHAR w_pluginpath[MAX_PATH];
457             if( RegQueryValueEx( h_key, TEXT("InstallDir"), 0, &i_type,
458                                  (LPBYTE)w_pluginpath, &i_data ) == ERROR_SUCCESS )
459             {
460                 if( i_type == REG_SZ )
461                 {
462                     if( WideCharToMultiByte(CP_UTF8, 0, w_pluginpath, -1, p_pluginpath,
463                              sizeof(p_pluginpath)-sizeof("\\plugins")+1, NULL, NULL) )
464                     {
465                         strcat( p_pluginpath, "\\plugins" );
466                         ppsz_argv[ppsz_argc++] = "--plugin-path";
467                         ppsz_argv[ppsz_argc++] = p_pluginpath;
468                     }
469                 }
470             }
471             RegCloseKey( h_key );
472         }
473
474         // make sure plugin isn't affected with VLC single instance mode
475         ppsz_argv[ppsz_argc++] = "--no-one-instance";
476
477         /* common settings */
478         ppsz_argv[ppsz_argc++] = "--no-stats";
479         ppsz_argv[ppsz_argc++] = "--no-media-library";
480         ppsz_argv[ppsz_argc++] = "--intf=dummy";
481
482         // loop mode is a configuration option only
483         if( _b_autoloop )
484             ppsz_argv[ppsz_argc++] = "--loop";
485
486         if( IsDebuggerPresent() )
487         {
488             /*
489             ** VLC default threading mechanism is designed to be as compatible
490             ** with POSIX as possible. However when debugged on win32, threads
491             ** lose signals and eventually VLC get stuck during initialization.
492             ** threading support can be configured to be more debugging friendly
493             ** but it will be less compatible with POSIX.
494             ** This is done by initializing with the following options:
495             */
496             ppsz_argv[ppsz_argc++] = "--fast-mutex";
497             ppsz_argv[ppsz_argc++] = "--win9x-cv-method=1";
498         }
499
500 DebugBreak();
501
502         _p_libvlc = libvlc_new(ppsz_argc, ppsz_argv, NULL);
503         if( NULL == _p_libvlc )
504         {
505             *pp_libvlc = NULL;
506             return E_FAIL;
507         }
508
509         // initial volume setting
510         libvlc_audio_set_volume(_p_libvlc, _i_volume, NULL);
511         if( _b_mute )
512         {
513             libvlc_audio_set_mute(_p_libvlc, TRUE, NULL);
514         }
515
516         // initial playlist item
517         if( SysStringLen(_bstr_mrl) > 0 )
518         {
519             char *psz_mrl = NULL;
520
521             if( SysStringLen(_bstr_baseurl) > 0 )
522             {
523                 /*
524                 ** if the MRL a relative URL, we should end up with an absolute URL
525                 */
526                 LPWSTR abs_url = CombineURL(_bstr_baseurl, _bstr_mrl);
527                 if( NULL != abs_url )
528                 {
529                     psz_mrl = CStrFromWSTR(CP_UTF8, abs_url, wcslen(abs_url));
530                     CoTaskMemFree(abs_url);
531                 }
532                 else
533                 {
534                     psz_mrl = CStrFromBSTR(CP_UTF8, _bstr_mrl);
535                 }
536             }
537             else
538             {
539                 /*
540                 ** baseURL is empty, assume MRL is absolute
541                 */
542                 psz_mrl = CStrFromBSTR(CP_UTF8, _bstr_mrl);
543             }
544             if( NULL != psz_mrl )
545             {
546                 const char *options[1];
547                 int i_options = 0;
548
549                 char timeBuffer[32];
550                 if( _i_time )
551                 {
552                     snprintf(timeBuffer, sizeof(timeBuffer), ":start-time=%d", _i_time);
553                     options[i_options++] = timeBuffer;
554                 }
555                 // add default target to playlist
556                 libvlc_playlist_add_extended(_p_libvlc, psz_mrl, NULL, i_options, options, NULL);
557                 CoTaskMemFree(psz_mrl);
558             }
559         }
560     }
561     *pp_libvlc = _p_libvlc;
562     return S_OK;
563 };
564
565 void VLCPlugin::setErrorInfo(REFIID riid, const char *description)
566 {
567     vlcSupportErrorInfo->setErrorInfo( getClassID() == CLSID_VLCPlugin2 ?
568         OLESTR("VideoLAN.VLCPlugin.2") : OLESTR("VideoLAN.VLCPlugin.1"),
569         riid, description );
570 };
571
572 HRESULT VLCPlugin::onAmbientChanged(LPUNKNOWN pContainer, DISPID dispID)
573 {
574     VARIANT v;
575     switch( dispID )
576     {
577         case DISPID_AMBIENT_BACKCOLOR:
578             break;
579         case DISPID_AMBIENT_DISPLAYNAME:
580             break;
581         case DISPID_AMBIENT_FONT:
582             break;
583         case DISPID_AMBIENT_FORECOLOR:
584             break;
585         case DISPID_AMBIENT_LOCALEID:
586             break;
587         case DISPID_AMBIENT_MESSAGEREFLECT:
588             break;
589         case DISPID_AMBIENT_SCALEUNITS:
590             break;
591         case DISPID_AMBIENT_TEXTALIGN:
592             break;
593         case DISPID_AMBIENT_USERMODE:
594             VariantInit(&v);
595             V_VT(&v) = VT_BOOL;
596             if( SUCCEEDED(GetObjectProperty(pContainer, dispID, v)) )
597             {
598                 setUserMode(V_BOOL(&v) != VARIANT_FALSE);
599             }
600             break;
601         case DISPID_AMBIENT_UIDEAD:
602             break;
603         case DISPID_AMBIENT_SHOWGRABHANDLES:
604             break;
605         case DISPID_AMBIENT_SHOWHATCHING:
606             break;
607         case DISPID_AMBIENT_DISPLAYASDEFAULT:
608             break;
609         case DISPID_AMBIENT_SUPPORTSMNEMONICS:
610             break;
611         case DISPID_AMBIENT_AUTOCLIP:
612             break;
613         case DISPID_AMBIENT_APPEARANCE:
614             break;
615         case DISPID_AMBIENT_CODEPAGE:
616             VariantInit(&v);
617             V_VT(&v) = VT_I4;
618             if( SUCCEEDED(GetObjectProperty(pContainer, dispID, v)) )
619             {
620                 setCodePage(V_I4(&v));
621             }
622             break;
623         case DISPID_AMBIENT_PALETTE:
624             break;
625         case DISPID_AMBIENT_CHARSET:
626             break;
627         case DISPID_AMBIENT_RIGHTTOLEFT:
628             break;
629         case DISPID_AMBIENT_TOPTOBOTTOM:
630             break;
631         case DISPID_UNKNOWN:
632             /*
633             ** multiple property change, look up the ones we are interested in
634             */
635             VariantInit(&v);
636             V_VT(&v) = VT_BOOL;
637             if( SUCCEEDED(GetObjectProperty(pContainer, DISPID_AMBIENT_USERMODE, v)) )
638             {
639                 setUserMode(V_BOOL(&v) != VARIANT_FALSE);
640             }
641             VariantInit(&v);
642             V_VT(&v) = VT_I4;
643             if( SUCCEEDED(GetObjectProperty(pContainer, DISPID_AMBIENT_CODEPAGE, v)) )
644             {
645                 setCodePage(V_I4(&v));
646             }
647             break;
648     }
649     return S_OK;
650 };
651
652 HRESULT VLCPlugin::onClose(DWORD dwSaveOption)
653 {
654     if( isInPlaceActive() )
655     {
656         onInPlaceDeactivate();
657     }
658     if( isRunning() )
659     {
660         libvlc_instance_t* p_libvlc = _p_libvlc;
661
662         IVLCLog *p_log;
663         if( SUCCEEDED(vlcControl2->get_log(&p_log)) )
664         {
665             // make sure the log is disabled
666             p_log->put_verbosity(-1);
667             p_log->Release();
668         }
669
670         _p_libvlc = NULL;
671         vlcDataObject->onClose();
672
673         libvlc_destroy(p_libvlc, NULL );
674     }
675     return S_OK;
676 };
677
678 BOOL VLCPlugin::isInPlaceActive(void)
679 {
680     return (NULL != _inplacewnd);
681 };
682
683 HRESULT VLCPlugin::onActivateInPlace(LPMSG lpMesg, HWND hwndParent, LPCRECT lprcPosRect, LPCRECT lprcClipRect)
684 {
685     RECT clipRect = *lprcClipRect;
686
687     /*
688     ** record keeping of control geometry within container
689     */ 
690     _posRect = *lprcPosRect;
691
692     /*
693     ** Create a window for in place activated control.
694     ** the window geometry matches the control viewport
695     ** within container so that embedded video is always
696     ** properly displayed.
697     */
698     _inplacewnd = CreateWindow(_p_class->getInPlaceWndClassName(),
699             TEXT("VLC Plugin In-Place Window"),
700             WS_CHILD|WS_CLIPCHILDREN|WS_CLIPSIBLINGS,
701             lprcPosRect->left,
702             lprcPosRect->top,
703             lprcPosRect->right-lprcPosRect->left,
704             lprcPosRect->bottom-lprcPosRect->top,
705             hwndParent,
706             0,
707             _p_class->getHInstance(),
708             NULL
709            );
710
711     if( NULL == _inplacewnd )
712         return E_FAIL;
713
714     SetWindowLongPtr(_inplacewnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(this));
715
716     /* change cliprect coordinates system relative to window bounding rect */
717     OffsetRect(&clipRect, -lprcPosRect->left, -lprcPosRect->top);
718
719     HRGN clipRgn = CreateRectRgnIndirect(&clipRect);
720     SetWindowRgn(_inplacewnd, clipRgn, TRUE);
721
722     if( _b_usermode )
723     {
724         /* will run vlc if not done already */
725         libvlc_instance_t* p_libvlc;
726         HRESULT result = getVLC(&p_libvlc);
727         if( FAILED(result) )
728             return result;
729
730         /* set internal video width and height */
731         libvlc_video_set_size(p_libvlc,
732             lprcPosRect->right-lprcPosRect->left,
733             lprcPosRect->bottom-lprcPosRect->top,
734             NULL );
735
736         /* set internal video parent window */
737         libvlc_video_set_parent(p_libvlc,
738             reinterpret_cast<libvlc_drawable_t>(_inplacewnd), NULL);
739
740         if( _b_autoplay & (libvlc_playlist_items_count(p_libvlc, NULL) > 0) )
741         {
742             libvlc_playlist_play(p_libvlc, 0, 0, NULL, NULL);
743             fireOnPlayEvent();
744         }
745     }
746
747     if( isVisible() )
748         ShowWindow(_inplacewnd, SW_SHOW);
749
750     return S_OK;
751 };
752
753 HRESULT VLCPlugin::onInPlaceDeactivate(void)
754 {
755     if( isRunning() )
756     {
757         libvlc_playlist_stop(_p_libvlc, NULL);
758         fireOnStopEvent();
759     }
760
761     DestroyWindow(_inplacewnd);
762     _inplacewnd = NULL;
763
764     return S_OK;
765 };
766
767 void VLCPlugin::setVisible(BOOL fVisible)
768 {
769     if( fVisible != _b_visible )
770     {
771         _b_visible = fVisible;
772         if( isInPlaceActive() )
773         {
774             ShowWindow(_inplacewnd, fVisible ? SW_SHOW : SW_HIDE);
775             if( fVisible )
776                 InvalidateRect(_inplacewnd, NULL, TRUE);
777         }
778         setDirty(TRUE);
779         firePropChangedEvent(DISPID_Visible);
780     }
781 };
782
783 void VLCPlugin::setVolume(int volume)
784 {
785     if( volume < 0 )
786         volume = 0;
787     else if( volume > 200 )
788         volume = 200;
789
790     if( volume != _i_volume )
791     {
792         _i_volume = volume;
793         if( isRunning() )
794         {
795             libvlc_audio_set_volume(_p_libvlc, _i_volume, NULL);
796         }
797         setDirty(TRUE);
798     }
799 };
800
801 void VLCPlugin::setTime(int seconds)
802 {
803     if( seconds < 0 )
804         seconds = 0;
805
806     if( seconds != _i_time )
807     {
808         setStartTime(_i_time);
809         if( isRunning() )
810         {
811             libvlc_input_t *p_input = libvlc_playlist_get_input(_p_libvlc, NULL);
812             if( NULL != p_input )
813             {
814                 libvlc_input_set_time(p_input, _i_time, NULL);
815                 libvlc_input_free(p_input);
816             }
817         }
818     }
819 };
820
821 void VLCPlugin::setFocus(BOOL fFocus)
822 {
823     if( fFocus )
824         SetActiveWindow(_inplacewnd);
825 };
826
827 BOOL VLCPlugin::hasFocus(void)
828 {
829     return GetActiveWindow() == _inplacewnd;
830 };
831
832 void VLCPlugin::onDraw(DVTARGETDEVICE * ptd, HDC hicTargetDev,
833         HDC hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds)
834 {
835     if( isVisible() )
836     {
837         long width = lprcBounds->right-lprcBounds->left;
838         long height = lprcBounds->bottom-lprcBounds->top;
839
840         RECT bounds = { lprcBounds->left, lprcBounds->top, lprcBounds->right, lprcBounds->bottom };
841         FillRect(hdcDraw, &bounds, (HBRUSH)GetStockObject(WHITE_BRUSH));
842
843         LPPICTURE pict = getPicture();
844         if( NULL != pict )
845         {
846             OLE_XSIZE_HIMETRIC picWidth;
847             OLE_YSIZE_HIMETRIC picHeight;
848
849             pict->get_Width(&picWidth);
850             pict->get_Height(&picHeight);
851
852             SIZEL picSize = { picWidth, picHeight };
853
854             if( NULL != hicTargetDev )
855             {
856                 DPFromHimetric(hicTargetDev, (LPPOINT)&picSize, 1);
857             }
858             else if( NULL != (hicTargetDev = CreateDevDC(ptd)) )
859             {
860                 DPFromHimetric(hicTargetDev, (LPPOINT)&picSize, 1);
861                 DeleteDC(hicTargetDev);
862             }
863
864             if( picSize.cx > width-4 )
865                 picSize.cx = width-4;
866             if( picSize.cy > height-4 )
867                 picSize.cy = height-4;
868
869             LONG dstX = lprcBounds->left+(width-picSize.cx)/2;
870             LONG dstY = lprcBounds->top+(height-picSize.cy)/2;
871
872             if( NULL != lprcWBounds )
873             {
874                 RECT wBounds = { lprcWBounds->left, lprcWBounds->top, lprcWBounds->right, lprcWBounds->bottom };
875                 pict->Render(hdcDraw, dstX, dstY, picSize.cx, picSize.cy,
876                         0L, picHeight, picWidth, -picHeight, &wBounds);
877             }
878             else 
879                 pict->Render(hdcDraw, dstX, dstY, picSize.cx, picSize.cy,
880                         0L, picHeight, picWidth, -picHeight, NULL);
881
882             pict->Release();
883         }
884
885         SelectObject(hdcDraw, GetStockObject(BLACK_BRUSH));
886
887         MoveToEx(hdcDraw, bounds.left, bounds.top, NULL);
888         LineTo(hdcDraw, bounds.left+width-1, bounds.top);
889         LineTo(hdcDraw, bounds.left+width-1, bounds.top+height-1);
890         LineTo(hdcDraw, bounds.left, bounds.top+height-1);
891         LineTo(hdcDraw, bounds.left, bounds.top);
892     }
893 };
894
895 void VLCPlugin::onPaint(HDC hdc, const RECT &bounds, const RECT &clipRect)
896 {
897     if( isVisible() )
898     {
899         /** if VLC is playing, it may not display any VIDEO content 
900         ** hence, draw control logo*/
901         HDC hdcDraw = CreateCompatibleDC(hdc);
902         if( NULL != hdcDraw )
903         {
904             SIZEL size = getExtent();
905             DPFromHimetric(hdc, (LPPOINT)&size, 1);
906             RECTL posRect = { 0, 0, size.cx, size.cy };
907
908             int width = bounds.right-bounds.left;
909             int height = bounds.bottom-bounds.top;
910
911             HBITMAP hBitmap = CreateCompatibleBitmap(hdc, width, height);
912             if( NULL != hBitmap )
913             {
914                 HBITMAP oldBmp = (HBITMAP)SelectObject(hdcDraw, hBitmap);
915
916                 if( (size.cx != width) || (size.cy != height) )
917                 {
918                     // needs to scale canvas
919                     SetMapMode(hdcDraw, MM_ANISOTROPIC);
920                     SetWindowExtEx(hdcDraw, size.cx, size.cy, NULL);
921                     SetViewportExtEx(hdcDraw, width, height, NULL);
922                 }
923
924                 onDraw(NULL, hdc, hdcDraw, &posRect, NULL);
925
926                 SetMapMode(hdcDraw, MM_TEXT);
927                 BitBlt(hdc, bounds.left, bounds.top,
928                         width, height,
929                         hdcDraw, 0, 0,
930                         SRCCOPY);
931
932                 SelectObject(hdcDraw, oldBmp);
933                 DeleteObject(hBitmap);
934             }
935             DeleteDC(hdcDraw);
936         }
937     }
938 };
939
940 void VLCPlugin::onPositionChange(LPCRECT lprcPosRect, LPCRECT lprcClipRect)
941 {
942     RECT clipRect = *lprcClipRect;
943
944     //RedrawWindow(GetParent(_inplacewnd), &_posRect, NULL, RDW_INVALIDATE|RDW_ERASE|RDW_ALLCHILDREN);
945
946     /*
947     ** record keeping of control geometry within container
948     */
949     _posRect = *lprcPosRect;
950
951     /*
952     ** change in-place window geometry to match clipping region
953     */
954     SetWindowPos(_inplacewnd, NULL,
955             lprcPosRect->left,
956             lprcPosRect->top,
957             lprcPosRect->right-lprcPosRect->left,
958             lprcPosRect->bottom-lprcPosRect->top,
959             SWP_NOACTIVATE|
960             SWP_NOCOPYBITS|
961             SWP_NOZORDER|
962             SWP_NOOWNERZORDER );
963
964     /* change cliprect coordinates system relative to window bounding rect */
965     OffsetRect(&clipRect, -lprcPosRect->left, -lprcPosRect->top);
966     HRGN clipRgn = CreateRectRgnIndirect(&clipRect);
967     SetWindowRgn(_inplacewnd, clipRgn, FALSE);
968
969     //RedrawWindow(_videownd, &posRect, NULL, RDW_INVALIDATE|RDW_ERASE|RDW_ALLCHILDREN);
970     if( isRunning() )
971     {
972         libvlc_video_set_size(_p_libvlc,
973             lprcPosRect->right-lprcPosRect->left,
974             lprcPosRect->bottom-lprcPosRect->top,
975             NULL );
976     }
977 };
978
979 void VLCPlugin::freezeEvents(BOOL freeze)
980 {
981     vlcConnectionPointContainer->freezeEvents(freeze);
982 };
983
984 void VLCPlugin::firePropChangedEvent(DISPID dispid)
985 {
986     vlcConnectionPointContainer->firePropChangedEvent(dispid); 
987 };
988
989 void VLCPlugin::fireOnPlayEvent(void)
990 {
991     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
992     vlcConnectionPointContainer->fireEvent(DISPID_PlayEvent, &dispparamsNoArgs); 
993 };
994
995 void VLCPlugin::fireOnPauseEvent(void)
996 {
997     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
998     vlcConnectionPointContainer->fireEvent(DISPID_PauseEvent, &dispparamsNoArgs); 
999 };
1000
1001 void VLCPlugin::fireOnStopEvent(void)
1002 {
1003     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
1004     vlcConnectionPointContainer->fireEvent(DISPID_StopEvent, &dispparamsNoArgs); 
1005 };