oleinplaceactiveobject.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * oleinplaceactiveobject.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21.  *****************************************************************************/
  22. #include "plugin.h"
  23. #include "oleinplaceactiveobject.h"
  24. using namespace std;
  25. STDMETHODIMP VLCOleInPlaceActiveObject::GetWindow(HWND *pHwnd)
  26. {
  27.     if( NULL == pHwnd )
  28.         return E_POINTER;
  29.     *pHwnd = NULL;
  30.     if( _p_instance->isInPlaceActive() )
  31.     {
  32.         if( NULL != (*pHwnd = _p_instance->getInPlaceWindow()) )
  33.             return S_OK;
  34.     }
  35.     return E_FAIL;
  36. };
  37. STDMETHODIMP VLCOleInPlaceActiveObject::EnableModeless(BOOL fEnable)
  38. {
  39.     return S_OK;
  40. };
  41. STDMETHODIMP VLCOleInPlaceActiveObject::ContextSensitiveHelp(BOOL fEnterMode)
  42. {
  43.     return E_NOTIMPL;
  44. };
  45. STDMETHODIMP VLCOleInPlaceActiveObject::TranslateAccelerator(LPMSG lpmsg)
  46. {
  47.     HRESULT hr = S_FALSE;
  48.     LPOLEOBJECT oleObj;
  49.     if( SUCCEEDED(QueryInterface(IID_IOleObject, (LPVOID *)&oleObj)) )
  50.     {
  51.         LPOLECLIENTSITE clientSite;
  52.         if( SUCCEEDED(oleObj->GetClientSite(&clientSite)) && (NULL != clientSite) )
  53.         {
  54.             IOleControlSite *controlSite;
  55.             if( SUCCEEDED(clientSite->QueryInterface(IID_IOleControlSite, (LPVOID *)&controlSite)) )
  56.             {
  57.                 hr = controlSite->TranslateAccelerator(lpmsg,
  58.                     ((GetKeyState(VK_SHIFT) >> 15) & 1) |
  59.                     ((GetKeyState(VK_CONTROL) >> 14) & 2) |
  60.                     ((GetKeyState(VK_MENU) >> 13) & 4) );
  61.                 controlSite->Release();
  62.             }
  63.             clientSite->Release();
  64.         }
  65.         oleObj->Release();
  66.     }
  67.     return hr;
  68. };
  69. STDMETHODIMP VLCOleInPlaceActiveObject::OnFrameWindowActivate(BOOL fActivate)
  70. {
  71.     return S_OK;
  72. };
  73. STDMETHODIMP VLCOleInPlaceActiveObject::OnDocWindowActivate(BOOL fActivate)
  74. {
  75.     return S_OK;
  76. };
  77. STDMETHODIMP VLCOleInPlaceActiveObject::ResizeBorder(LPCRECT prcBorder, LPOLEINPLACEUIWINDOW pUIWindow, BOOL fFrameWindow)
  78. {
  79.     return S_OK;
  80. };