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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: minisymbiansite.cpp,v 1.14.2.4 2004/07/09 01:59:11 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 "minisite.h"
  50. #include "minisymbiansite.h"
  51. #include "minisymbiansurf.h"
  52. #include <e32std.h> 
  53. #include <eikenv.h> 
  54. #include <eikdef.h> 
  55. #include <gdi.h> 
  56. #include <fbs.h> 
  57. #include "hxprefs.h"
  58. #include "hxprefutil.h"
  59. //Well, I hate to add this, but we really have to keep track of how
  60. //many sites have been made so we can center and scale video only
  61. //playback. Not the cleanest thing in the world.
  62. const INT32 _zm_nSiteCount = 0;
  63. #define zm_nSiteCount HXGlobalInt32::Get(&_zm_nSiteCount)
  64. CHXSymbianSite::CHXSymbianSite( IUnknown* pContext,
  65.                                 IUnknown* pUnkOuter,
  66.                                 INT32     lZorder)
  67.     :  CMiniBaseSite(pContext, pUnkOuter, lZorder),
  68.        m_bAutoScale(TRUE)
  69. {
  70.     memset(&m_OrigSize, 0, sizeof(m_OrigSize));
  71.     zm_nSiteCount++;
  72. }
  73. CHXSymbianSite::~CHXSymbianSite()
  74. {
  75.     zm_nSiteCount--;
  76. }
  77. void* CHXSymbianSite::_Create(void* pParentWindow, UINT32 style)
  78. {
  79.     //XXXGfw Don't use.
  80.     HX_ASSERT("Not supported on Symbian"==NULL);
  81.     
  82.     return (void*)NULL;
  83. }
  84. void CHXSymbianSite::_Destroy(HXxWindow* pWindow)
  85. {
  86. }
  87. void CHXSymbianSite::_ChildCreated()
  88. {
  89.     //If we have a child created, stop doing any of the
  90.     //centering or scaling.
  91.     if( m_pWindow && m_pWindow->window && m_bAutoScale )
  92.     {
  93.         SetSize(m_OrigSize);
  94.     }
  95. }
  96. void CHXSymbianSite::_SetSize(HXxSize size)
  97. {
  98. }
  99. void  CHXSymbianSite::_SetPosition(HXxPoint position)
  100. {
  101. }
  102. void CHXSymbianSite::_AttachWindow()
  103. {
  104. }
  105. BOOL CHXSymbianSite::_MoveWindow( void* window ,
  106.                                    INT32 X, INT32 Y,
  107.                                    INT32 nWidth, INT32 nHeight,
  108.                                    BOOL bRepaint)
  109.     
  110. {
  111.     return TRUE;
  112. }
  113. STDMETHODIMP CHXSymbianSite::SetSize(HXxSize size)
  114. {
  115.     //First, call the basesite's impl.
  116.     HX_RESULT ret = CMiniBaseSite::SetSize(size);
  117.     //Now do our scaling..
  118.     //There is often a border around our display window and the edge
  119.     //of the physical phone display. So, if you play back a 176x144
  120.     //video on a 176x144 screen it won't quite fit. Instead of
  121.     //shrinking this to 1/2, go ahead and just lose some pixels
  122.     //around the edges and display it at 1:1.
  123.     UINT32          nPixelWaste  = 2;
  124.     IHXPreferences* pPreferences = NULL;
  125.     if (HXR_OK == m_pContext->QueryInterface(IID_IHXPreferences, (void**)&pPreferences))
  126.     {
  127.         ReadPrefINT32(pPreferences, "PixelWaste", nPixelWaste );
  128.         ReadPrefBOOL(pPreferences, "AutoScale", m_bAutoScale);
  129.         HX_RELEASE(pPreferences);
  130.     }
  131.     
  132.     //Only do the centering and scaling for the top level site.  If
  133.     //CreateChild is ever called on this top level site, then we will
  134.     //revert this site back to 0,0 and the size of the window. Until
  135.     //then, we assume this is an single video playback only and center
  136.     //scale it.
  137.     if( m_pWindow && m_pWindow->window && 1==zm_nSiteCount )
  138.     {
  139.         //Get the size of the screen device.
  140.         RDrawableWindow* pWin = (RDrawableWindow*)m_pWindow->window;
  141.         TSize windowSize = pWin->Size();
  142.         int nWidth  = windowSize.iWidth;
  143.         int nHeight = windowSize.iHeight;
  144.         int nRatio  = 1;
  145.         if( m_bAutoScale )
  146.         {
  147.             m_OrigSize = m_size;
  148.             
  149.             //Now figure out what scale factor to play back at: .5, 1, 2.
  150.             nRatio = min( (nWidth+nPixelWaste)/size.cx,
  151.                           (nHeight+nPixelWaste)/size.cy
  152.                           );
  153.             if( 2 < nRatio )
  154.                 nRatio = 2;
  155.             switch( nRatio )
  156.             {
  157.                case 0:
  158.                    //Go to 1/2, its the best we can do.
  159.                    //XXXGfw TODO: if its too big lets not even play this clip.
  160.                    m_size.cx = size.cx/2;
  161.                    m_size.cy = size.cy/2;
  162.                    break;
  163.                case 1:
  164.                    //Just leave it alone.
  165.                    break;
  166.                case 2:
  167.                    //Go to double size.
  168.                    m_size.cx = size.cx*2;
  169.                    m_size.cy = size.cy*2;
  170.                    break;
  171.                default:
  172.                    break;
  173.             }
  174.         }
  175.         
  176. #ifndef HELIX_FEATURE_SMIL_SITE
  177.         //There are no site-watchers in non-smil site cases. So,
  178.         //the TLC has no chance to center the site. We will do
  179.         //it here.
  180.         HXxPoint point;
  181.         point.x = (nWidth-m_size.cx)/2;
  182.         point.y = (nHeight-m_size.cy)/2;
  183.         SetPosition( point );
  184. #else        
  185.         //If we changed size, due to autoscaling, call the site
  186.         //watchers and let them know. On symbian this lets the TLC
  187.         //do auto centering.
  188.         if( 1 != nRatio )
  189.         {
  190.             CHXSimpleList::Iterator i;
  191.             for(i=m_PassiveSiteWatchers.Begin(); i!= m_PassiveSiteWatchers.End(); ++i)
  192.             {
  193.                 ((IHXPassiveSiteWatcher*) *i)->SizeChanged(&m_size);
  194.             }
  195.         }
  196. #endif 
  197.     }
  198.     return ret;
  199. }