Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

oleinplaceactiveobject.h

00001 /*****************************************************************************
00002  * oleinplaceactiveobject.h: ActiveX control for VLC
00003  *****************************************************************************
00004  * Copyright (C) 2005 the VideoLAN team
00005  *
00006  * Authors: Damien Fouilleul <[email protected]>
00007  *
00008  * This program is free software; you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation; either version 2 of the License, or
00011  * (at your option) any later version.
00012  *
00013  * This program is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with this program; if not, write to the Free Software
00020  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
00021  *****************************************************************************/
00022 
00023 #ifndef __OLEINPLACEACTIVEOBJECT_H__
00024 #define __OLEINPLACEACTIVEOBJECT_H__
00025 
00026 #include "oleidl.h"
00027 
00028 class VLCOleInPlaceActiveObject : public IOleInPlaceActiveObject
00029 {
00030 
00031 public:
00032 
00033     VLCOleInPlaceActiveObject(VLCPlugin *p_instance) : _p_instance(p_instance) {};
00034     virtual ~VLCOleInPlaceActiveObject() {};
00035 
00036     // IUnknown methods
00037     STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
00038     {
00039         if( (NULL != ppv)
00040          && (IID_IUnknown == riid) 
00041          && (IID_IOleWindow == riid) 
00042          && (IID_IOleInPlaceActiveObject == riid) )
00043         {
00044             AddRef();
00045             *ppv = reinterpret_cast<LPVOID>(this);
00046             return NOERROR;
00047         }
00048         return _p_instance->pUnkOuter->QueryInterface(riid, ppv);
00049     };
00050 
00051     STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->pUnkOuter->AddRef(); };
00052     STDMETHODIMP_(ULONG) Release(void) { return _p_instance->pUnkOuter->Release(); };
00053 
00054     // IOleWindow methods
00055     STDMETHODIMP GetWindow(HWND *);
00056     STDMETHODIMP ContextSensitiveHelp(BOOL);
00057 
00058     // IOleInPlaceActiveObject methods
00059     STDMETHODIMP EnableModeless(BOOL);
00060     STDMETHODIMP TranslateAccelerator(LPMSG);
00061     STDMETHODIMP OnFrameWindowActivate(BOOL);
00062     STDMETHODIMP OnDocWindowActivate(BOOL);
00063     STDMETHODIMP ResizeBorder(LPCRECT, LPOLEINPLACEUIWINDOW, BOOL);
00064 
00065 private:
00066 
00067     VLCPlugin *_p_instance;
00068 };
00069 
00070 #endif
00071 

Generated on Tue Dec 20 10:14:18 2005 for vlc-0.8.4a by  doxygen 1.4.2