/***************************************************************************** * oleinplaceobject.cpp: ActiveX control for VLC ***************************************************************************** * Copyright (C) 2005 VideoLAN (Centrale Réseaux) and its contributors * * Authors: Damien Fouilleul * * 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. *****************************************************************************/ #include "plugin.h" #include "oleinplaceobject.h" #include using namespace std; STDMETHODIMP VLCOleInPlaceObject::GetWindow(HWND *pHwnd) { if( NULL == pHwnd ) return E_INVALIDARG; if( _p_instance->isInPlaceActive() ) { if( NULL != (*pHwnd = _p_instance->getInPlaceWindow()) ) return S_OK; return E_FAIL; } *pHwnd = NULL; return E_UNEXPECTED; }; STDMETHODIMP VLCOleInPlaceObject::ContextSensitiveHelp(BOOL fEnterMode) { return E_NOTIMPL; }; STDMETHODIMP VLCOleInPlaceObject::InPlaceDeactivate(void) { if( _p_instance->isInPlaceActive() ) { UIDeactivate(); _p_instance->onInPlaceDeactivate(); LPOLEOBJECT p_oleObject; if( SUCCEEDED(QueryInterface(IID_IOleObject, (void**)&p_oleObject)) ) { LPOLECLIENTSITE p_clientSite; if( SUCCEEDED(p_oleObject->GetClientSite(&p_clientSite)) ) { LPOLEINPLACESITE p_inPlaceSite; if( SUCCEEDED(p_clientSite->QueryInterface(IID_IOleInPlaceSite, (void**)&p_inPlaceSite)) ) { p_inPlaceSite->OnInPlaceDeactivate(); p_inPlaceSite->Release(); } p_clientSite->Release(); } p_oleObject->Release(); } return S_OK; } return E_UNEXPECTED; }; STDMETHODIMP VLCOleInPlaceObject::UIDeactivate(void) { if( _p_instance->isInPlaceActive() ) { if( _p_instance->hasFocus() ) { _p_instance->setFocus(FALSE); LPOLEOBJECT p_oleObject; if( SUCCEEDED(QueryInterface(IID_IOleObject, (void**)&p_oleObject)) ) { LPOLECLIENTSITE p_clientSite; if( SUCCEEDED(p_oleObject->GetClientSite(&p_clientSite)) ) { LPOLEINPLACESITE p_inPlaceSite; if( SUCCEEDED(p_clientSite->QueryInterface(IID_IOleInPlaceSite, (void**)&p_inPlaceSite)) ) { p_inPlaceSite->OnUIDeactivate(FALSE); p_inPlaceSite->Release(); } p_clientSite->Release(); } p_oleObject->Release(); } return S_OK; } } return E_UNEXPECTED; }; STDMETHODIMP VLCOleInPlaceObject::SetObjectRects(LPCRECT lprcPosRect, LPCRECT lprcClipRect) { if( _p_instance->isInPlaceActive() ) { _p_instance->onPositionChange(lprcPosRect, lprcClipRect); return S_OK; } return E_UNEXPECTED; }; STDMETHODIMP VLCOleInPlaceObject::ReactivateAndUndo(void) { return INPLACE_E_NOTUNDOABLE; };