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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxwintyp.h,v 1.2.32.3 2004/07/09 01:45:13 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. #ifndef _HXWINTYP_H_
  50. #define _HXWINTYP_H_
  51. #include "hxtypes.h" /* Needed at least for various defines and types. */
  52. #ifdef _WIN16
  53. #define BI_BITFIELDS 3L
  54. #endif
  55. #ifdef _SYMBIAN
  56. #include <coemain.h>
  57. #include <w32std.h>
  58. #endif
  59. /****************************************************************************
  60.  * 
  61.  *  Structure:
  62.  *
  63.  * HXxSize
  64.  *
  65.  *  Purpose:
  66.  *
  67.  * Cross Platform definition of a size.
  68.  *
  69.  */
  70. typedef struct HXEXPORT_CLASS _HXxSize
  71. {
  72.     INT32   cx;
  73.     INT32   cy;
  74. } HXxSize;
  75. #ifdef __cplusplus
  76. inline BOOL operator ==( const HXxSize& a, const HXxSize& b )
  77. {
  78.     return ( a.cx == b.cx ) && ( a.cy == b.cy );
  79. }
  80. inline BOOL operator !=( const HXxSize& a, const HXxSize& b )
  81. {
  82.     return !( a == b );
  83. }
  84. #endif // __cplusplus
  85. /****************************************************************************
  86.  * 
  87.  *  Structure:
  88.  *
  89.  * HXxPoint
  90.  *
  91.  *  Purpose:
  92.  *
  93.  * Cross Platform definition of a point.
  94.  *
  95.  */
  96. typedef struct HXEXPORT_CLASS _HXxPoint
  97. {
  98.     INT32   x;
  99.     INT32   y;
  100. } HXxPoint;
  101. #ifdef __cplusplus
  102. inline BOOL operator ==( const HXxPoint& a, const HXxPoint& b )
  103. {
  104.     return ( a.x == b.x ) && ( a.y == b.y );
  105. }
  106. inline BOOL operator !=( const HXxPoint& a, const HXxPoint& b )
  107. {
  108.     return !( a == b );
  109. }
  110. #endif // __cplusplus
  111. /****************************************************************************
  112.  * 
  113.  *  Structure:
  114.  *
  115.  * HXxRect
  116.  *
  117.  *  Purpose:
  118.  *
  119.  * Cross Platform definition of a rectangle.
  120.  *
  121.  */
  122. typedef struct HXEXPORT_CLASS _HXxRect
  123. {
  124.     INT32   left;
  125.     INT32   top;
  126.     INT32   right;
  127.     INT32   bottom;
  128. } HXxRect;
  129. #define HXxRECT_WIDTH(r) ((r).right - (r).left)
  130. #define HXxRECT_HEIGHT(r) ((r).bottom - (r).top)
  131. #ifdef __cplusplus
  132. inline BOOL operator ==( const HXxRect& a, const HXxRect& b )
  133. {
  134.     return ( a.left == b.left ) && 
  135.     ( a.top == b.top ) && 
  136.     ( a.right == b.right ) && 
  137.     ( a.bottom == b.bottom );
  138. }
  139. inline BOOL operator !=( const HXxRect& a, const HXxRect& b )
  140. {
  141.     return !( a == b );
  142. }
  143. inline BOOL HXxRect_IsEmpty( const HXxRect& rect )
  144. {
  145.     return ( rect.left >= rect.right  ) ||
  146.    ( rect.top  >= rect.bottom );
  147. }
  148. inline void HXxRect_Intersection( const HXxRect& r1, const HXxRect& r2, HXxRect* result )
  149. {
  150.     result->left   = ( r1.left   > r2.left   ) ? r1.left   : r2.left;
  151.     result->top    = ( r1.top    > r2.top    ) ? r1.top    : r2.top;
  152.     result->right  = ( r1.right  < r2.right  ) ? r1.right  : r2.right;
  153.     result->bottom = ( r1.bottom < r2.bottom ) ? r1.bottom : r2.bottom;
  154. }
  155. #endif // __cplusplus
  156. /****************************************************************************
  157.  * 
  158.  *  Structure:
  159.  *
  160.  * HXxWindow
  161.  *
  162.  *  Purpose:
  163.  *
  164.  * Cross Platform definition of a window. This struct is sufficiently
  165.  * wide to describe parent or child windows in Windows, MacOS, and
  166.  * various flavours of X-Windows.
  167.  *
  168.  *  Data Members:
  169.  *
  170.  * void* window
  171.  * platform specific window handle
  172.  *
  173.  * ULONG32 x, y
  174.  * position of top left corner relative to a client page
  175.  *
  176.  * ULONG32 width, height
  177.  * maximum window size
  178.  *
  179.  * HXxRect clipRect;            
  180.  * clipping rectangle in port coordinates
  181.  *
  182.  */
  183. typedef struct HXEXPORT_CLASS _HXxWindow
  184. {
  185.     /* NOTE: The window parameter is NOT guaranteed to be unique for every
  186.        corresponding CHXWindow. Use HXxWindowID if this is desired. */
  187.     void*       window;
  188.     ULONG32     x;
  189.     ULONG32     y;                   
  190.     ULONG32     width;
  191.     ULONG32     height;
  192.     HXxRect     clipRect;
  193. #ifdef _UNIX
  194.     void *      display;
  195. #endif
  196. #ifdef _SYMBIAN
  197.     CDirectScreenAccess* iDSA;
  198. #endif    
  199. } HXxWindow;
  200. typedef void* HXxWindowID;
  201. /****************************************************************************
  202.  * 
  203.  *  Structure:
  204.  *
  205.  * HXxEvent
  206.  *
  207.  *  Purpose:
  208.  *
  209.  * Cross Platform definition of a event. This struct is sufficiently
  210.  * wide to describe an event in Windows, MacOS, and various flavours of 
  211.  * X-Windows.
  212.  *
  213.  *  Data Members:
  214.  *
  215.  * void* event
  216.  * platform specific event ID, can also be one of the several HXxMSG_*
  217.  * event IDs which map onto existing platform specific event IDs
  218.  *      UNIX: X Event Type
  219.  *
  220.  * void* window
  221.  * platform specific window handle
  222.  *      UNIX: X Window ID
  223.  *
  224.  * void* param1
  225.  * message specific parameter
  226.  *      UNIX: Display*
  227.  *
  228.  * void* param2
  229.  *      Mac:  for UpdateEvt, either NULL or RgnHandle to be filled with updated area
  230.  *      UNIX: Native              XEvent*
  231.  *            HX_SURFACE_UPDATE  HXxWindow*
  232.  *
  233.  */
  234. typedef struct HXEXPORT_CLASS _HXxEvent
  235. {
  236.     ULONG32 event;     /* IN  */
  237.     void* window;     /* IN  */
  238.     void* param1;     /* IN  */
  239.     void* param2;     /* IN  */
  240.     UINT32 result;     /* OUT */
  241.     BOOL handled;    /* OUT */
  242. } HXxEvent;
  243. /****************************************************************************
  244.  * 
  245.  *  typedef:
  246.  *
  247.  * HXxRegion
  248.  *
  249.  *  Purpose:
  250.  *
  251.  * Cross Platform definition of a region. This typedef is redefined as
  252.  * appropriate to describe a region in Windows, MacOS, and various 
  253.  * flavours of X-Windows.
  254.  *
  255.  */
  256. typedef void* HXxRegion;
  257. /****************************************************************************
  258.  * 
  259.  *  typedef:
  260.  *
  261.  * HXxDC
  262.  *
  263.  *  Purpose:
  264.  *
  265.  * Cross Platform definition of a device context. This typedef is redefined as
  266.  * appropriate to describe a device context in Windows, MacOS, and various 
  267.  * flavours of X-Windows.
  268.  *
  269.  */
  270. typedef void* HXxDC;
  271. /****************************************************************************
  272.  * 
  273.  *  typedef:
  274.  *
  275.  * HXxFont
  276.  *
  277.  *  Purpose:
  278.  *
  279.  * Cross Platform definition of a font. This typedef is redefined as
  280.  * appropriate to describe a font in Windows, MacOS, and various 
  281.  * flavours of X-Windows.
  282.  *
  283.  */
  284. typedef void* HXxFont;
  285. /****************************************************************************
  286.  * 
  287.  *  typedef:
  288.  *
  289.  * HXxColor
  290.  *
  291.  *  Purpose:
  292.  *
  293.  * Cross Platform definition of a color. This typedef is redefined as
  294.  * appropriate to describe a font in Windows, MacOS, and various 
  295.  * flavours of X-Windows.
  296.  *
  297.  */
  298. typedef ULONG32 HXxColor;
  299. /****************************************************************************
  300.  * 
  301.  *  typedef:
  302.  *
  303.  * HXxIcon
  304.  *
  305.  *  Purpose:
  306.  *
  307.  * Cross Platform definition of a icon. This typedef is redefined as
  308.  * appropriate to describe a font in Windows, MacOS, and various 
  309.  * flavours of X-Windows.
  310.  *
  311.  */
  312. typedef void* HXxIcon;
  313. /****************************************************************************
  314.  * 
  315.  *  typedef:
  316.  *
  317.  * HXxMenu
  318.  *
  319.  *  Purpose:
  320.  *
  321.  * Cross Platform definition of a menu. This typedef is redefined as
  322.  * appropriate to describe a font in Windows, MacOS, and various 
  323.  * flavours of X-Windows.
  324.  *
  325.  */
  326. typedef void* HXxMenu;
  327. /****************************************************************************
  328.  * 
  329.  *  typedef:
  330.  *
  331.  * HXxCursor
  332.  *
  333.  *  Purpose:
  334.  *
  335.  * Cross Platform definition of a cursor. This typedef is redefined as
  336.  * appropriate to describe a cursor in Windows, MacOS, and various 
  337.  * flavours of X-Windows.
  338.  *
  339.  */
  340. typedef void* HXxCursor;
  341. /****************************************************************************
  342.  * 
  343.  *  Structure:
  344.  *
  345.  * HXREGION
  346.  *
  347.  *  Purpose:
  348.  *
  349.  * Cross Platform Region definition.
  350.  */
  351. typedef struct HXEXPORT_CLASS _HXBox
  352. {
  353.     short x1, x2, y1, y2;
  354. } HXBOX, *HXBoxPtr;
  355. typedef struct HXEXPORT_CLASS _HXxRegion
  356. {
  357.     HXBOX* rects;
  358.     long    numRects;
  359. } HXxBoxRegion, *HXxRegionPtr;
  360. //Definition of the ExposeInfo structure pass with HX_SURFACE_UPDATE2.
  361. typedef struct HXEXPORT_CLASS _HXxExposeInfo
  362. {
  363.     HXxRect     extents;  //The bounding rect of all dirty rects.
  364.     HXxBoxRegion* pRegion;  //Pointer to dirty region. DO NOT MODIFY.
  365.     HXxWindow*  pWindow;  //Pointer to the HXxWindow for this site.
  366.     void*       pParam1;  //Reserved
  367.     void*       pParam2;  //Reserved
  368. } HXxExposeInfo;
  369. #endif /* _HXWINTYP_H_ */