]> git.sesse.net Git - vlc/blob - activex/plugin.cpp
all: bug fixing, clean-up
[vlc] / activex / plugin.cpp
1 /*****************************************************************************
2  * plugin.cpp: ActiveX control for VLC
3  *****************************************************************************
4  * Copyright (C) 2005 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., 59 Temple Place - Suite 330, Boston, MA  02111, 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 "viewobject.h"
37 #include "dataobject.h"
38
39 #include "utils.h"
40
41 #include <string.h>
42 #include <winreg.h>
43 #include <winuser.h>
44 #include <servprov.h>
45 #include <shlwapi.h>
46 #include <wininet.h>
47
48 using namespace std;
49
50 ////////////////////////////////////////////////////////////////////////
51 //class factory
52
53 // {E23FE9C6-778E-49d4-B537-38FCDE4887D8}
54 //const GUID CLSID_VLCPlugin = 
55 //    { 0xe23fe9c6, 0x778e, 0x49d4, { 0xb5, 0x37, 0x38, 0xfc, 0xde, 0x48, 0x87, 0xd8 } };
56
57 static LRESULT CALLBACK VLCInPlaceClassWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
58     switch( uMsg )
59     {
60         case WM_ERASEBKGND:
61             return 1L;
62
63         case WM_PAINT:
64             PAINTSTRUCT ps;
65             if( GetUpdateRect(hWnd, NULL, FALSE) )
66             {
67                 BeginPaint(hWnd, &ps);
68                 EndPaint(hWnd, &ps);
69             }
70             return 0L;
71
72         default:
73             return DefWindowProc(hWnd, uMsg, wParam, lParam);
74     }
75 };
76
77 static LRESULT CALLBACK VLCVideoClassWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
78     VLCPlugin *p_instance = reinterpret_cast<VLCPlugin *>(GetWindowLongPtr(hWnd, GWLP_USERDATA));
79
80     switch( uMsg )
81     {
82         case WM_ERASEBKGND:
83             return 1L;
84
85         case WM_PAINT:
86             PAINTSTRUCT ps;
87             RECT pr;
88             if( GetUpdateRect(hWnd, &pr, FALSE) )
89             {
90                 RECT bounds;
91                 GetClientRect(hWnd, &bounds);
92                 BeginPaint(hWnd, &ps);
93                 p_instance->onPaint(ps.hdc, bounds, pr);
94                 EndPaint(hWnd, &ps);
95             }
96             return 0L;
97
98         default:
99             return DefWindowProc(hWnd, uMsg, wParam, lParam);
100     }
101 };
102
103 VLCPluginClass::VLCPluginClass(LONG *p_class_ref, HINSTANCE hInstance) :
104     _p_class_ref(p_class_ref),
105     _hinstance(hInstance),
106     _inplace_picture(NULL)
107 {
108     WNDCLASS wClass;
109
110     if( ! GetClassInfo(hInstance, getInPlaceWndClassName(), &wClass) )
111     {
112         wClass.style          = CS_NOCLOSE|CS_DBLCLKS;
113         wClass.lpfnWndProc    = VLCInPlaceClassWndProc;
114         wClass.cbClsExtra     = 0;
115         wClass.cbWndExtra     = 0;
116         wClass.hInstance      = hInstance;
117         wClass.hIcon          = NULL;
118         wClass.hCursor        = LoadCursor(NULL, IDC_ARROW);
119         wClass.hbrBackground  = NULL;
120         wClass.lpszMenuName   = NULL;
121         wClass.lpszClassName  = getInPlaceWndClassName();
122        
123         _inplace_wndclass_atom = RegisterClass(&wClass);
124     }
125     else
126     {
127         _inplace_wndclass_atom = 0;
128     }
129
130     if( ! GetClassInfo(hInstance, getVideoWndClassName(), &wClass) )
131     {
132         wClass.style          = CS_NOCLOSE;
133         wClass.lpfnWndProc    = VLCVideoClassWndProc;
134         wClass.cbClsExtra     = 0;
135         wClass.cbWndExtra     = 0;
136         wClass.hInstance      = hInstance;
137         wClass.hIcon          = NULL;
138         wClass.hCursor        = LoadCursor(NULL, IDC_ARROW);
139         wClass.hbrBackground  = NULL;
140         wClass.lpszMenuName   = NULL;
141         wClass.lpszClassName  = getVideoWndClassName();
142        
143         _video_wndclass_atom = RegisterClass(&wClass);
144     }
145     else
146     {
147         _video_wndclass_atom = 0;
148     }
149
150     HBITMAP hbitmap = (HBITMAP)LoadImage(getHInstance(), TEXT("INPLACE-PICT"), IMAGE_BITMAP, 0, 0, LR_DEFAULTCOLOR);
151     if( NULL != hbitmap )
152     {
153         PICTDESC pictDesc;
154
155         pictDesc.cbSizeofstruct = sizeof(PICTDESC);
156         pictDesc.picType        = PICTYPE_BITMAP;
157         pictDesc.bmp.hbitmap    = hbitmap;
158         pictDesc.bmp.hpal       = NULL;
159
160         if( FAILED(OleCreatePictureIndirect(&pictDesc, IID_IPicture, TRUE, reinterpret_cast<LPVOID*>(&_inplace_picture))) )
161             _inplace_picture = NULL;
162     }
163     AddRef();
164 };
165
166 VLCPluginClass::~VLCPluginClass()
167 {
168     if( 0 != _inplace_wndclass_atom )
169         UnregisterClass(MAKEINTATOM(_inplace_wndclass_atom), _hinstance);
170
171     if( 0 != _video_wndclass_atom )
172         UnregisterClass(MAKEINTATOM(_video_wndclass_atom), _hinstance);
173
174     if( NULL != _inplace_picture )
175         _inplace_picture->Release();
176 };
177
178 STDMETHODIMP VLCPluginClass::QueryInterface(REFIID riid, void **ppv)
179 {
180     if( NULL == ppv )
181         return E_INVALIDARG;
182
183     if( (IID_IUnknown == riid) || (IID_IClassFactory == riid) )
184     {
185         AddRef();
186         *ppv = reinterpret_cast<LPVOID>(this);
187
188         return NOERROR;
189     }
190
191     *ppv = NULL;
192
193     return E_NOINTERFACE;
194 };
195
196 STDMETHODIMP_(ULONG) VLCPluginClass::AddRef(void)
197 {
198     return InterlockedIncrement(_p_class_ref);
199 };
200
201 STDMETHODIMP_(ULONG) VLCPluginClass::Release(void)
202 {
203     ULONG refcount = InterlockedDecrement(_p_class_ref);
204     if( 0 == refcount )
205     {
206         delete this;
207         return 0;
208     }
209     return refcount;
210 };
211
212 STDMETHODIMP VLCPluginClass::CreateInstance(LPUNKNOWN pUnkOuter, REFIID riid, void **ppv)
213 {
214     if( NULL == ppv )
215         return E_POINTER;
216
217     *ppv = NULL;
218
219     if( (NULL != pUnkOuter) && (IID_IUnknown != riid) ) {
220         return CLASS_E_NOAGGREGATION;
221     }
222
223     VLCPlugin *plugin = new VLCPlugin(this, pUnkOuter);
224     if( NULL != plugin )
225     {
226         HRESULT hr = plugin->QueryInterface(riid, ppv);
227         plugin->Release();
228         return hr;
229     }
230     return E_OUTOFMEMORY;
231 };
232
233 STDMETHODIMP VLCPluginClass::LockServer(BOOL fLock)
234 {
235     if( fLock )
236         AddRef();
237     else 
238         Release();
239
240     return S_OK;
241 };
242
243 ////////////////////////////////////////////////////////////////////////
244
245 VLCPlugin::VLCPlugin(VLCPluginClass *p_class, LPUNKNOWN pUnkOuter) :
246     _inplacewnd(NULL),
247     _p_class(p_class),
248     _i_ref(1UL),
249     _i_codepage(CP_ACP),
250     _b_usermode(TRUE),
251     _bstr_mrl(NULL),
252     _b_autoplay(TRUE),
253     _b_autoloop(FALSE),
254     _b_visible(TRUE),
255     _b_mute(FALSE),
256     _i_vlc(0)
257 {
258     p_class->AddRef();
259
260     vlcOleControl = new VLCOleControl(this);
261     vlcOleInPlaceObject = new VLCOleInPlaceObject(this);
262     vlcOleInPlaceActiveObject = new VLCOleInPlaceActiveObject(this);
263     vlcPersistStorage = new VLCPersistStorage(this);
264     vlcPersistStreamInit = new VLCPersistStreamInit(this);
265     vlcPersistPropertyBag = new VLCPersistPropertyBag(this);
266     vlcProvideClassInfo = new VLCProvideClassInfo(this);
267     vlcConnectionPointContainer = new VLCConnectionPointContainer(this);
268     vlcObjectSafety = new VLCObjectSafety(this);
269     vlcControl = new VLCControl(this);
270     vlcViewObject = new VLCViewObject(this);
271     vlcDataObject = new VLCDataObject(this);
272     vlcOleObject = new VLCOleObject(this);
273
274     // configure controlling IUnknown interface for implemented interfaces
275     this->pUnkOuter = (NULL != pUnkOuter) ? pUnkOuter : dynamic_cast<LPUNKNOWN>(this);
276
277     // default picure
278     _p_pict = p_class->getInPlacePict();
279
280     // set default/preferred size (320x240) pixels in HIMETRIC
281     HDC hDC = CreateDevDC(NULL);
282     _extent.cx = 320;
283     _extent.cy = 240;
284     HimetricFromDP(hDC, (LPPOINT)&_extent, 1);
285     DeleteDC(hDC);
286 };
287
288 VLCPlugin::~VLCPlugin()
289 {
290     delete vlcOleObject;
291     delete vlcDataObject;
292     delete vlcViewObject;
293     delete vlcControl;
294     delete vlcConnectionPointContainer;
295     delete vlcProvideClassInfo;
296     delete vlcPersistPropertyBag;
297     delete vlcPersistStreamInit;
298     delete vlcPersistStorage;
299     delete vlcOleInPlaceActiveObject;
300     delete vlcOleInPlaceObject;
301     delete vlcObjectSafety;
302
303     delete vlcOleControl;
304     if( _p_pict )
305         _p_pict->Release();
306
307     SysFreeString(_bstr_mrl);
308
309     _p_class->Release();
310 };
311
312 STDMETHODIMP VLCPlugin::QueryInterface(REFIID riid, void **ppv)
313 {
314     if( NULL == ppv )
315         return E_INVALIDARG;
316
317     if( IID_IUnknown == riid )
318         *ppv = reinterpret_cast<LPVOID>(this);
319     else if( IID_IOleObject == riid )
320         *ppv = reinterpret_cast<LPVOID>(vlcOleObject);
321     else if( IID_IOleControl == riid )
322         *ppv = reinterpret_cast<LPVOID>(vlcOleControl);
323     else if( IID_IOleWindow == riid )
324         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceObject);
325     else if( IID_IOleInPlaceObject == riid )
326         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceObject);
327     else if( IID_IOleInPlaceActiveObject == riid )
328         *ppv = reinterpret_cast<LPVOID>(vlcOleInPlaceActiveObject);
329     else if( IID_IPersist == riid )
330         *ppv = reinterpret_cast<LPVOID>(vlcPersistStreamInit);
331     else if( IID_IPersistStreamInit == riid )
332         *ppv = reinterpret_cast<LPVOID>(vlcPersistStreamInit);
333     else if( IID_IPersistStorage == riid )
334         *ppv = reinterpret_cast<LPVOID>(vlcPersistStorage);
335     else if( IID_IPersistPropertyBag == riid )
336         *ppv = reinterpret_cast<LPVOID>(vlcPersistPropertyBag);
337     else if( IID_IProvideClassInfo == riid )
338         *ppv = reinterpret_cast<LPVOID>(vlcProvideClassInfo);
339     else if( IID_IProvideClassInfo2 == riid )
340         *ppv = reinterpret_cast<LPVOID>(vlcProvideClassInfo);
341     else if( IID_IConnectionPointContainer == riid )
342         *ppv = reinterpret_cast<LPVOID>(vlcConnectionPointContainer);
343     else if( IID_IObjectSafety == riid )
344         *ppv = reinterpret_cast<LPVOID>(vlcObjectSafety);
345     else if( IID_IDispatch == riid )
346         *ppv = reinterpret_cast<LPVOID>(vlcControl);
347     else if( IID_IVLCControl == riid )
348         *ppv = reinterpret_cast<LPVOID>(vlcControl);
349     else if( IID_IViewObject == riid )
350         *ppv = reinterpret_cast<LPVOID>(vlcViewObject);
351     else if( IID_IViewObject2 == riid )
352         *ppv = reinterpret_cast<LPVOID>(vlcViewObject);
353     else if( IID_IDataObject == riid )
354         *ppv = reinterpret_cast<LPVOID>(vlcDataObject);
355     else
356     {
357         *ppv = NULL;
358         return E_NOINTERFACE;
359     }
360     ((LPUNKNOWN)*ppv)->AddRef();
361     return NOERROR;
362 };
363
364 STDMETHODIMP_(ULONG) VLCPlugin::AddRef(void)
365 {
366     return InterlockedIncrement((LONG *)&_i_ref);
367 };
368
369 STDMETHODIMP_(ULONG) VLCPlugin::Release(void)
370 {
371     if( ! InterlockedDecrement((LONG *)&_i_ref) )
372     {
373         delete this;
374         return 0;
375     }
376     return _i_ref;
377 };
378
379 //////////////////////////////////////
380
381 /*
382 ** we use a window to represent plugin viewport,
383 ** whose geometry is limited by the clipping rectangle
384 ** all drawing within this window must follow must
385 ** follow coordinates system described in lprPosRect
386 */
387
388 static void getViewportCoords(LPRECT lprPosRect, LPRECT lprClipRect)
389 {
390     RECT bounds;
391     bounds.right  = lprPosRect->right-lprPosRect->left;
392
393     if( lprClipRect->left <= lprPosRect->left )
394     {
395         // left side is not clipped out
396         bounds.left = 0;
397
398         if( lprClipRect->right >= lprPosRect->right )
399         {
400             // right side is not clipped out, no change
401         }
402         else if( lprClipRect->right >= lprPosRect->left )
403         {
404             // right side is clipped out
405             lprPosRect->right = lprClipRect->right;
406         }
407         else
408         {
409             // outside of clipping rectange, not visible
410             lprPosRect->right = lprPosRect->left;
411         }
412     }
413     else
414     {
415         // left side is clipped out
416         bounds.left = lprPosRect->left-lprClipRect->left;
417         bounds.right += bounds.left;
418
419         lprPosRect->left = lprClipRect->left;
420         if( lprClipRect->right >= lprPosRect->right )
421         {
422             // right side is not clipped out
423         }
424         else
425         {
426             // right side is clipped out
427             lprPosRect->right = lprClipRect->right;
428         }
429     }
430
431     bounds.bottom = lprPosRect->bottom-lprPosRect->top;
432
433     if( lprClipRect->top <= lprPosRect->top )
434     {
435         // top side is not clipped out
436         bounds.top = 0;
437
438         if( lprClipRect->bottom >= lprPosRect->bottom )
439         {
440             // bottom side is not clipped out, no change
441         }
442         else if( lprClipRect->bottom >= lprPosRect->top )
443         {
444             // bottom side is clipped out
445             lprPosRect->bottom = lprClipRect->bottom;
446         }
447         else
448         {
449             // outside of clipping rectange, not visible
450             lprPosRect->right = lprPosRect->left;
451         }
452     }
453     else
454     {
455         bounds.top = lprPosRect->top-lprClipRect->top;
456         bounds.bottom += bounds.top;
457
458         lprPosRect->top = lprClipRect->top;
459         if( lprClipRect->bottom >= lprPosRect->bottom )
460         {
461             // bottom side is not clipped out
462         }
463         else
464         {
465             // bottom side is clipped out
466             lprPosRect->bottom = lprClipRect->bottom;
467         }
468     }
469     *lprClipRect = *lprPosRect;
470     *lprPosRect  = bounds;
471 };
472
473 HRESULT VLCPlugin::onInit(void)
474 {
475     if( 0 == _i_vlc )
476     {
477 #ifdef ACTIVEX_DEBUG
478         char *ppsz_argv[] = { "vlc", "-vv", "--fast-mutex", "--win9x-cv-method=1" };
479 #else
480         char *ppsz_argv[] = { "vlc", "-vv" };
481 #endif
482         HKEY h_key;
483         DWORD i_type, i_data = MAX_PATH + 1;
484         char p_data[MAX_PATH + 1];
485         if( RegOpenKeyEx( HKEY_LOCAL_MACHINE, "Software\\VideoLAN\\VLC",
486                           0, KEY_READ, &h_key ) == ERROR_SUCCESS )
487         {
488              if( RegQueryValueEx( h_key, "InstallDir", 0, &i_type,
489                                   (LPBYTE)p_data, &i_data ) == ERROR_SUCCESS )
490              {
491                  if( i_type == REG_SZ )
492                  {
493                      strcat( p_data, "\\vlc" );
494                      ppsz_argv[0] = p_data;
495                  }
496              }
497              RegCloseKey( h_key );
498         }
499
500 #if 0
501         ppsz_argv[0] = "C:\\cygwin\\home\\Damien_Fouilleul\\dev\\videolan\\vlc-trunk\\vlc";
502 #endif
503
504         _i_vlc = VLC_Create();
505         if( _i_vlc < 0 )
506         {
507             _i_vlc = 0;
508             return E_FAIL;
509         }
510
511         if( VLC_Init(_i_vlc, sizeof(ppsz_argv)/sizeof(char*), ppsz_argv) )
512         {
513             VLC_Destroy(_i_vlc);
514             _i_vlc = 0;
515             return E_FAIL;
516         }
517         return S_OK;
518     }
519     return CO_E_ALREADYINITIALIZED;
520 };
521
522 HRESULT VLCPlugin::onLoad(void)
523 {
524     if( _b_mute )
525         VLC_VolumeMute(_i_vlc);
526
527     if( SysStringLen(_bstr_mrl) > 0 )
528     {
529         /*
530         ** try to combine MRL with client site moniker, which for Internet Explorer
531         ** is the URL of the page the plugin is embedded into. Hence, if the MRL
532         ** is a relative URL, we should end up with an absolute URL
533         */
534         IOleClientSite *pClientSite;
535         if( SUCCEEDED(vlcOleObject->GetClientSite(&pClientSite)) && (NULL != pClientSite) )
536         {
537             IBindCtx *pBC = 0;
538             if( SUCCEEDED(CreateBindCtx(0, &pBC)) )
539             {
540                 LPMONIKER pContMoniker = NULL;
541                 if( SUCCEEDED(pClientSite->GetMoniker(OLEGETMONIKER_ONLYIFTHERE,
542                                 OLEWHICHMK_CONTAINER, &pContMoniker)) )
543                 {
544                     LPOLESTR name;
545                     if( SUCCEEDED(pContMoniker->GetDisplayName(pBC, NULL, &name)) )
546                     {
547                         if( UrlIsW(name, URLIS_URL) )
548                         {
549                             LPOLESTR url = (LPOLESTR)CoTaskMemAlloc(sizeof(OLECHAR)*INTERNET_MAX_URL_LENGTH);
550                             if( NULL != url )
551                             {
552                                 DWORD len = INTERNET_MAX_URL_LENGTH;
553                                 if( SUCCEEDED(UrlCombineW(name, _bstr_mrl, url, &len,
554                                                 URL_ESCAPE_UNSAFE)) )
555                                 {
556                                     SysFreeString(_bstr_mrl);
557                                     _bstr_mrl = SysAllocStringLen(url, len);
558                                 }
559                                 CoTaskMemFree(url);
560                             }
561                         }
562                         CoTaskMemFree(name);
563                     }
564                     pContMoniker->Release();
565                 }
566                 pBC->Release();
567             }
568             pClientSite->Release();
569         }
570
571         char *psz_mrl = CStrFromBSTR(CP_UTF8, _bstr_mrl);
572         if( NULL != psz_mrl )
573         {
574             // add default target to playlist
575             char *cOptions[1];
576             int  cOptionsCount = 0;
577
578             if( _b_autoloop )
579             {
580                 cOptions[cOptionsCount++] = "loop";
581             }
582             VLC_AddTarget(_i_vlc, psz_mrl, (const char **)&cOptions, cOptionsCount, PLAYLIST_APPEND, PLAYLIST_END);
583             CoTaskMemFree(psz_mrl);
584         }
585     }
586     setDirty(FALSE);
587     return S_OK;
588 };
589
590 HRESULT VLCPlugin::onAmbientChanged(LPUNKNOWN pContainer, DISPID dispID)
591 {
592     VARIANT v;
593     switch( dispID )
594     {
595         case DISPID_AMBIENT_BACKCOLOR:
596             break;
597         case DISPID_AMBIENT_DISPLAYNAME:
598             break;
599         case DISPID_AMBIENT_FONT:
600             break;
601         case DISPID_AMBIENT_FORECOLOR:
602             break;
603         case DISPID_AMBIENT_LOCALEID:
604             break;
605         case DISPID_AMBIENT_MESSAGEREFLECT:
606             break;
607         case DISPID_AMBIENT_SCALEUNITS:
608             break;
609         case DISPID_AMBIENT_TEXTALIGN:
610             break;
611         case DISPID_AMBIENT_USERMODE:
612             VariantInit(&v);
613             V_VT(&v) = VT_BOOL;
614             if( SUCCEEDED(GetObjectProperty(pContainer, dispID, v)) )
615             {
616                 setUserMode(V_BOOL(&v) != VARIANT_FALSE);
617                 VariantClear(&v);
618             }
619             break;
620         case DISPID_AMBIENT_UIDEAD:
621             break;
622         case DISPID_AMBIENT_SHOWGRABHANDLES:
623             break;
624         case DISPID_AMBIENT_SHOWHATCHING:
625             break;
626         case DISPID_AMBIENT_DISPLAYASDEFAULT:
627             break;
628         case DISPID_AMBIENT_SUPPORTSMNEMONICS:
629             break;
630         case DISPID_AMBIENT_AUTOCLIP:
631             break;
632         case DISPID_AMBIENT_APPEARANCE:
633             break;
634         case DISPID_AMBIENT_CODEPAGE:
635             VariantInit(&v);
636             V_VT(&v) = VT_I4;
637             if( SUCCEEDED(GetObjectProperty(pContainer, dispID, v)) )
638             {
639                 setCodePage(V_I4(&v));
640             }
641             break;
642         case DISPID_AMBIENT_PALETTE:
643             break;
644         case DISPID_AMBIENT_CHARSET:
645             break;
646         case DISPID_AMBIENT_RIGHTTOLEFT:
647             break;
648         case DISPID_AMBIENT_TOPTOBOTTOM:
649             break;
650         case DISPID_UNKNOWN:
651             VariantInit(&v);
652             V_VT(&v) = VT_BOOL;
653             if( SUCCEEDED(GetObjectProperty(pContainer, DISPID_AMBIENT_USERMODE, v)) )
654             {
655                 setUserMode(V_BOOL(&v) != VARIANT_FALSE);
656                 VariantClear(&v);
657             }
658             VariantInit(&v);
659             V_VT(&v) = VT_I4;
660             if( SUCCEEDED(GetObjectProperty(pContainer, dispID, v)) )
661             {
662                 setCodePage(V_I4(&v));
663             }
664             break;
665     }
666     return S_OK;
667 };
668
669 HRESULT VLCPlugin::onClose(DWORD dwSaveOption)
670 {
671     if( _i_vlc )
672     {
673         int i_vlc = _i_vlc;
674
675         _i_vlc = 0;
676         if( isInPlaceActive() )
677         {
678             onInPlaceDeactivate();
679         }
680         vlcDataObject->onClose();
681
682         VLC_CleanUp(i_vlc);
683         VLC_Destroy(i_vlc);
684     }
685     return S_OK;
686 };
687
688 BOOL VLCPlugin::isInPlaceActive(void)
689 {
690     return (NULL != _inplacewnd);
691 };
692
693 HRESULT VLCPlugin::onActivateInPlace(LPMSG lpMesg, HWND hwndParent, LPCRECT lprcPosRect, LPCRECT lprcClipRect)
694 {
695     RECT posRect = *lprcPosRect;
696     RECT clipRect = *lprcClipRect;
697
698     /*
699     ** record keeping of control geometry within container
700     */ 
701     _posRect = posRect;
702
703     /*
704     ** convert posRect & clipRect to match control viewport coordinates
705     */
706     getViewportCoords(&posRect, &clipRect);
707
708     /*
709     ** Create a window for in place activated control.
710     ** the window geometry represents the control viewport
711     ** so that embedded video is always properly clipped.
712     */
713     _inplacewnd = CreateWindow(_p_class->getInPlaceWndClassName(),
714             "VLC Plugin In-Place Window",
715             WS_CHILD|WS_CLIPCHILDREN|WS_CLIPSIBLINGS,
716             clipRect.left,
717             clipRect.top,
718             clipRect.right-clipRect.left,
719             clipRect.bottom-clipRect.top,
720             hwndParent,
721             0,
722             _p_class->getHInstance(),
723             NULL
724            );
725
726     if( NULL == _inplacewnd )
727         return E_FAIL;
728
729     SetWindowLongPtr(_inplacewnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(this));
730
731     /*
732     ** VLC embedded video geometry automatically matches parent window.
733     ** hence create a child window so that video position and size
734     ** is always correct relative to the viewport bounds
735     */
736     _videownd = CreateWindow(_p_class->getVideoWndClassName(),
737             "VLC Plugin Video Window",
738             WS_CHILD|WS_CLIPCHILDREN|WS_VISIBLE,
739             posRect.left,
740             posRect.top,
741             posRect.right-posRect.left,
742             posRect.bottom-posRect.top,
743             _inplacewnd,
744             0,
745             _p_class->getHInstance(),
746             NULL
747            );
748
749     if( NULL == _videownd )
750     {
751         DestroyWindow(_inplacewnd);
752         return E_FAIL;
753     }
754
755     SetWindowLongPtr(_videownd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(this));
756
757     if( getVisible() )
758         ShowWindow(_inplacewnd, SW_SHOWNORMAL);
759
760     /* horrible cast there */
761     vlc_value_t val;
762     val.i_int = reinterpret_cast<int>(_videownd);
763     VLC_VariableSet(_i_vlc, "drawable", val);
764     val.i_int = posRect.right-posRect.left;
765     VLC_VariableSet(_i_vlc, "width", val);
766     val.i_int = posRect.bottom-posRect.top;
767     VLC_VariableSet(_i_vlc, "height", val);
768
769     if( _b_usermode && _b_autoplay & (VLC_PlaylistNumberOfItems(_i_vlc) > 0) )
770     {
771         VLC_Play(_i_vlc);
772         fireOnPlayEvent();
773     }
774     return S_OK;
775 };
776
777 HRESULT VLCPlugin::onInPlaceDeactivate(void)
778 {
779     VLC_Stop(_i_vlc);
780     fireOnStopEvent();
781
782     DestroyWindow(_videownd);
783     _videownd = NULL;
784     DestroyWindow(_inplacewnd);
785     _inplacewnd = NULL;
786  
787     return S_OK;
788 };
789
790 void VLCPlugin::setVisible(BOOL fVisible)
791 {
792     _b_visible = fVisible;
793     if( isInPlaceActive() )
794         ShowWindow(_inplacewnd, fVisible ? SW_SHOWNORMAL : SW_HIDE);
795     firePropChangedEvent(DISPID_Visible);
796 };
797
798 void VLCPlugin::setFocus(BOOL fFocus)
799 {
800     if( fFocus )
801         SetActiveWindow(_inplacewnd);
802 };
803
804 BOOL VLCPlugin::hasFocus(void)
805 {
806     return GetActiveWindow() == _inplacewnd;
807 };
808
809 void VLCPlugin::onDraw(DVTARGETDEVICE * ptd, HDC hicTargetDev,
810         HDC hdcDraw, LPCRECTL lprcBounds, LPCRECTL lprcWBounds)
811 {
812     if( getVisible() )
813     {
814         long width = lprcBounds->right-lprcBounds->left;
815         long height = lprcBounds->bottom-lprcBounds->top;
816
817         RECT bounds = { lprcBounds->left, lprcBounds->top, lprcBounds->right, lprcBounds->bottom };
818         FillRect(hdcDraw, &bounds, (HBRUSH)GetStockObject(WHITE_BRUSH));
819
820         LPPICTURE pict = getPicture();
821         if( NULL != pict )
822         {
823             OLE_XSIZE_HIMETRIC picWidth;
824             OLE_YSIZE_HIMETRIC picHeight;
825
826             pict->get_Width(&picWidth);
827             pict->get_Height(&picHeight);
828
829             SIZEL picSize = { picWidth, picHeight };
830
831             if( NULL != hicTargetDev )
832             {
833                 DPFromHimetric(hicTargetDev, (LPPOINT)&picSize, 1);
834             }
835             else if( NULL != (hicTargetDev = CreateDevDC(ptd)) )
836             {
837                 DPFromHimetric(hicTargetDev, (LPPOINT)&picSize, 1);
838                 DeleteDC(hicTargetDev);
839             }
840
841             if( picSize.cx > width-4 )
842                 picSize.cx = width-4;
843             if( picSize.cy > height-4 )
844                 picSize.cy = height-4;
845
846             LONG dstX = lprcBounds->left+(width-picSize.cx)/2;
847             LONG dstY = lprcBounds->top+(height-picSize.cy)/2;
848
849             if( NULL != lprcWBounds )
850             {
851                 RECT wBounds = { lprcWBounds->left, lprcWBounds->top, lprcWBounds->right, lprcWBounds->bottom };
852                 pict->Render(hdcDraw, dstX, dstY, picSize.cx, picSize.cy,
853                         0L, picHeight, picWidth, -picHeight, &wBounds);
854             }
855             else 
856                 pict->Render(hdcDraw, dstX, dstY, picSize.cx, picSize.cy,
857                         0L, picHeight, picWidth, -picHeight, NULL);
858
859             pict->Release();
860         }
861
862         SelectObject(hdcDraw, GetStockObject(BLACK_BRUSH));
863
864         MoveToEx(hdcDraw, bounds.left, bounds.top, NULL);
865         LineTo(hdcDraw, bounds.left+width-1, bounds.top);
866         LineTo(hdcDraw, bounds.left+width-1, bounds.top+height-1);
867         LineTo(hdcDraw, bounds.left, bounds.top+height-1);
868         LineTo(hdcDraw, bounds.left, bounds.top);
869     }
870 };
871
872 void VLCPlugin::onPaint(HDC hdc, const RECT &bounds, const RECT &clipRect)
873 {
874     if( getVisible() )
875     {
876         /** if VLC is playing, it may not display any VIDEO content 
877         ** hence, draw control logo*/
878         HDC hdcDraw = CreateCompatibleDC(hdc);
879         if( NULL != hdcDraw )
880         {
881             SIZEL size = getExtent();
882             DPFromHimetric(hdc, (LPPOINT)&size, 1);
883             RECTL posRect = { 0, 0, size.cx, size.cy };
884
885             int width = bounds.right-bounds.left;
886             int height = bounds.bottom-bounds.top;
887
888             HBITMAP hBitmap = CreateCompatibleBitmap(hdc, width, height);
889             if( NULL != hBitmap )
890             {
891                 HBITMAP oldBmp = (HBITMAP)SelectObject(hdcDraw, hBitmap);
892
893                 if( (size.cx != width) || (size.cx != height) )
894                 {
895                     // needs to scale canvas
896                     SetMapMode(hdcDraw, MM_ANISOTROPIC);
897                     SetWindowExtEx(hdcDraw, size.cx, size.cy, NULL);
898                     SetViewportExtEx(hdcDraw, width, height, NULL);
899                 }
900
901                 onDraw(NULL, hdc, hdcDraw, &posRect, NULL);
902
903                 SetMapMode(hdcDraw, MM_TEXT);
904                 BitBlt(hdc, bounds.left, bounds.top,
905                         width, height,
906                         hdcDraw, 0, 0,
907                         SRCCOPY);
908
909                 SelectObject(hdcDraw, oldBmp);
910                 DeleteObject(hBitmap);
911             }
912             DeleteDC(hdcDraw);
913         }
914     }
915 };
916
917 void VLCPlugin::onPositionChange(LPCRECT lprcPosRect, LPCRECT lprcClipRect)
918 {
919     RECT clipRect = *lprcClipRect;
920     RECT posRect  = *lprcPosRect;
921
922     //RedrawWindow(GetParent(_inplacewnd), &_posRect, NULL, RDW_INVALIDATE|RDW_ERASE|RDW_ALLCHILDREN);
923
924     /*
925     ** record keeping of control geometry within container
926     */
927     _posRect = posRect;
928
929     /*
930     ** convert posRect & clipRect to match control viewport coordinates
931     */
932     getViewportCoords(&posRect, &clipRect);
933
934     /*
935     ** change in-place window geometry to match clipping region
936     */
937     SetWindowPos(_inplacewnd, NULL,
938             clipRect.left,
939             clipRect.top,
940             clipRect.right-clipRect.left,
941             clipRect.bottom-clipRect.top,
942             SWP_NOACTIVATE|
943             SWP_NOCOPYBITS|
944             SWP_NOZORDER|
945             SWP_NOOWNERZORDER );
946
947     /*
948     ** change video window geometry to match object bounds within clipping region
949     */
950     SetWindowPos(_videownd, NULL,
951             posRect.left,
952             posRect.top,
953             posRect.right-posRect.left,
954             posRect.bottom-posRect.top,
955             SWP_NOACTIVATE|
956             SWP_NOCOPYBITS|
957             SWP_NOZORDER|
958             SWP_NOOWNERZORDER );
959
960     //RedrawWindow(_videownd, &posRect, NULL, RDW_INVALIDATE|RDW_ERASE|RDW_ALLCHILDREN);
961     vlc_value_t val;
962     val.i_int = posRect.right-posRect.left;
963     VLC_VariableSet(_i_vlc, "width", val);
964     val.i_int = posRect.bottom-posRect.top;
965     VLC_VariableSet(_i_vlc, "height", val);
966 };
967
968 void VLCPlugin::freezeEvents(BOOL freeze)
969 {
970     vlcConnectionPointContainer->freezeEvents(freeze);
971 };
972
973 void VLCPlugin::firePropChangedEvent(DISPID dispid)
974 {
975     vlcConnectionPointContainer->firePropChangedEvent(dispid); 
976 };
977
978 void VLCPlugin::fireOnPlayEvent(void)
979 {
980     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
981     vlcConnectionPointContainer->fireEvent(DISPID_PlayEvent, &dispparamsNoArgs); 
982 };
983
984 void VLCPlugin::fireOnPauseEvent(void)
985 {
986     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
987     vlcConnectionPointContainer->fireEvent(DISPID_PauseEvent, &dispparamsNoArgs); 
988 };
989
990 void VLCPlugin::fireOnStopEvent(void)
991 {
992     DISPPARAMS dispparamsNoArgs = {NULL, NULL, 0, 0};
993     vlcConnectionPointContainer->fireEvent(DISPID_StopEvent, &dispparamsNoArgs); 
994 };
995