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

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. /************************************************************************
  36. Copyright (c) 1987  X Consortium
  37. Permission is hereby granted, free of charge, to any person obtaining a copy
  38. of this software and associated documentation files (the "Software"), to deal
  39. in the Software without restriction, including without limitation the rights
  40. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  41. copies of the Software, and to permit persons to whom the Software is
  42. furnished to do so, subject to the following conditions:
  43. The above copyright notice and this permission notice shall be included in
  44. all copies or substantial portions of the Software.
  45. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  46. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  47. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  48. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  49. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  50. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  51. Except as contained in this notice, the name of the X Consortium shall not be
  52. used in advertising or otherwise to promote the sale, use or other dealings
  53. in this Software without prior written authorization from the X Consortium.
  54. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  55.                         All Rights Reserved
  56. Permission to use, copy, modify, and distribute this software and its 
  57. documentation for any purpose and without fee is hereby granted, 
  58. provided that the above copyright notice appear in all copies and that
  59. both that copyright notice and this permission notice appear in 
  60. supporting documentation, and that the name of Digital not be
  61. used in advertising or publicity pertaining to distribution of the
  62. software without specific, written prior permission.  
  63. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  64. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  65. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  66. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  67. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  68. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  69. SOFTWARE.
  70. ************************************************************************/
  71. #ifndef _HXREGION_H
  72. #define _HXREGION_H
  73.  
  74. #include "hxwintyp.h"
  75. /*
  76.  * XXXgfw
  77.  * 
  78.  * Moved the below definitions to hxwintyp.h so we can pass this
  79.  * stuff back and forth from renderers.
  80.  *
  81.  */
  82. /* #ifndef _REGION_DEFINED */
  83. /* #define _REGION_DEFINED */
  84. /* typedef struct { */
  85. /*     short x1, x2, y1, y2; */
  86. /* } HXBOX, *HXBoxPtr; */
  87. /* typedef struct _HXxRegion */
  88. /* { */
  89. /*     HXBOX* rects; */
  90. /*     long    numRects; */
  91. /* } HXxBoxRegion, *HXxRegionPtr; */
  92. /* #endif */
  93. typedef struct _stHXRegion
  94. {
  95.     long    size;
  96.     long    numRects;
  97.     HXBOX* rects;
  98.     HXBOX  extents;
  99. } HXREGION, *HXREGIONPtr;
  100. typedef HXREGION* _HXRegion;
  101. typedef struct {
  102.     short x, y, width, height;
  103. }HXRECTANGLE, *HXRECTANGLEPtr;
  104. typedef enum _HXRegionArithmetic
  105. {
  106.    HX_RGN_DIFF = 0,
  107.    HX_RGN_AND,
  108.    HX_RGN_OR,
  109.    HX_RGN_XOR
  110. } HXRegionArithmetic;
  111. #define TRUE 1
  112. #define FALSE 0
  113. #ifndef MAXSHORT 
  114. #define MAXSHORT 32767
  115. #endif
  116. #ifndef MINSHORT
  117. #define MINSHORT -MAXSHORT
  118. #endif
  119. #ifndef MAX
  120. #define MAX(a,b) (((a) > (b)) ? (a) : (b))
  121. #endif
  122. #ifndef MIN
  123. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  124. #endif
  125. /*  1 if two HXBOXs overlap.
  126.  *  0 if two HXBOXs do not overlap.
  127.  *  Remember, x2 and y2 are not in the region 
  128.  */
  129. #define EXTENTCHECK(r1, r2) 
  130. ((r1)->x2 > (r2)->x1 && 
  131.  (r1)->x1 < (r2)->x2 && 
  132.  (r1)->y2 > (r2)->y1 && 
  133.  (r1)->y1 < (r2)->y2)
  134. /*
  135.  *  update region extents
  136.  */
  137. #define EXTENTS(r,idRect){
  138.             if((r)->x1 < (idRect)->extents.x1)
  139.               (idRect)->extents.x1 = (r)->x1;
  140.             if((r)->y1 < (idRect)->extents.y1)
  141.               (idRect)->extents.y1 = (r)->y1;
  142.             if((r)->x2 > (idRect)->extents.x2)
  143.               (idRect)->extents.x2 = (r)->x2;
  144.             if((r)->y2 > (idRect)->extents.y2)
  145.               (idRect)->extents.y2 = (r)->y2;
  146.         }
  147. /*
  148.  *   Check to see if there is enough memory in the present region.
  149.  */
  150. #define MEMCHECK(reg, rect, firstrect){
  151.         if ((reg)->numRects >= ((reg)->size - 1)){
  152.           (firstrect) = (HXBOX *) realloc 
  153.           ((char *)(firstrect), (unsigned) (2 * (sizeof(HXBOX)) * ((reg)->size)));
  154.           if ((firstrect) == 0)
  155.             return(0);
  156.           (reg)->size *= 2;
  157.           (rect) = &(firstrect)[(reg)->numRects];
  158.          }
  159.        }
  160. /*  this routine checks to see if the previous rectangle is the same
  161.  *  or subsumes the new rectangle to add.
  162.  */
  163. #define CHECK_PREVIOUS(Reg, R, Rx1, Ry1, Rx2, Ry2)
  164.                (!(((Reg)->numRects > 0)&&
  165.                   ((R-1)->y1 == (Ry1)) &&
  166.                   ((R-1)->y2 == (Ry2)) &&
  167.                   ((R-1)->x1 <= (Rx1)) &&
  168.                   ((R-1)->x2 >= (Rx2))))
  169. /*  add a rectangle to the given _HXRegion */
  170. #define ADDRECT(reg, r, rx1, ry1, rx2, ry2){
  171.     if (((rx1) < (rx2)) && ((ry1) < (ry2)) &&
  172.         CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){
  173.               (r)->x1 = (rx1);
  174.               (r)->y1 = (ry1);
  175.               (r)->x2 = (rx2);
  176.               (r)->y2 = (ry2);
  177.               EXTENTS((r), (reg));
  178.               (reg)->numRects++;
  179.               (r)++;
  180.             }
  181.         }
  182. /*  add a rectangle to the given _HXRegion */
  183. #define ADDRECTNOX(reg, r, rx1, ry1, rx2, ry2){
  184.             if ((rx1 < rx2) && (ry1 < ry2) &&
  185.                 CHECK_PREVIOUS((reg), (r), (rx1), (ry1), (rx2), (ry2))){
  186.               (r)->x1 = (rx1);
  187.               (r)->y1 = (ry1);
  188.               (r)->x2 = (rx2);
  189.               (r)->y2 = (ry2);
  190.               (reg)->numRects++;
  191.               (r)++;
  192.             }
  193.         }
  194. #define EMPTY_REGION(pReg) pReg->numRects = 0
  195. #define REGION_NOT_EMPTY(pReg) pReg->numRects
  196. #define INHXBOX(r, x, y) 
  197.       ( ( ((r).x2 >  x)) && 
  198.         ( ((r).x1 <= x)) && 
  199.         ( ((r).y2 >  y)) && 
  200.         ( ((r).y1 <= y)) )
  201. /*
  202.  * number of points to buffer before sending them off
  203.  * to scanlines() :  Must be an even number
  204.  */
  205. #define NUMPTSTOBUFFER 200
  206. /*
  207.  * used to allocate buffers for points and link
  208.  * the buffers together
  209.  */
  210. typedef struct _POINTBLOCK {
  211.     HXxPoint pts[NUMPTSTOBUFFER];
  212.     struct _POINTBLOCK *next;
  213. } POINTBLOCK;
  214. #define HXRectangleOut   -1
  215. #define HXRectanglePart   1
  216. #define HXRectangleIn 0
  217. /* PROTOTYPES */
  218. /* Internal Functions */
  219. static void miSetExtents (_HXRegion pReg);
  220. static void Compress(_HXRegion r, _HXRegion s, _HXRegion t, unsigned dx, int xdir, int grow);
  221. static HXBOX *IndexRects(HXBOX *rects, int numRects, int y);
  222. static int miIntersectO (_HXRegion pReg, HXBoxPtr r1, HXBoxPtr r1End, HXBoxPtr r2, HXBoxPtr r2End, short y1, short y2);
  223. static void miRegionCopy(_HXRegion dstrgn, _HXRegion rgn);
  224. static void CombineRegs(_HXRegion newReg, _HXRegion reg1, _HXRegion reg2);
  225. static int QuickCheck(_HXRegion newReg, _HXRegion reg1, _HXRegion reg2);
  226. static int TopRects(_HXRegion newReg, HXBOX *rects, _HXRegion reg1, _HXRegion reg2, HXBOX *FirstRect);
  227. /* Interfaces */
  228. #ifdef __cplusplus
  229. extern  "C"
  230. {
  231. #endif
  232.     _HXRegion HXCreateRegion();
  233.     _HXRegion HXCreateRectRegion(int, int, int, int);
  234.     int HXClipBox( _HXRegion r, HXRECTANGLE* rect);
  235.     int HXUnionRectWithRegion(HXRECTANGLE* rect, _HXRegion source, _HXRegion dest);
  236.     int HXDestroyRegion(_HXRegion r);
  237.     int HXOffsetRegion(_HXRegion pRegion, int x, int y);
  238.     int HXShrinkRegion(_HXRegion r, int dx, int dy);
  239.     int HXUnionRegion(_HXRegion reg1, _HXRegion reg2, _HXRegion newReg);
  240.     int HXXorRegion( _HXRegion sra, _HXRegion srb, _HXRegion dr );
  241.     int HXIntersectRegion(_HXRegion reg1, _HXRegion reg2, _HXRegion  newReg);
  242.     int HXRectInRegion(_HXRegion region, int rx, int ry, unsigned int rwidth, unsigned int rheight);
  243.     int HXPointInRegion( _HXRegion pRegion, int x, int y );
  244.     int HXEqualRegion( _HXRegion r1, _HXRegion r2);
  245.     int HXSubtractRegion(_HXRegion regM, _HXRegion regS, _HXRegion regD);
  246.     int HXEmptyRegion( _HXRegion r);
  247.     int HXCombineRgn( _HXRegion destRgn,
  248.                        _HXRegion srcRgn1,
  249.                        _HXRegion srcRgn2,
  250.                        HXRegionArithmetic rgnOperation
  251.                        );
  252.     int HXZeroOutRegion(_HXRegion r);
  253. #ifdef _DEBUG
  254.    void _DumpRegion(_HXRegion pRegion );
  255.    void _DumpString(const char *);
  256. #endif
  257.          
  258. #ifdef __cplusplus
  259. }
  260. #endif
  261. #endif