unixsurf.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

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. #ifndef _UNIXSURF_H
  36. #define _UNIXSURF_H
  37. #include "basesurf.h"
  38. #include "baseroot.h"
  39. #include <X11/Xatom.h>
  40. #include <X11/Xlib.h>
  41. #include <X11/Xutil.h>
  42. #include <X11/Xos.h>
  43. #include <X11/Intrinsic.h>
  44. #include <X11/extensions/XShm.h>
  45. //This was never added to the XShm.h header file for some reason.
  46. extern "C"
  47. {
  48.     extern int XShmGetEventBase( Display *);
  49. }
  50. #if defined(_LINUX) && defined(_OVERLAY)
  51. #  include <X11/extensions/Xv.h>
  52. #  include <X11/extensions/Xvlib.h>
  53. #endif
  54. class CUnixSurf : public CBaseSurface
  55. {
  56. public:
  57.    CUnixSurf( IUnknown* pContext, CHXBaseSite* pSite );
  58.    
  59. protected:
  60.    virtual void      _ReleaseSurface(CBaseRootSurface* pSurface);
  61.    virtual void      _DrawBlack(void* pWindow);
  62.    virtual HX_RESULT _BltToPrimary(HXxRect& rDestRect, HXxRect& rSrcRect);
  63.    virtual void      _CreateBuffer();
  64.    virtual HX_RESULT _GetCaps(UINT32 *pfSurfaceCaps);
  65.    virtual HX_RESULT _CreateOverlay(BOOL bOverlay, int cid, int x, int y);
  66.    virtual HX_RESULT _LockInternalSurface(UCHAR** ppSurfPtr,
  67.                                           LONG32* pnSurfPitch,
  68.                                           HXxSize& notused);
  69.    virtual HX_RESULT _UnlockInternalSurface(UCHAR* pSurfPtr);
  70.    virtual void      _SetupDCObjects(HXxDC hxxDC,
  71.                                      void** phOldBrush, void** phOldPen);
  72.    virtual void      _FillRectangle(HXxDC hxxDC,
  73.                                     UINT32 left, UINT32 top,
  74.                                     UINT32 right, UINT32 bottom);
  75.    virtual void      _RestoreDCObjects(HXxDC hxxDC,
  76.                                        void* hOldBrush, void* hOldPen);
  77.    virtual void      _GetCompositionSurfaceHXxDC(HXxDC *hdc);
  78.    virtual void      _ReleaseCompositionSurfaceHXxDC(HXxDC hdc);
  79.    virtual INT32     _InsureColorMatch(INT32 InColor);
  80.    virtual void      _SetColorKey(INT32 nColorSpaceLowValue,
  81.                                   INT32 nColorSpaceHighValue);
  82.    virtual void      _UpdateOverlay(HXxRect* src, HXxRect* dest, INT32 inFlags);
  83.    virtual BOOL      _IsSurfaceVisible();
  84.    virtual void      _ReleaseSurface();
  85.    virtual HXxDC     _GetDC(HXxWindow*);
  86.    virtual void      _ReleaseDC(HXxWindow*, HXxDC);
  87.    //Helpers
  88.    // returns true if there is a port that supports the fourcc.
  89.    // if called with no parameters, return wether or not overlays
  90.    // are supported at all.
  91.    BOOL _OverlayAvailable(int fourccWanted=-1, int* nPortID=NULL );
  92.    //Converts window coordinates into device coordinates
  93.    //if needed. This is used on Windows at least because
  94.    //its overlays use screen coords instead of window coords.
  95.    //This is a noop on unix as its overlays are in window coords.
  96.    virtual void _GetWindowDeviceCords(HXxRect* rect );
  97.    
  98. private:
  99.    virtual ~CUnixSurf();
  100.    PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  101.    int m_nCompletionEventID;
  102.     
  103.    //Protect unintentional copy and default ctors.
  104.    CUnixSurf();
  105.    CUnixSurf( const CUnixSurf& );
  106.    CUnixSurf& operator=(const CUnixSurf& it );
  107. #if defined(_LINUX) && defined(_OVERLAY)
  108.    static CUnixSurf* zm_pXvOwner;
  109.    
  110.    BOOL        m_bWallPaperMode;
  111.    ULONG32     m_ulColorKey;
  112.    BOOL        m_bPaintClipList;
  113.    BOOL        m_bStretchToFill;
  114.    INT32       m_nPortID;
  115.    int         m_nContrast;
  116.    int         m_nBrightness;
  117.    XvImage**   m_pXvImage;
  118.    Atom        m_atomColorKey;
  119.    Atom        m_atomClipKey;
  120.    Atom        m_atomBrightness;
  121.    Atom        m_atomContrast;
  122. #endif //_OVERLAY
  123.   public:
  124.    ULONG32     m_ulLastOverlayUpdateTime;
  125.   private:
  126.    
  127.    UCHAR**     m_pcVideoBuf;
  128.    int         m_nVideoPitch;
  129.    ULONG32     m_ulFourCCID;
  130.    
  131.    //Shared memory members.
  132.    BOOL             m_bUseShm;
  133.    XShmSegmentInfo* m_shmInfo;
  134.    int*             m_nShmId;
  135.    
  136.    Display*    m_display;
  137.    GC          m_GC;
  138.    int         m_nScreenNumber;
  139.    int         m_nCurrentBuffer;
  140.    int         m_nMultiBufferCount;
  141. };
  142. #endif