MSW: fix DisableScreensaver and RestoreScreensaver definitions
[vlc/asuraparaju-public.git] / projects / activex / olecontrol.cpp
blob32e2f1c82ff3f74b8a81e5128631617d3bd68aa6
1 /*****************************************************************************
2 * olecontrol.cpp: ActiveX control for VLC
3 *****************************************************************************
4 * Copyright (C) 2005 the VideoLAN team
6 * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
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.
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.
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 *****************************************************************************/
23 #include "plugin.h"
24 #include "olecontrol.h"
26 using namespace std;
28 STDMETHODIMP VLCOleControl::GetControlInfo(CONTROLINFO *pCI)
30 if( NULL == pCI )
31 return E_POINTER;
33 pCI->cb = sizeof(CONTROLINFO);
34 pCI->hAccel = NULL;
35 pCI->cAccel = 0;
36 pCI->dwFlags = 0;
38 return S_OK;
41 STDMETHODIMP VLCOleControl::OnMnemonic(LPMSG pMsg)
43 return S_OK;
46 STDMETHODIMP VLCOleControl::OnAmbientPropertyChange(DISPID dispID)
48 HRESULT hr;
49 LPOLEOBJECT oleObj;
51 hr = QueryInterface(IID_IOleObject, (LPVOID *)&oleObj);
52 if( SUCCEEDED(hr) )
54 LPOLECLIENTSITE clientSite;
56 hr = oleObj->GetClientSite(&clientSite);
57 if( SUCCEEDED(hr) && (NULL != clientSite) )
59 _p_instance->onAmbientChanged(clientSite, dispID);
60 clientSite->Release();
62 oleObj->Release();
64 return S_OK;
67 STDMETHODIMP VLCOleControl::FreezeEvents(BOOL bFreeze)
69 _p_instance->freezeEvents(bFreeze);
70 return S_OK;