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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: unixsite.h,v 1.2.34.2 2004/07/09 01:58:44 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.  *                 Phil Dibowitz (jaymzh)
  48.  * 
  49.  * ***** END LICENSE BLOCK ***** */
  50. #ifndef _UNIXSITE_H
  51. #define _UNIXSITE_H
  52. #include <X11/Xatom.h>
  53. #include <X11/Xlib.h>
  54. #include <X11/Xutil.h>
  55. #include <X11/Xos.h>
  56. #include <X11/Intrinsic.h>
  57. #include <X11/extensions/XShm.h>
  58. #include "basesite.h"
  59. class CHXUnixSite : public CHXBaseSite
  60. {
  61. public:
  62.    friend class CUnixSurf;
  63.    friend class CUnixRootSurf;
  64.    
  65.    CHXUnixSite( IUnknown* pContext,
  66.                 IUnknown* pUnkOuter,
  67.                 INT32 lInitialZorder);
  68.    
  69.    static void ProcessEvent(HXxEvent* pEvent);
  70.    Window CreateXWindow( Window win ); 
  71.    void _ForwardUpdateEvent(HXxEvent* pEvent);
  72.    //static member vars.
  73.    static Display* zm_display;
  74.    void _UpdateOverlayIfNeeded();
  75.    BOOL m_bIgnoreFocusOutInFS;
  76.    //We override this.
  77.    void CheckColorSettings();
  78. protected:
  79.    
  80.    virtual ~CHXUnixSite();
  81.    
  82.    //
  83.    // CHXUnixSite only methods....
  84.    //
  85.    HX_RESULT   _OpenXDisplay(char* DiplayString);
  86.    static void _CollapseExposeEvents(XEvent* xevent);
  87.    BOOL        _ShouldProcess(HXxEvent* pEvent);
  88.    void        _DrawArrows();
  89.    void        _CreateHorizScrollBar(void);
  90.    void        _CreateVertScrollBar(void);
  91.    BOOL        _InButton(HXxPoint& pt, int x, int y );
  92.    void        _DestroyScrollButtons();
  93.    void        _MapScrollButtons();
  94.    void        _MapHorzScroll();
  95.    void        _MapVertScroll();
  96.    void        _UnmapHorzScroll();
  97.    void        _UnmapVertScroll();
  98.    void        _UnmapScrollButtons();
  99.    void        _BuildClipRegion();
  100.    void        _ReleaseClippingRegion();
  101.    //
  102.    // Seperate object for our callbacks to keep the events flowing.
  103.    //
  104.    class UnixEventHandler : public IHXCallback
  105.    {
  106.    public:
  107.       UnixEventHandler(CHXUnixSite* pParent);
  108.         
  109.       //IUnknown methods
  110.       virtual HX_RESULT QueryInterface(REFIID riid, void** ppvObj);
  111.       virtual ULONG32 AddRef();
  112.       virtual ULONG32 Release();
  113.       //IHXCallback methods
  114.       virtual HX_RESULT Func(); 
  115.       void CancelCallback();
  116.         
  117.    private:
  118.       virtual ~UnixEventHandler();
  119.       PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  120.        
  121.       UnixEventHandler();
  122.       UnixEventHandler(const UnixEventHandler&);
  123.       UnixEventHandler& operator=(const UnixEventHandler& it );
  124.         
  125.       CHXUnixSite*   m_pParent;
  126.       LONG32         m_lRefCount;
  127.       CallbackHandle m_cbHandle;
  128.    };
  129.     
  130.    //
  131.    // CHXBaseSite inherited methods
  132.    //
  133.    virtual void  _NeedWindowedSite();
  134.    virtual void  _AttachWindow();
  135.    virtual void  _DetachWindow();
  136.    virtual void* _Create(void* ParentWindow, UINT32 style);
  137.    virtual void  _Destroy(HXxWindow* pWindow); 
  138.    virtual void  _SetSize(HXxSize size); 
  139.    virtual void  _SetPosition(HXxPoint position); 
  140.    virtual void  _DamageRect(HXxRect rect);
  141.    virtual void  _DamageRegion(HXxRegion rect);
  142.    virtual BOOL  _ShouldEnterForceRedraw(); 
  143.    virtual void  _ExitForceRedraw(); 
  144.    virtual void  _SendOSUpdateMessage(); 
  145.    virtual void  _ShowSite(BOOL bShow); 
  146.    virtual BOOL  _AtSystemTime(); 
  147.    virtual void  _GetDeviceCaps( void* hdc,
  148.                                  UINT16& uBitesPerPixel,
  149.                                  UINT16& uHorzRes,
  150.                                  UINT16& uVertRes ); 
  151.    virtual void  _GetWindowRect(HXxRect* destRect);
  152.    virtual void  _DestroySliders();
  153.    virtual BOOL  _HandleOSEvents(HXxEvent* pEvent);
  154.    virtual BOOL  _ConvertToHXEvent(HXxEvent* pEvent);
  155.    virtual void  _GenerateOSEvent(HXxEvent* pEvent, HXxEvent* pEvent2);
  156.    virtual void  _GenerateSetCursorEvent();
  157.    virtual void  _TryCreateXSlider();
  158.    virtual void  _SetXSliderValues(INT32 range, INT32 pageSize);
  159.    virtual void  _TryCreateYSlider();
  160.    virtual void  _SetYSliderValues(INT32 range, INT32 pageSize);
  161.    virtual void  _GetSystemSizeOfSliders(INT32* pWidth, INT32* pHeight);
  162.    virtual BOOL  _IsWindowVisible();
  163.    virtual void  _ShowXSlider(BOOL bShow);
  164.    virtual void  _MoveXSlider( INT32 left,
  165.                                INT32 top,
  166.                                INT32 right,
  167.                                INT32 bottom,
  168.                                BOOL bRedraw );
  169.    virtual void  _ShowYSlider(BOOL bShow);
  170.    virtual void  _MoveYSlider( INT32 left,
  171.                                INT32 top,
  172.                                INT32 right,
  173.                                INT32 bottom,
  174.                                BOOL bRedraw);
  175.    virtual BOOL  _DoesXSliderExist();
  176.    virtual void* _GetContainingWindow();
  177.    virtual void  _GetCursorPos(HXxPoint* pPoint);
  178.    virtual void  _MapPointToOSWindow(HXxPoint* pPt, void** pWindowHandle);
  179.    virtual void* _GetWindowWithCursor();
  180.    virtual void  _ReInitPrimarySurface();
  181.    virtual BOOL  _MoveWindow( void* ,
  182.                               INT32 X,
  183.                               INT32 Y,
  184.                               INT32 nWidth,
  185.                               INT32 nHeight,
  186.                               BOOL bRepaint);
  187.    virtual BOOL  _UpdateWindow(void* hWnd);
  188.    virtual BOOL  _ShowWindow(void* hWnd, INT32 nCmdShow);
  189.    virtual BOOL  _SetWindowPos(void* hWnd,
  190.                                void* hWndInsertAfter,
  191.                                INT32 X,
  192.                                INT32 Y,
  193.                                INT32 cx,
  194.                                INT32 cy,
  195.                                INT32 uFlags);
  196.    virtual BOOL  _SetWindowRgn(void* hWnd, HXREGION* hRgn, BOOL bRedraw);
  197.    virtual void _SetFocus(void* pWindow);
  198.     
  199.    virtual HX_RESULT _EnterFullScreen();
  200.    virtual HX_RESULT _EventOccurred(HXxEvent* pEvent);
  201.    virtual HX_RESULT _ExitFullScreen();
  202.    virtual HX_RESULT _TestFullScreen( void* hTestBitmap,
  203.                                       const char* pszStatusText );
  204. private:
  205.    //Protect unintentional copy and default ctors.
  206.    CHXUnixSite();
  207.    CHXUnixSite( const CHXUnixSite& );
  208.    CHXUnixSite& operator=( const CHXUnixSite& it );
  209.     
  210.    //member vars.
  211.    UnixEventHandler* m_pUnixEventHandler;
  212.    static Cursor zm_GrabCursor;
  213.    Window        m_ScrollHorizButtonL;
  214.    Window        m_ScrollHorizButtonR;
  215.    Window        m_ScrollVertButtonT;
  216.    Window        m_ScrollVertButtonB;
  217.    Window        m_winFullScreenWindow;
  218.    Window        m_winOldParent;
  219.    HXxPoint      m_ptScrollHorizPosL;
  220.    HXxPoint      m_ptScrollHorizPosR;
  221.    HXxPoint      m_ptScrollVertPosT;
  222.    HXxPoint      m_ptScrollVertPosB;
  223.    HXxPoint      m_ptFullScreenOffset;
  224.    HXxSize       m_PreFullScreenSize;
  225.    BOOL          m_bScrollingInProgress;
  226.    int           m_nScrollDir;
  227.    BOOL          m_bLastPointInSite;
  228.    BOOL          m_bDamaged;
  229.    //
  230.    //Private helpers...
  231.    //
  232.    //returns the HX_VK associated with this keysym....
  233.    UINT32 _MapKeySymToHXVK(KeySym tmpSym, UINT32& uFlags);
  234. };
  235. /////////////////////////////////////////////////////////
  236. //
  237. // CHXSiteEventHandler
  238. //
  239. /////////////////////////////////////////////////////////
  240. class CHXSiteEventHandler : public IHXSiteEventHandler
  241. {
  242. public:
  243.    CHXSiteEventHandler(IUnknown* pContext);
  244.    virtual HX_RESULT QueryInterface(REFIID riid, void** ppvObj);
  245.    virtual ULONG32 AddRef();
  246.    virtual ULONG32 Release();
  247.    virtual HX_RESULT EventOccurred(HXxEvent* pEvent);
  248. private:
  249.    ~CHXSiteEventHandler();
  250.    PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
  251.    IUnknown* m_pContext; 
  252.    ULONG32   m_lRefCount;
  253. };
  254. #endif //_UNIXSITE_H