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

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 _TRANSITIONS_H_
  36. #define _TRANSITIONS_H_
  37. #include "region.h"
  38. struct LineSegment
  39. {
  40. HXxPoint start;
  41. HXxPoint finish;
  42.     LineSegment(){}
  43.     LineSegment(const LineSegment& ls);
  44.     void operator=(const LineSegment& right);
  45.     BOOL Clip(int left, int top, int right, int bottom);
  46. };
  47. struct tranLines
  48. {
  49. INT32 m_nLines;
  50. LineSegment* m_pLines;
  51.     tranLines();
  52.     tranLines(const tranLines& tl);
  53.     virtual ~tranLines();
  54.     void Copy(const tranLines& tl);
  55.     void operator+=(const tranLines& right);
  56.     void operator+=(const LineSegment& right);
  57.     void operator=(const tranLines& right);
  58.     void Destroy();
  59.     void Offset(int x, int y);
  60.     void Clip(int left, int top, int right, int bottom);
  61. };
  62. tranLines* operator+(const tranLines& left, const tranLines& right);
  63. typedef HXREGION* (*TransitionType)(int left, int top, int right, int bottom, int completeness, tranLines* lines /* = NULL */); 
  64. #define MATRIX_TRANSITION_INIT -1
  65. #define MATRIX_TRANSITION_DELETE -2
  66. struct tranStruct
  67. {
  68.     TransitionType  m_fpTranFunction;
  69. int m_SMPTE;
  70.     char*     m_pTranName;
  71. };
  72. struct tranType
  73. {
  74.     tranStruct* m_pSubTypes;
  75.     char* m_pName;
  76.     int m_nNum;
  77. };
  78. HXREGION* InvertRGN(HXREGION* in, int x, int y, int x1, int y1);
  79. HXREGION* MirrorHorizontal(HXREGION* in, int y);
  80. HXREGION* MirrorVertical(HXREGION* in, int x);
  81. HXREGION* DefaultTransition(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  82. HXREGION* EdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  83. HXREGION* IrisWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  84. HXREGION* SlideVerticalEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  85. HXREGION* TopLeftEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  86. HXREGION* TopRightEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  87. HXREGION* BottomRightEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  88. HXREGION* BottomLeftEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  89. HXREGION* FourCornerEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  90. HXREGION* FourBoxEdgeWipe (int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  91. HXREGION* BarnVerticalEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  92. HXREGION* BarnHorizontalEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  93. HXREGION* TopCenterEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  94. HXREGION* CenterRightEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  95. HXREGION* BottomCenterEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  96. HXREGION* LeftCenterEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  97. HXREGION* DiagonalLeftDownEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  98. HXREGION* DiagonalRightDownEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  99. HXREGION* VerticalBowTieEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  100. HXREGION* HorizontalBowTieEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  101. HXREGION* DiagonaLeftOutEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  102. HXREGION* DiagonaRightOutEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  103. HXREGION* DiagonaCrossEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  104. HXREGION* DiagonalBoxEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  105. HXREGION* FilledVEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  106. HXREGION* FilledVRightEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  107. HXREGION* FilledVBottomEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  108. HXREGION* FilledVLeftEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  109. HXREGION* HollowVEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  110. HXREGION* HollowVRightEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  111. HXREGION* HollowVBottomEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  112. HXREGION* HollowVLeftEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  113. HXREGION* VerticalZigZagEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  114. HXREGION* HorizontalZigZagEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  115. HXREGION* HorizontalBarnZigZagEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  116. HXREGION* VerticalBarnZigZagEdgeWipe(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  117. HXREGION* RotatingTopRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  118. HXREGION* RotatingRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  119. HXREGION* RotatingBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  120. HXREGION* RotatingLeftRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  121. HXREGION* RotatingTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  122. HXREGION* RotatingLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  123. HXREGION* RotatingQuadrantRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  124. HXREGION* TopBottom180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  125. HXREGION* RightToLeft180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  126. HXREGION* topBottom90Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  127. HXREGION* RightToLeft90Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  128. HXREGION* Top180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  129. HXREGION* Right180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  130. HXREGION* Bottom180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  131. HXREGION* Left180Radial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  132. HXREGION* CounterRotatingTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  133. HXREGION* CounterRotatingLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  134. HXREGION* DoubleRotatingTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  135. HXREGION* DoubleRotatingLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  136. HXREGION* OpenVTopRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  137. HXREGION* OpenVRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  138. HXREGION* OpenVBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  139. HXREGION* OpenVLeftRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  140. HXREGION* OpenVTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  141. HXREGION* OpenVLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  142. HXREGION* RotatingTopLeftRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  143. HXREGION* RotatingBottomLeftRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  144. HXREGION* RotatingBottomRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  145. HXREGION* RotatingTopRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  146. HXREGION* RotatingTopLeftBottomRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  147. HXREGION* RotatingBottomLeftTopRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  148. HXREGION* RotatingTopLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  149. HXREGION* RotatingLeftTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  150. HXREGION* RotatingBottomLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  151. HXREGION* RotatingRightTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  152. HXREGION* RotatingDoubleCenterRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  153. HXREGION* RotatingDoubleCenterTopRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  154. HXREGION* RotatingDoubleCenterTopBottomRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  155. HXREGION* RotatingDoubleCenterLeftRightRadial(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  156. HXREGION* PentagonIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  157. HXREGION* RectangleIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  158. HXREGION* DiamondIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  159. HXREGION* TriangleIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  160. HXREGION* TriangleRightIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  161. HXREGION* TriangleUpsideDownIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  162. HXREGION* TriangleLeftIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  163. HXREGION* PentagonUpsideDownLeftIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  164. HXREGION* HexagonIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  165. HXREGION* HexagonSideIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  166. HXREGION* CircleIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  167. HXREGION* OvalIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  168. HXREGION* OvalSideIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  169. HXREGION* FourPointStarIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  170. HXREGION* FivePointStarIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  171. HXREGION* SixPointStarIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  172. HXREGION* ArrowHeadIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  173. HXREGION* ArrowHeadRightIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  174. HXREGION* ArrowHeadUpsideDownIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  175. HXREGION* ArrowHeadLeftIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  176. HXREGION* HeartIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  177. HXREGION* CatEyeIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  178. HXREGION* CatEyeSideIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  179. HXREGION* RoundRectHorizontal(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  180. HXREGION* RoundRectVeritical(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  181. HXREGION* KeyHoleIris(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  182. HXREGION* HorizontalStartLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  183. HXREGION* HorizontalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  184. HXREGION* VerticalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  185. HXREGION* TopLeftDiagonalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  186. HXREGION* TopRightDiagonalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  187. HXREGION* BottomRightDiagonalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  188. HXREGION* BottomLeftDiagonalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  189. HXREGION* ClockwiseTopLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  190. HXREGION* ClockwiseBottomRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  191. HXREGION* ClockwiseTopRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  192. HXREGION* ClockwiseBottomLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  193. HXREGION* CounterClockwiseTopLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  194. HXREGION* CounterClockwiseTopRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  195. HXREGION* CounterClockwiseBottomRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  196. HXREGION* CounterClockwiseBottomLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  197. HXREGION* VerticalStartTopMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  198. HXREGION* VerticalStartBottomMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  199. HXREGION* VerticalStartTopOppositeMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  200. HXREGION* VerticalStartBottomOppositeMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  201. HXREGION* HorizontalStartRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  202. HXREGION* HorizontalStartLeftOppositeMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  203. HXREGION* HorizontalStartRightOppositeMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  204. HXREGION* HorizontalLeftOppositeRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  205. HXREGION* HorizontalRightOppositeRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  206. HXREGION* DoubleSpiralTopMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  207. HXREGION* DoubleSpiralBottomMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  208. HXREGION* DoubleSpiralLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  209. HXREGION* DoubleSpiralRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  210. HXREGION* QuadSpiralVerticalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  211. HXREGION* QuadSpiralHorizontalMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  212. HXREGION* VerticalWaterfallLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  213. HXREGION* VerticalWaterfallRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  214. HXREGION* HorizontalWaterfallLeftMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  215. HXREGION* HorizontalWaterfallRightMatrix(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  216. HXREGION* DoubleDiagonalTop(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  217. HXREGION* DoubleDiagonalBottom(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  218. HXREGION* SlideFromLeft(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  219. HXREGION* SlideFromTop(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  220. HXREGION* SlideFromRight(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  221. HXREGION* SlideFromBottom(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  222. HXREGION* Crossfade(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  223. HXREGION* FadeToColor(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  224. HXREGION* FadeFromColor(int left, int top, int right, int bottom, int completeness, tranLines* lines = NULL);
  225. #endif