]> git.sesse.net Git - vlc/blobdiff - activex/plugin.h
Avoid \r\n problems between platforms
[vlc] / activex / plugin.h
index cfbfba26248f58270ed7b98ff31c64265c25d034..7b54c0247432619a5d055f0a4dad6a701fd1cd31 100644 (file)
-/*****************************************************************************\r
- * plugin.h: ActiveX control for VLC\r
- *****************************************************************************\r
- * Copyright (C) 2005 VideoLAN\r
- *\r
- * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>\r
- *\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
- *****************************************************************************/\r
-\r
-#ifndef __PLUGIN_H__\r
-#define __PLUGIN_H__\r
-\r
-#include <ole2.h>\r
-#include <olectl.h>\r
-\r
-#include <vlc/vlc.h>\r
-\r
-extern const GUID CLSID_VLCPlugin; \r
-extern const GUID LIBID_AXVLC; \r
-extern const GUID DIID_DVLCEvents; \r
-\r
-class VLCPluginClass : public IClassFactory\r
-{\r
-\r
-public:\r
-\r
-    VLCPluginClass(LONG *p_class_ref,HINSTANCE hInstance);\r
-\r
-    /* IUnknown methods */\r
-    STDMETHODIMP QueryInterface(REFIID riid, void **ppv);\r
-    STDMETHODIMP_(ULONG) AddRef(void);\r
-    STDMETHODIMP_(ULONG) Release(void);\r
-\r
-    /* IClassFactory methods */\r
-    STDMETHODIMP CreateInstance(IUnknown *pUnkOuter, REFIID riid, void **ppv);\r
-    STDMETHODIMP LockServer(BOOL fLock);\r
-\r
-    LPCSTR getInPlaceWndClassName(void) const { return TEXT("VLC Plugin In-Place"); };\r
-    LPCSTR getVideoWndClassName(void) const { return TEXT("VLC Plugin Video"); };\r
-    HINSTANCE getHInstance(void) const { return _hinstance; };\r
-    HBITMAP getInPlacePict(void) const { return _inplace_hbitmap; };\r
-\r
-protected:\r
-\r
-    virtual ~VLCPluginClass();\r
-\r
-private:\r
-\r
-    LPLONG      _p_class_ref;\r
-    HINSTANCE   _hinstance;\r
-    ATOM        _inplace_wndclass_atom;\r
-    ATOM        _video_wndclass_atom;\r
-    HBITMAP     _inplace_hbitmap;\r
-};\r
-\r
-class VLCPlugin : public IUnknown\r
-{\r
-\r
-public:\r
-\r
-    VLCPlugin(VLCPluginClass *p_class);\r
-\r
-    /* IUnknown methods */\r
-    STDMETHODIMP QueryInterface(REFIID riid, void **ppv);\r
-    STDMETHODIMP_(ULONG) AddRef(void);\r
-    STDMETHODIMP_(ULONG) Release(void);\r
-\r
-    /* custom methods */\r
-    HRESULT getTypeLib(LCID lcid, ITypeLib **pTL)\r
-        { return LoadRegTypeLib(LIBID_AXVLC, 1, 0, lcid, pTL); };\r
-    REFCLSID getClassID(void) { return (REFCLSID)CLSID_VLCPlugin; };\r
-    REFIID getDispEventID(void) { return (REFIID)DIID_DVLCEvents; };\r
-\r
-    HRESULT onInitNew(void);\r
-    HRESULT onClose(DWORD dwSaveOption);\r
-\r
-    BOOL isInPlaceActive(void);\r
-    HRESULT onActivateInPlace(LPMSG lpMesg, HWND hwndParent, LPCRECT lprcPosRect, LPCRECT lprcClipRect);\r
-    HRESULT onInPlaceDeactivate(void);\r
-    HWND getInPlaceWindow(void) const { return _inplacewnd; };\r
-\r
-    BOOL hasFocus(void);\r
-    void setFocus(BOOL fFocus);\r
-\r
-    UINT getCodePage(void) { return _codepage; };\r
-    void setCodePage(UINT cp) { _codepage = cp; };\r
-\r
-    int  getVLCObject(void) { return _i_vlc; };\r
-\r
-    // control properties\r
-    void setSourceURL(const char *url) { _psz_src = strdup(url); };\r
-    void setAutoStart(BOOL autostart) { _b_autostart = autostart; };\r
-    void setLoopMode(BOOL loopmode) { _b_loopmode = loopmode; };\r
-    void setMute(BOOL mute) {\r
-        if( mute && _i_vlc )\r
-        {\r
-            VLC_VolumeMute(_i_vlc);\r
-        }\r
-    };\r
-    void setSendEvents(BOOL sendevents) { _b_sendevents = sendevents; };\r
-    void setVisible(BOOL fVisible);\r
-    BOOL getVisible(void) { return _b_visible; };\r
-\r
-    // container events\r
-    void onPositionChange(LPCRECT lprcPosRect, LPCRECT lprcClipRect);\r
-    void onPaint(PAINTSTRUCT &ps, RECT &pr);\r
-\r
-    // control events\r
-    void firePropChangedEvent(DISPID dispid);\r
-    void fireOnPlayEvent(void);\r
-    void fireOnPauseEvent(void);\r
-    void fireOnStopEvent(void);\r
-\r
-protected:\r
-\r
-    virtual ~VLCPlugin();\r
-\r
-private:\r
-\r
-    void calcPositionChange(LPRECT lprPosRect, LPCRECT lprcClipRect);\r
-\r
-    //implemented interfaces\r
-    class VLCOleObject *vlcOleObject;\r
-    class VLCOleControl *vlcOleControl;\r
-    class VLCOleInPlaceObject *vlcOleInPlaceObject;\r
-    class VLCOleInPlaceActiveObject *vlcOleInPlaceActiveObject;\r
-    class VLCPersistStreamInit *vlcPersistStreamInit;\r
-    class VLCPersistStorage *vlcPersistStorage;\r
-    class VLCPersistPropertyBag *vlcPersistPropertyBag;\r
-    class VLCProvideClassInfo *vlcProvideClassInfo;\r
-    class VLCConnectionPointContainer *vlcConnectionPointContainer;\r
-    class VLCObjectSafety *vlcObjectSafety;\r
-    class VLCControl *vlcControl;\r
-\r
-    // in place activated window (Clipping window)\r
-    HWND _inplacewnd;\r
-    // video window (Drawing window)\r
-    HWND _videownd;\r
-    RECT _bounds;\r
-\r
-    VLCPluginClass *_p_class;\r
-    ULONG _i_ref;\r
-\r
-    UINT _codepage;\r
-    char *_psz_src;\r
-    BOOL _b_autostart;\r
-    BOOL _b_loopmode;\r
-    BOOL _b_visible;\r
-    BOOL _b_sendevents;\r
-    int _i_vlc;\r
-};\r
-\r
-#endif\r
-\r
+/*****************************************************************************
+ * plugin.h: ActiveX control for VLC
+ *****************************************************************************
+ * Copyright (C) 2005 VideoLAN
+ *
+ * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
+#ifndef __PLUGIN_H__
+#define __PLUGIN_H__
+
+#include <ole2.h>
+#include <olectl.h>
+
+#include <vlc/vlc.h>
+
+extern const GUID CLSID_VLCPlugin; 
+extern const GUID LIBID_AXVLC; 
+extern const GUID DIID_DVLCEvents; 
+
+class VLCPluginClass : public IClassFactory
+{
+
+public:
+
+    VLCPluginClass(LONG *p_class_ref,HINSTANCE hInstance);
+
+    /* IUnknown methods */
+    STDMETHODIMP QueryInterface(REFIID riid, void **ppv);
+    STDMETHODIMP_(ULONG) AddRef(void);
+    STDMETHODIMP_(ULONG) Release(void);
+
+    /* IClassFactory methods */
+    STDMETHODIMP CreateInstance(IUnknown *pUnkOuter, REFIID riid, void **ppv);
+    STDMETHODIMP LockServer(BOOL fLock);
+
+    LPCSTR getInPlaceWndClassName(void) const { return TEXT("VLC Plugin In-Place"); };
+    LPCSTR getVideoWndClassName(void) const { return TEXT("VLC Plugin Video"); };
+    HINSTANCE getHInstance(void) const { return _hinstance; };
+    HBITMAP getInPlacePict(void) const { return _inplace_hbitmap; };
+
+protected:
+
+    virtual ~VLCPluginClass();
+
+private:
+
+    LPLONG      _p_class_ref;
+    HINSTANCE   _hinstance;
+    ATOM        _inplace_wndclass_atom;
+    ATOM        _video_wndclass_atom;
+    HBITMAP     _inplace_hbitmap;
+};
+
+class VLCPlugin : public IUnknown
+{
+
+public:
+
+    VLCPlugin(VLCPluginClass *p_class);
+
+    /* IUnknown methods */
+    STDMETHODIMP QueryInterface(REFIID riid, void **ppv);
+    STDMETHODIMP_(ULONG) AddRef(void);
+    STDMETHODIMP_(ULONG) Release(void);
+
+    /* custom methods */
+    HRESULT getTypeLib(LCID lcid, ITypeLib **pTL)
+        { return LoadRegTypeLib(LIBID_AXVLC, 1, 0, lcid, pTL); };
+    REFCLSID getClassID(void) { return (REFCLSID)CLSID_VLCPlugin; };
+    REFIID getDispEventID(void) { return (REFIID)DIID_DVLCEvents; };
+
+    HRESULT onInitNew(void);
+    HRESULT onClose(DWORD dwSaveOption);
+
+    BOOL isInPlaceActive(void);
+    HRESULT onActivateInPlace(LPMSG lpMesg, HWND hwndParent, LPCRECT lprcPosRect, LPCRECT lprcClipRect);
+    HRESULT onInPlaceDeactivate(void);
+    HWND getInPlaceWindow(void) const { return _inplacewnd; };
+
+    BOOL hasFocus(void);
+    void setFocus(BOOL fFocus);
+
+    UINT getCodePage(void) { return _codepage; };
+    void setCodePage(UINT cp) { _codepage = cp; };
+
+    int  getVLCObject(void) { return _i_vlc; };
+
+    // control properties
+    void setSourceURL(const char *url) { _psz_src = strdup(url); };
+    void setAutoStart(BOOL autostart) { _b_autostart = autostart; };
+    void setLoopMode(BOOL loopmode) { _b_loopmode = loopmode; };
+    void setMute(BOOL mute) {
+        if( mute && _i_vlc )
+        {
+            VLC_VolumeMute(_i_vlc);
+        }
+    };
+    void setSendEvents(BOOL sendevents) { _b_sendevents = sendevents; };
+    void setVisible(BOOL fVisible);
+    BOOL getVisible(void) { return _b_visible; };
+
+    // container events
+    void onPositionChange(LPCRECT lprcPosRect, LPCRECT lprcClipRect);
+    void onPaint(PAINTSTRUCT &ps, RECT &pr);
+
+    // control events
+    void firePropChangedEvent(DISPID dispid);
+    void fireOnPlayEvent(void);
+    void fireOnPauseEvent(void);
+    void fireOnStopEvent(void);
+
+protected:
+
+    virtual ~VLCPlugin();
+
+private:
+
+    void calcPositionChange(LPRECT lprPosRect, LPCRECT lprcClipRect);
+
+    //implemented interfaces
+    class VLCOleObject *vlcOleObject;
+    class VLCOleControl *vlcOleControl;
+    class VLCOleInPlaceObject *vlcOleInPlaceObject;
+    class VLCOleInPlaceActiveObject *vlcOleInPlaceActiveObject;
+    class VLCPersistStreamInit *vlcPersistStreamInit;
+    class VLCPersistStorage *vlcPersistStorage;
+    class VLCPersistPropertyBag *vlcPersistPropertyBag;
+    class VLCProvideClassInfo *vlcProvideClassInfo;
+    class VLCConnectionPointContainer *vlcConnectionPointContainer;
+    class VLCObjectSafety *vlcObjectSafety;
+    class VLCControl *vlcControl;
+
+    // in place activated window (Clipping window)
+    HWND _inplacewnd;
+    // video window (Drawing window)
+    HWND _videownd;
+    RECT _bounds;
+
+    VLCPluginClass *_p_class;
+    ULONG _i_ref;
+
+    UINT _codepage;
+    char *_psz_src;
+    BOOL _b_autostart;
+    BOOL _b_loopmode;
+    BOOL _b_visible;
+    BOOL _b_sendevents;
+    int _i_vlc;
+};
+
+#endif
+