evnthook.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:12k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: evnthook.cpp,v 1.3.12.1 2004/07/09 01:58:01 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. // include
  50. #include "hxtypes.h"
  51. #include "hxwintyp.h"
  52. #include "hxcom.h"
  53. #include "hxwin.h"
  54. #include "hxevent.h"
  55. // pncont
  56. #include "hxstring.h"
  57. #include "hxmap.h"
  58. // smlrendr
  59. #include "evnthook.h"
  60. // pndebug
  61. #include "debugout.h"
  62. #include "hxheap.h"
  63. #ifdef _DEBUG
  64. #undef HX_THIS_FILE
  65. static const char HX_THIS_FILE[] = __FILE__;
  66. #endif
  67. CSmilEventHook::CSmilEventHook(CSmilEventHookResponse* pResponse,
  68.                                const char*             pRegionName,
  69.                                const char*             pChannelName,
  70.                                BOOL                    bNoRegion,
  71.                                const char*             pszMediaID)
  72. {
  73.     m_lRefCount    = 0;
  74.     m_pResponse    = pResponse;
  75.     m_bNoRegion    = bNoRegion;
  76.     m_pSiteMap     = NULL;
  77.     m_pRegionName  = new CHXString(pRegionName);
  78.     HX_ASSERT(m_pRegionName);
  79.     m_pChannelName = new CHXString(pChannelName);
  80.     HX_ASSERT(m_pChannelName);
  81.     m_pMediaID     = new CHXString(pszMediaID);
  82.     HX_ASSERT(m_pMediaID);
  83.     if (m_pResponse)
  84.     {
  85.         m_pResponse->AddRef();
  86.     }
  87. }
  88. CSmilEventHook::~CSmilEventHook()
  89. {
  90.     HX_DELETE(m_pRegionName);
  91.     HX_DELETE(m_pChannelName);
  92.     HX_DELETE(m_pMediaID);
  93.     // Release the response interface
  94.     if (m_pResponse)
  95.     {
  96.         m_pResponse->Release();
  97.         m_pResponse = NULL;
  98.     }
  99.     // Release any remaining sites
  100.     if (m_pSiteMap)
  101.     {
  102.         POSITION pos = m_pSiteMap->GetStartPosition();
  103.         while (pos)
  104.         {
  105.             void* pKey = NULL;
  106.             void* pPtr = NULL;
  107.             m_pSiteMap->GetNextAssoc(pos, pKey, pPtr);
  108.             IHXSite* pSite = (IHXSite*) pKey;
  109.             HX_RELEASE(pSite);
  110.         }
  111.         m_pSiteMap->RemoveAll();
  112.     }
  113.     HX_DELETE(m_pSiteMap);
  114. }
  115. STDMETHODIMP CSmilEventHook::QueryInterface(REFIID riid, void** ppvObj)
  116. {
  117.     HX_RESULT retVal = HXR_OK;
  118.     if (ppvObj)
  119.     {
  120.         if(IsEqualIID(riid, IID_IUnknown))
  121.         {
  122.             AddRef();
  123.             *ppvObj = (IUnknown*) (IHXEventHook*) this;
  124.         }
  125.         else if(IsEqualIID(riid, IID_IHXEventHook))
  126.         {
  127.             AddRef();
  128.             *ppvObj = (IHXEventHook*) this;
  129.         }
  130.         else
  131.         {
  132.             *ppvObj = NULL;
  133.             retVal  = HXR_NOINTERFACE;
  134.         }
  135.     }
  136.     return retVal;
  137. }
  138. STDMETHODIMP_(ULONG32) CSmilEventHook::AddRef()
  139. {
  140.     return InterlockedIncrement(&m_lRefCount);
  141. }
  142. STDMETHODIMP_(ULONG32) CSmilEventHook::Release()
  143. {
  144.     if(InterlockedDecrement(&m_lRefCount) > 0)
  145.     {
  146.         return m_lRefCount;
  147.     }
  148.     delete this;
  149.     return 0;
  150. }
  151. STDMETHODIMP CSmilEventHook::HandleEvent(IHXSite* pSite, HXxEvent* pEvent)
  152. {
  153.     HX_RESULT rc = HXR_OK;
  154.     void* pVoid = NULL;
  155.     if(m_pResponse &&
  156.        m_pSiteMap &&
  157.        m_pSiteMap->Lookup((void*) pSite, pVoid))
  158.     {
  159.         switch(pEvent->event)
  160.         {
  161.             case HX_MOUSE_MOVE:
  162.             case HX_MOUSE_ENTER:
  163.             case HX_MOUSE_LEAVE:
  164.                 {
  165.     BOOL bIsMouseLeaveEvent =
  166.     (HX_MOUSE_LEAVE == pEvent->event);
  167.     BOOL bHandleSetCursor = FALSE;
  168.                     HXxPoint* mousePt = (HXxPoint*) pEvent->param1;
  169.                     rc = m_pResponse->HandleMouseMove(pEvent->window,
  170.                                                       GetRegionName(),
  171.                                                       GetMediaID(),
  172.                                                       (INT16) mousePt->x,
  173.                                                       (INT16) mousePt->y,
  174.       (UINT32)pEvent->event,
  175.       bHandleSetCursor);
  176.     // /In case we moved off of a hyperlink and onto an area
  177.     // not covered by media, we need to update the cursor:
  178.     if (bHandleSetCursor)
  179.     {
  180. m_pResponse->HandleSetCursor();
  181.     }
  182.                     if (SUCCEEDED(rc))
  183.                     {
  184.                         pEvent->handled = TRUE;
  185.                     }
  186.     // /Fixes PR 62047; if we return anything else, then the
  187.     // event doesn't get passed along to media, below, which
  188.     // it needs to in the case where we didn't handle this:
  189.     rc = HXR_OK;
  190.                 }
  191.                 break;
  192.             case HX_PRIMARY_BUTTON_UP:
  193.                 {
  194.                     HXxPoint* mousePt = (HXxPoint*) pEvent->param1;
  195.                     BOOL      bHandled = FALSE;
  196.                     rc = m_pResponse->HandleLButtonUp(GetRegionName(),
  197.                                                       GetMediaID(),
  198.                                                       (INT16) mousePt->x,
  199.                                                       (INT16) mousePt->y,
  200.                                                       bHandled);
  201.                     if (SUCCEEDED(rc))
  202.                     {
  203.                         pEvent->handled = bHandled;
  204.                     }
  205.     rc = HXR_OK; // /Fixes PR 62047 (see above).
  206.                 }
  207.                 break;
  208.             case HX_SET_FOCUS:
  209.                 {
  210.                     rc = m_pResponse->HandleGotFocus(GetRegionName(),
  211.                                                      GetMediaID());
  212.                     if (SUCCEEDED(rc))
  213.                     {
  214.                         pEvent->handled = TRUE;
  215.                     }
  216.                 }
  217.                 break;
  218.             case HX_LOSE_FOCUS:
  219.                 {
  220.                     rc = m_pResponse->HandleLostFocus(GetRegionName(),
  221.                                                       GetMediaID());
  222.                     if (SUCCEEDED(rc))
  223.                     {
  224.                         pEvent->handled = TRUE;
  225.                     }
  226.                 }
  227.                 break;
  228.                 // Translated key event (already accounts for shift+, CTRL+, etc.):            
  229. #if defined(_WINDOWS)
  230.                 // XXXEH- Old site implementation passes WM_CHAR message only;
  231.                 // we should remove this after HX_CHAR is being sent properly:
  232.                 // XXXMEH - Since we are going to stop claiming that
  233.                 // we handled keystrokes, then we need to only listen
  234.                 // on either WM_CHAR OR HX_CHAR, but not both. If we
  235.                 // were listening on both and not claiming that we 
  236.                 // handled the keystroke, then we would get both of
  237.                 // them and potentially try to start foo.accesskey()
  238.                 // elements twice. So we will only listen for HX_CHAR
  239. //            case WM_CHAR:
  240. #endif
  241.             case HX_CHAR:
  242.             {
  243.                 UINT16 uCharPressed = (UINT16) (UINT32)pEvent->param1;
  244.                 // XXXEH: TODO: Handle this: "The character is a single
  245.                 // character from [[ISO10646]]."
  246.                 rc = m_pResponse->HandleCharEvent(uCharPressed);
  247.                 if (SUCCEEDED(rc))
  248.                 {
  249.                     // XXXMEH - we will no longer claim that we handle
  250.                     // keystrokes. This will allow renderers such as 
  251.                     // flash to get the keystrokes for forms, etc.
  252.                     pEvent->handled = FALSE;
  253.                 }
  254. rc = HXR_OK; // /Fixes PR 62248 (see PR 62047 note, above).
  255.             }
  256.             break;
  257. #ifdef _WINDOWS
  258.             case WM_SETCURSOR:
  259.             {
  260.                 pEvent->handled = m_pResponse->HandleSetCursor();
  261.             }
  262.             break;
  263. #endif  
  264.             default:
  265.                 break;
  266.         }
  267.     }
  268.     return rc;
  269. }
  270. STDMETHODIMP CSmilEventHook::SiteAdded(IHXSite* pSite)
  271. {
  272.     HX_RESULT retVal = HXR_OK;
  273.     if (pSite)
  274.     {
  275.         // Create the site map if necessary
  276.         if (!m_pSiteMap)
  277.         {
  278.             m_pSiteMap = new CHXMapPtrToPtr();
  279.         }
  280.         if (m_pSiteMap)
  281.         {
  282.             // AddRef the site before adding it
  283.             pSite->AddRef();
  284.             // Add this site to the site map
  285.             m_pSiteMap->SetAt((void*) pSite, (void*) 0);
  286.             // Add how events if necessary
  287.             if(m_bNoRegion && m_pResponse)
  288.             {
  289.                 m_pResponse->AddShowEvents(GetRegionName(), pSite);
  290.             }
  291.         }
  292.         else
  293.         {
  294.             retVal = HXR_OUTOFMEMORY;
  295.         }
  296.     }
  297.     else
  298.     {
  299.         retVal = HXR_FAIL;
  300.     }
  301.     return retVal;
  302. }
  303. STDMETHODIMP CSmilEventHook::SiteRemoved(IHXSite* pSite)
  304. {
  305.     HX_RESULT retVal = HXR_OK;
  306.     // Check to see if this site is in the map
  307.     void* pVoid = NULL;
  308.     if (m_pSiteMap && m_pSiteMap->Lookup((void*) pSite, pVoid))
  309.     {
  310.         // Remove this site from the map
  311.         m_pSiteMap->RemoveKey((void*) pSite);
  312.         // Release our ref on the site
  313.         HX_RELEASE(pSite);
  314.     }
  315.     return retVal;
  316. }
  317. const char* CSmilEventHook::GetRegionName() const
  318. {
  319.     const char* pRet = NULL;
  320.     if (m_pRegionName)
  321.     {
  322.         pRet = (const char*) *m_pRegionName;
  323.     }
  324.     return pRet;
  325. }
  326. const char* CSmilEventHook::GetChannelName() const
  327. {
  328.     const char* pRet = NULL;
  329.     if (m_pChannelName)
  330.     {
  331.         pRet = (const char*) *m_pChannelName;
  332.     }
  333.     return pRet;
  334. }
  335. const char* CSmilEventHook::GetMediaID() const
  336. {
  337.     const char* pRet = NULL;
  338.     if (m_pMediaID)
  339.     {
  340.         pRet = (const char*) *m_pMediaID;
  341.     }
  342.     return pRet;
  343. }