minisymbiansite.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "minisite.h"
  36. #include "minisymbiansite.h"
  37. #include "minisymbiansurf.h"
  38. #include <e32std.h> 
  39. #include <eikenv.h> 
  40. #include <eikdef.h> 
  41. #include <gdi.h> 
  42. #include <fbs.h> 
  43. #include "hxprefs.h"
  44. #include "hxprefutil.h"
  45. //Well, I hate to add this, but we really have to keep track of how
  46. //many sites have been made so we can center and scale video only
  47. //playback. Not the cleanest thing in the world.
  48. const INT32 _zm_nSiteCount = 0;
  49. #define zm_nSiteCount HXGlobalInt32::Get(&_zm_nSiteCount)
  50. CHXSymbianSite::CHXSymbianSite( IUnknown* pContext,
  51.                                 IUnknown* pUnkOuter,
  52.                                 INT32     lZorder)
  53.     :  CMiniBaseSite(pContext, pUnkOuter, lZorder),
  54.        m_bAutoScale(TRUE)
  55. {
  56.     memset(&m_OrigSize, 0, sizeof(m_OrigSize));
  57.     zm_nSiteCount++;
  58. }
  59. CHXSymbianSite::~CHXSymbianSite()
  60. {
  61.     zm_nSiteCount--;
  62. }
  63. void* CHXSymbianSite::_Create(void* pParentWindow, UINT32 style)
  64. {
  65.     //XXXGfw Don't use.
  66.     HX_ASSERT("Not supported on Symbian"==NULL);
  67.     
  68.     return (void*)NULL;
  69. }
  70. void CHXSymbianSite::_Destroy(HXxWindow* pWindow)
  71. {
  72. }
  73. void CHXSymbianSite::_ChildCreated()
  74. {
  75.     //If we have a child created, stop doing any of the
  76.     //centering or scaling.
  77.     if( m_pWindow && m_pWindow->window && m_bAutoScale )
  78.     {
  79.         SetSize(m_OrigSize);
  80.     }
  81. }
  82. void CHXSymbianSite::_SetSize(HXxSize size)
  83. {
  84. }
  85. void  CHXSymbianSite::_SetPosition(HXxPoint position)
  86. {
  87. }
  88. void CHXSymbianSite::_AttachWindow()
  89. {
  90. }
  91. BOOL CHXSymbianSite::_MoveWindow( void* window ,
  92.                                    INT32 X, INT32 Y,
  93.                                    INT32 nWidth, INT32 nHeight,
  94.                                    BOOL bRepaint)
  95.     
  96. {
  97.     return TRUE;
  98. }
  99. STDMETHODIMP CHXSymbianSite::SetSize(HXxSize size)
  100. {
  101.     //First, call the basesite's impl.
  102.     HX_RESULT ret = CMiniBaseSite::SetSize(size);
  103.     //Now do our scaling..
  104.     //There is often a border around our display window and the edge
  105.     //of the physical phone display. So, if you play back a 176x144
  106.     //video on a 176x144 screen it won't quite fit. Instead of
  107.     //shrinking this to 1/2, go ahead and just lose some pixels
  108.     //around the edges and display it at 1:1.
  109.     UINT32          nPixelWaste  = 2;
  110.     IHXPreferences* pPreferences = NULL;
  111.     if (HXR_OK == m_pContext->QueryInterface(IID_IHXPreferences, (void**)&pPreferences))
  112.     {
  113.         ReadPrefINT32(pPreferences, "PixelWaste", nPixelWaste );
  114.         ReadPrefBOOL(pPreferences, "AutoScale", m_bAutoScale);
  115.         HX_RELEASE(pPreferences);
  116.     }
  117.     
  118.     //Only do the centering and scaling for the top level site.  If
  119.     //CreateChild is ever called on this top level site, then we will
  120.     //revert this site back to 0,0 and the size of the window. Until
  121.     //then, we assume this is an single video playback only and center
  122.     //scale it.
  123.     if( m_pWindow && m_pWindow->window && 1==zm_nSiteCount )
  124.     {
  125.         //Get the size of the screen device.
  126.         RDrawableWindow* pWin = (RDrawableWindow*)m_pWindow->window;
  127.         TSize windowSize = pWin->Size();
  128.         int nWidth  = windowSize.iWidth;
  129.         int nHeight = windowSize.iHeight;
  130.         int nRatio  = 1;
  131.         if( m_bAutoScale )
  132.         {
  133.             m_OrigSize = m_size;
  134.             
  135.             //Now figure out what scale factor to play back at: .5, 1, 2.
  136.             nRatio = min( (nWidth+nPixelWaste)/size.cx,
  137.                           (nHeight+nPixelWaste)/size.cy
  138.                           );
  139.             if( 2 < nRatio )
  140.                 nRatio = 2;
  141.             switch( nRatio )
  142.             {
  143.                case 0:
  144.                    //Go to 1/2, its the best we can do.
  145.                    //XXXGfw TODO: if its too big lets not even play this clip.
  146.                    m_size.cx = size.cx/2;
  147.                    m_size.cy = size.cy/2;
  148.                    break;
  149.                case 1:
  150.                    //Just leave it alone.
  151.                    break;
  152.                case 2:
  153.                    //Go to double size.
  154.                    m_size.cx = size.cx*2;
  155.                    m_size.cy = size.cy*2;
  156.                    break;
  157.                default:
  158.                    break;
  159.             }
  160.         }
  161.         
  162. #ifndef HELIX_FEATURE_SMIL_SITE
  163.         //There are no site-watchers in non-smil site cases. So,
  164.         //the TLC has no chance to center the site. We will do
  165.         //it here.
  166.         HXxPoint point;
  167.         point.x = (nWidth-m_size.cx)/2;
  168.         point.y = (nHeight-m_size.cy)/2;
  169.         SetPosition( point );
  170. #else        
  171.         //If we changed size, due to autoscaling, call the site
  172.         //watchers and let them know. On symbian this lets the TLC
  173.         //do auto centering.
  174.         if( 1 != nRatio )
  175.         {
  176.             CHXSimpleList::Iterator i;
  177.             for(i=m_PassiveSiteWatchers.Begin(); i!= m_PassiveSiteWatchers.End(); ++i)
  178.             {
  179.                 ((IHXPassiveSiteWatcher*) *i)->SizeChanged(&m_size);
  180.             }
  181.         }
  182. #endif 
  183.     }
  184.     return ret;
  185. }