S60UIExampleHighScoreContainer.inc
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:1690k
源码类别:

Symbian

开发平台:

C/C++

  1. {
  2. public:
  3. TOutput() : iBitmapSize(TSize::EUninitialized),
  4. iBounds(TRect::EUninitialized) {}
  5. TUint iCode;
  6. const TUint8* iBitmap;
  7. TSize iBitmapSize;
  8. TRect iBounds;
  9. };
  10. TOutput iOutput[EMaxOutputGlyphs];
  11. TInt iOutputGlyphs;
  12. };
  13. #line 1317
  14. class TMeasureTextInput
  15. {
  16. public:
  17. TMeasureTextInput():
  18. iStartInputChar(0),
  19. iEndInputChar(KMaxTInt),
  20. iDirection(EHorizontal),
  21. iFlags(0),
  22. iMaxAdvance(KMaxTInt),
  23. iMaxBounds(KMaxTInt),
  24. iCharJustNum(0),
  25. iCharJustExcess(0),
  26. iWordJustNum(0),
  27. iWordJustExcess(0)
  28. {
  29. }
  30. enum TFlags
  31. {
  32. EFVisualOrder = 1
  33. };
  34. TInt iStartInputChar;
  35. TInt iEndInputChar;
  36. TUint16 iDirection;
  37. TUint16 iFlags;
  38. TInt iMaxAdvance;
  39. TInt iMaxBounds;
  40. TInt iCharJustNum;
  41. TInt iCharJustExcess;
  42. TInt iWordJustNum;
  43. TInt iWordJustExcess;
  44. };
  45. #line 1389
  46. class TMeasureTextOutput
  47. {
  48. public:
  49. TInt iChars;
  50. TInt iGlyphs;
  51. TInt iGroups;
  52. TInt iSpaces;
  53. TRect iBounds;
  54. TSize iMaxGlyphSize;
  55. };
  56. #line 1422
  57. enum TCharacterDataAvailability
  58. {
  59. ENoCharacterData,
  60. ECharacterWidthOnly,
  61. EAllCharacterData
  62. };
  63. private:
  64. virtual TUid DoTypeUid() const=0;
  65. virtual TInt DoHeightInPixels() const=0;
  66. virtual TInt DoAscentInPixels() const=0;
  67. __declspec(dllexport) virtual TInt DoDescentInPixels() const;
  68. virtual TInt DoCharWidthInPixels(TChar aChar) const=0;
  69. virtual TInt DoTextWidthInPixels(const TDesC& aText) const=0;
  70. virtual TInt DoBaselineOffsetInPixels() const=0;
  71. virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels) const=0;
  72. virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels,TInt& aExcessWidthInPixels) const=0;
  73. virtual TInt DoMaxCharWidthInPixels() const=0;
  74. virtual TInt DoMaxNormalCharWidthInPixels() const=0;
  75. virtual TFontSpec DoFontSpecInTwips() const=0;
  76. protected:
  77. __declspec(dllexport) virtual TCharacterDataAvailability DoGetCharacterData(TUint aCode, TOpenFontCharMetrics& aMetrics,const TUint8*& aBitmap,TSize& aBitmapSize) const;
  78. __declspec(dllexport) virtual TBool DoGetCharacterPosition(TPositionParam& aParam) const;
  79. __declspec(dllexport) virtual TInt DoExtendedFunction(TUid aFunctionId, TAny* aParam = 0 ) const;
  80. protected:
  81. __declspec(dllexport) virtual ~CFont();
  82. public:
  83. inline TInt FontCapitalAscent() const;
  84. inline TInt FontMaxAscent() const;
  85. inline TInt FontStandardDescent() const;
  86. inline TInt FontMaxDescent() const;
  87. inline TInt FontLineGap() const;
  88. inline TInt FontMaxHeight() const;
  89. public:
  90. #line 1475
  91. __declspec(dllexport) TUid TypeUid() const;
  92. __declspec(dllexport) TInt HeightInPixels() const;
  93. __declspec(dllexport) TInt AscentInPixels() const;
  94. __declspec(dllexport) TInt DescentInPixels() const;
  95. __declspec(dllexport) TInt CharWidthInPixels(TChar aChar) const;
  96. __declspec(dllexport) TInt TextWidthInPixels(const TDesC& aText) const;
  97. __declspec(dllexport) TInt BaselineOffsetInPixels() const;
  98. #line 1528
  99. __declspec(dllexport) TInt TextCount(const TDesC& aText,TInt aWidthInPixels) const;
  100. #line 1544
  101. __declspec(dllexport) TInt TextCount(const TDesC& aText,TInt aWidthInPixels,TInt& aExcessWidthInPixels) const;
  102. __declspec(dllexport) TInt MaxCharWidthInPixels() const;
  103. __declspec(dllexport) TInt MaxNormalCharWidthInPixels() const;
  104. __declspec(dllexport) TFontSpec FontSpecInTwips() const;
  105. __declspec(dllexport) TCharacterDataAvailability GetCharacterData(TUint aCode, TOpenFontCharMetrics& aMetrics,const TUint8*& aBitmap,TSize& aBitmapSize) const;
  106. __declspec(dllexport) TBool GetCharacterPosition(TPositionParam& aParam) const;
  107. __declspec(dllexport) TInt WidthZeroInPixels() const;
  108. __declspec(dllexport) TInt MeasureText(const TDesC& aText, const TMeasureTextInput* aInput = 0 , TMeasureTextOutput* aOutput = 0 ) const;
  109. __declspec(dllexport) static TBool CharactersJoin(TInt aLeftCharacter, TInt aRightCharacter);
  110. __declspec(dllexport) TInt ExtendedFunction(TUid aFunctionId, TAny* aParam = 0 ) const;
  111. };
  112. class CFbsBitmap;
  113. class CWsBitmap;
  114. #line 1602
  115. class CGraphicsContext : public CBase
  116. {
  117. public:
  118. enum TTextAlign
  119. {
  120. ELeft,
  121. ECenter,
  122. ERight
  123. };
  124. #line 1628
  125. enum TDrawModeComponents
  126. {
  127. EInvertScreen=1,
  128. EXor=2,
  129. EOr=4,
  130. EAnd=8,
  131. ELogicalOp=14,
  132. EInvertPen=16,
  133. EPenmode=32,
  134. EWriteAlpha=64,
  135. };
  136. #line 1682
  137. enum TDrawMode
  138. {
  139. EDrawModeAND=EAnd,
  140. EDrawModeNOTAND=EInvertScreen|EAnd,
  141. EDrawModePEN=EPenmode,
  142. EDrawModeANDNOT=EAnd|EInvertPen,
  143. EDrawModeXOR=EXor,
  144. EDrawModeOR=EOr,
  145. EDrawModeNOTANDNOT=EInvertScreen|EAnd|EInvertPen,
  146. EDrawModeNOTXOR=EInvertScreen|EXor,
  147. EDrawModeNOTSCREEN=EInvertScreen,
  148. EDrawModeNOTOR=EInvertScreen|EOr,
  149. EDrawModeNOTPEN=EInvertPen|EPenmode,
  150. EDrawModeORNOT=EOr|EInvertPen,
  151. EDrawModeNOTORNOT=EInvertScreen|EOr|EInvertPen,
  152. EDrawModeWriteAlpha=EWriteAlpha,
  153. };
  154. #line 1730
  155. enum TPenStyle
  156. {
  157. ENullPen,
  158. ESolidPen,
  159. EDottedPen,
  160. EDashedPen,
  161. EDotDashPen,
  162. EDotDotDashPen
  163. };
  164. enum TBrushStyle
  165. {
  166. ENullBrush,
  167. ESolidBrush,
  168. EPatternedBrush,
  169. EVerticalHatchBrush,
  170. EForwardDiagonalHatchBrush,
  171. EHorizontalHatchBrush,
  172. ERearwardDiagonalHatchBrush,
  173. ESquareCrossHatchBrush,
  174. EDiamondCrossHatchBrush
  175. };
  176. #line 1799
  177. enum TFillRule
  178. {
  179. EAlternate,
  180. EWinding
  181. };
  182. struct TDrawTextParam
  183. {
  184. public:
  185. TDrawTextParam():
  186. iDirection(CFont::EHorizontal),
  187. iCharJustNum(0),
  188. iCharJustExcess(0),
  189. iWordJustNum(0),
  190. iWordJustExcess(0)
  191. {}
  192. public:
  193. CFont::TTextDirection iDirection;
  194. TInt iCharJustNum;
  195. TInt iCharJustExcess;
  196. TInt iWordJustNum;
  197. TInt iWordJustExcess;
  198. };
  199. struct TDrawTextExtendedParam : public TDrawTextParam
  200. {
  201. public:
  202. TDrawTextExtendedParam():
  203. iParRightToLeft(EFalse)
  204. {}
  205. public:
  206. TBool iParRightToLeft;
  207. };
  208. public:
  209. virtual CGraphicsDevice* Device() const=0;
  210. virtual void SetOrigin(const TPoint& aPos=TPoint(0,0))=0;
  211. #line 1912
  212. virtual void SetDrawMode(TDrawMode aDrawingMode)=0;
  213. virtual void SetClippingRect(const TRect& aRect)=0;
  214. virtual void CancelClippingRect()=0;
  215. #line 1941
  216. virtual void Reset()=0;
  217. #line 1964
  218. virtual void UseFont(const CFont* aFont)=0;
  219. virtual void DiscardFont()=0;
  220. virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle)=0;
  221. virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle)=0;
  222. __declspec(dllexport) static TInt JustificationInPixels(TInt aExcessPixels,TInt aTotalUnits,TInt aFirstUnit,TInt aNumUnits);
  223. __declspec(dllexport) static TInt JustificationInPixels(TInt& aExcessPixels,TInt& aTotalUnits);
  224. #line 2034
  225. virtual void SetWordJustification(TInt aExcessWidth,TInt aNumGaps)=0;
  226. #line 2110
  227. virtual void SetCharJustification(TInt aExcessWidth,TInt aNumChars)=0;
  228. #line 2125
  229. virtual void SetPenColor(const TRgb& aColor)=0;
  230. #line 2165
  231. virtual void SetPenStyle(TPenStyle aPenStyle)=0;
  232. #line 2204
  233. virtual void SetPenSize(const TSize& aSize)=0;
  234. #line 2221
  235. virtual void SetBrushColor(const TRgb& aColor)=0;
  236. #line 2242
  237. virtual void SetBrushStyle(TBrushStyle aBrushStyle)=0;
  238. #line 2270
  239. virtual void SetBrushOrigin(const TPoint& aOrigin)=0;
  240. #line 2295
  241. virtual void UseBrushPattern(const CFbsBitmap* aBitmap)=0;
  242. #line 2309
  243. virtual void DiscardBrushPattern()=0;
  244. #line 2327
  245. virtual void MoveTo(const TPoint& aPoint)=0;
  246. #line 2344
  247. virtual void MoveBy(const TPoint& aVector)=0;
  248. #line 2358
  249. virtual void Plot(const TPoint& aPoint)=0;
  250. #line 2397
  251. virtual void DrawArc(const TRect& aRect,const TPoint& aStart,const TPoint& aEnd)=0;
  252. virtual void DrawLine(const TPoint& aPoint1,const TPoint& aPoint2)=0;
  253. virtual void DrawLineTo(const TPoint& aPoint)=0;
  254. #line 2424
  255. virtual void DrawLineBy(const TPoint& aVector)=0;
  256. virtual void DrawPolyLine(const CArrayFix<TPoint> * aPointList)=0;
  257. #line 2441
  258. virtual void DrawPolyLine(const TPoint* aPointList,TInt aNumPoints)=0;
  259. #line 2488
  260. virtual void DrawPie(const TRect& aRect,const TPoint& aStart,const TPoint& aEnd)=0;
  261. #line 2504
  262. virtual void DrawEllipse(const TRect& aRect)=0;
  263. virtual void DrawRect(const TRect& aRect)=0;
  264. #line 2529
  265. virtual void DrawRoundRect(const TRect& aRect,const TSize& aCornerSize)=0;
  266. #line 2546
  267. virtual TInt DrawPolygon(const CArrayFix<TPoint> * aPointList,TFillRule aFillRule=EAlternate)=0;
  268. #line 2565
  269. virtual TInt DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule=EAlternate)=0;
  270. #line 2588
  271. virtual void DrawBitmap(const TPoint& aTopLeft,const CFbsBitmap* aSource)=0;
  272. #line 2611
  273. virtual void DrawBitmap(const TRect& aDestRect,const CFbsBitmap* aSource)=0;
  274. #line 2634
  275. virtual void DrawBitmap(const TRect& aDestRect,const CFbsBitmap* aSource,const TRect& aSourceRect)=0;
  276. #line 2650
  277. virtual void DrawBitmapMasked(const TRect& aDestRect,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask)=0;
  278. #line 2677
  279. virtual void DrawBitmapMasked(const TRect& aDestRect,const CWsBitmap* aBitmap,const TRect& aSourceRect,const CWsBitmap* aMaskBitmap,TBool aInvertMask)=0;
  280. #line 2694
  281. virtual void DrawText(const TDesC& aText,const TPoint& aPosition) = 0;
  282. #line 2750
  283. virtual void DrawText(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TTextAlign aAlignment = ELeft,
  284. TInt aLeftMargin = 0) = 0;
  285. __declspec(dllexport) virtual void DrawText(const TDesC& aText,const TPoint& aPosition,const TDrawTextParam& aParam);
  286. __declspec(dllexport) virtual void Reserved();
  287. __declspec(dllexport) TInt DrawTextExtended(const TDesC& aText,const TPoint& aPosition,const TDrawTextExtendedParam& aParam);
  288. #line 2766
  289. virtual void MapColors(const TRect &aRect,const TRgb *aColors,TInt aNumPairs,TBool aMapForwards) = 0;
  290. virtual TInt SetClippingRegion(const TRegion &aRegion) = 0;
  291. virtual void CancelClippingRegion() = 0;
  292. virtual void DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp) = 0;
  293. #line 2791
  294. virtual void DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0) = 0;
  295. protected:
  296. __declspec(dllexport) virtual void Reserved_CGraphicsContext_1();
  297. __declspec(dllexport) virtual void Reserved_CGraphicsContext_2();
  298. };
  299. #line 2822
  300. class CBitmapContext : public CGraphicsContext
  301. {
  302. public:
  303. virtual void Clear()=0;
  304. #line 2839
  305. virtual void Clear(const TRect& aRect)=0;
  306. #line 2848
  307. virtual void CopyRect(const TPoint& aOffset,const TRect& aRect)=0;
  308. #line 2857
  309. virtual void BitBlt(const TPoint& aPoint,const CFbsBitmap* aBitmap)=0;
  310. #line 2872
  311. virtual void BitBlt(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aRect)=0;
  312. #line 2906
  313. virtual void BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask)=0;
  314. virtual void SetFaded(TBool aFaded)=0;
  315. #line 2932
  316. virtual void SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)=0;
  317. #line 2952
  318. virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt) = 0;
  319. #line 2965
  320. virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt) = 0;
  321. protected:
  322. __declspec(dllexport) void Reserved_CGraphicsContext_1();
  323. __declspec(dllexport) void Reserved_CGraphicsContext_2();
  324. __declspec(dllexport) virtual void Reserved_CBitmapContext_1();
  325. __declspec(dllexport) virtual void Reserved_CBitmapContext_2();
  326. __declspec(dllexport) virtual void Reserved_CBitmapContext_3();
  327. };
  328. #line 2988
  329. class CBitmapDevice : public CGraphicsDevice
  330. {
  331. public:
  332. #line 2999
  333. virtual void GetPixel(TRgb& aColor,const TPoint& aPixel) const=0;
  334. #line 3017
  335. virtual void GetScanLine(TDes8& aBuf,const TPoint& aStartPixel,TInt aLength,TDisplayMode aDispMode) const=0;
  336. #line 3027
  337. virtual TInt AddFile(const TDesC& aName,TInt& aId)=0;
  338. virtual void RemoveFile(TInt aId=0)=0;
  339. #line 3051
  340. virtual TInt GetNearestFontInPixels(CFont*& aFont, const TFontSpec& aFontSpec) = 0;
  341. #line 3070
  342. virtual TInt GetNearestFontToDesignHeightInPixels(CFont*& , const TFontSpec& ){return 0;}
  343. #line 3092
  344. virtual TInt GetNearestFontToMaxHeightInPixels(CFont*& , const TFontSpec& , TInt ){return 0;}
  345. #line 3115
  346. virtual TInt FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const=0;
  347.     inline TInt CreateBitmapContext(CBitmapContext*& aGC);
  348. };
  349. class TMargins
  350.     {
  351. public:
  352. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  353. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  354. __declspec(dllexport) TBool operator==(const TMargins& aMargins) const;
  355. __declspec(dllexport) TBool operator!=(const TMargins& aMargins) const;
  356. public:
  357. TInt iLeft;
  358. TInt iRight;
  359.     TInt iTop;
  360. TInt iBottom;
  361. };
  362. #line 3150
  363. class TPictureCapability
  364. {
  365. public:
  366. enum TScalingType
  367. {
  368. ENotScaleable,
  369. EFullyScaleable,
  370. EScaleableMaintainingAspectRatio
  371. };
  372. public:
  373. inline TPictureCapability(TScalingType aScalingType,TBool aCroppable);
  374. public:
  375. TScalingType iScalingType;
  376. TBool iIsCroppable;
  377. };
  378. #line 3200
  379. class CPicture : public CBase
  380.     {
  381. public:
  382. enum TDetach
  383. {
  384. EDetachFull,
  385. EDetachDraw
  386. };
  387. public:
  388. __declspec(dllexport) virtual ~CPicture();
  389. #line 3227
  390. virtual void Draw(CGraphicsContext& aGc,const TPoint& aTopLeft,const TRect& aClipRect,MGraphicsDeviceMap* aMap) const=0;
  391. __declspec(dllexport) virtual TStreamId StoreL(CStreamStore& aStore) const;
  392. virtual void DetachFromStoreL(TDetach =EDetachFull) {}
  393. #line 3239
  394. virtual void ExternalizeL(RWriteStream& aStream) const =0;
  395. virtual void GetOriginalSizeInTwips(TSize& aSize) const =0;
  396. __declspec(dllexport) virtual void SetScaleFactor(TInt aScaleFactorWidth,TInt aScaleFactorHeight);
  397. __declspec(dllexport) virtual void SetCropInTwips(const TMargins& aMargins);
  398. __declspec(dllexport) virtual TPictureCapability Capability() const;
  399. __declspec(dllexport) virtual void GetCropInTwips(TMargins& aMargins) const;
  400. __declspec(dllexport) virtual TInt ScaleFactorWidth() const;
  401. __declspec(dllexport) virtual TInt ScaleFactorHeight() const;
  402. __declspec(dllexport) virtual TBool LineBreakPossible(TUint aClass,TBool aBeforePicture,TBool aHaveSpaces) const;
  403. __declspec(dllexport) virtual TBool NativePixelSize(TSize& aPixelSize);
  404. __declspec(dllexport) void GetSizeInPixels(MGraphicsDeviceMap* aMap, TSize& aSize) const;
  405. __declspec(dllexport) void SetSizeInPixels(MGraphicsDeviceMap* aMap, const TSize& aSize);
  406. __declspec(dllexport) void AddCropInPixels(MGraphicsDeviceMap* aMap, const TMargins& aMargins);
  407. __declspec(dllexport) void GetSizeInTwips(TSize& aSize) const;
  408. __declspec(dllexport) void SetSizeInTwips(const TSize& aSize);
  409. __declspec(dllexport) void ResetToOriginal();
  410. protected:
  411. __declspec(dllexport) CPicture();
  412. };
  413. #line 3277
  414. class TPictureHeader
  415. {
  416. public:
  417. __declspec(dllexport) TPictureHeader();
  418. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  419. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  420. __declspec(dllexport) void DeletePicture();
  421. public:
  422. TSwizzle<CPicture> iPicture;
  423. TUid iPictureType;
  424. TSize iSize;
  425. };
  426. #line 3304
  427. class MPictureFactory
  428. {
  429. public:
  430. #line 3324
  431. virtual void NewPictureL(TPictureHeader& aHeader,const CStreamStore& aDeferredPictureStore)const=0;
  432. };
  433. #line 3335
  434. const TInt KMaxPrinterModelNameLength=0x20;
  435. #line 3344
  436. typedef TBuf<KMaxPrinterModelNameLength> TPrinterModelName;
  437. #line 3357
  438. class TPageSpec
  439. {
  440. public:
  441. enum TPageOrientation
  442. {
  443. EPortrait,
  444. ELandscape
  445. };
  446. public:
  447. __declspec(dllexport) TPageSpec();
  448. __declspec(dllexport) TPageSpec(TPageOrientation aOrientation,const TSize& aSize);
  449. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  450. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  451. __declspec(dllexport) TSize OrientedPageSize() const;
  452. __declspec(dllexport) TBool operator==(const TPageSpec& aPageSpec) const;
  453. __declspec(dllexport) TBool operator!=(const TPageSpec& aPageSpec) const;
  454. public:
  455. TSize iPortraitPageSize;
  456. TPageOrientation iOrientation;
  457. };
  458. #line 3398
  459. class TBandAttributes
  460.     {
  461. public:
  462. TRect iRect;
  463. TBool iTextIsIgnored;
  464. TBool iGraphicsIsIgnored;
  465. TBool iFirstBandOnPage;
  466. };
  467. #line 3423
  468. class CPrinterPort : public CBase
  469. {
  470. public:
  471. virtual void WriteRequest(const TDesC8& aBuf,TRequestStatus& aRequestStatus)=0;
  472. virtual void Cancel()=0;
  473. };
  474. #line 3445
  475. class TPrinterModelEntry
  476.    {
  477. public:
  478. TPrinterModelName iModelName;
  479. TBool iRequiresPrinterPort;
  480. TUid iUid;
  481. public:
  482. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  483. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  484. };
  485. #line 3469
  486. class TPrinterModelHeader
  487.     {
  488. public:
  489. TPrinterModelEntry iEntry;
  490. TStreamId iModelDataStreamId;
  491. public:
  492. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  493. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  494. };
  495. #line 3496
  496. class CPrinterControl : public CBase
  497.     {
  498. public:
  499. enum TMoreOnPage
  500. {
  501. EMoreOnPage,
  502. ENoMoreOnPage
  503. };
  504. public:
  505. __declspec(dllexport) ~CPrinterControl();
  506. virtual TInt BandsPerPage()=0;
  507. #line 3528
  508. virtual TMoreOnPage QueueGetBand(TRequestStatus& aStatus, TBandAttributes& aBand)=0;
  509. #line 3539
  510. virtual void QueueEndPrint(TRequestStatus& aStatus)=0;
  511. virtual void AbortPrint()=0;
  512. protected:
  513. __declspec(dllexport) CPrinterControl(CPrinterPort* aPrinterPort);
  514. protected:
  515. enum TState
  516. {
  517. ENotPrinting,
  518. EPrinting
  519. };
  520. TState iState;
  521. CPrinterPort* iPrinterPort;
  522. };
  523. class CDictionaryStore;
  524. class RFs;
  525. #line 3590
  526. class CPrinterDevice : public CGraphicsDevice
  527. {
  528. public:
  529. __declspec(dllexport) ~CPrinterDevice();
  530. inline TPageSpec CurrentPageSpecInTwips() const {return(iCurrentPageSpecInTwips);}
  531. __declspec(dllexport) virtual void SelectPageSpecInTwips(const TPageSpec& aPageSpec);
  532. __declspec(dllexport) virtual TRect PrintablePageInPixels() const;
  533. virtual TPrinterModelEntry Model()const =0;
  534. virtual TInt SetModel(const TPrinterModelHeader& aModel,CStreamStore& aStore)=0;
  535. #line 3627
  536. virtual void CreateControlL(CPrinterPort* aPrinterPort)=0;
  537. __declspec(dllexport) virtual void DeleteControl();
  538. virtual void InternalizePropertiesL(RReadStream& ) {}
  539. virtual void ExternalizePropertiesL(RWriteStream& ) const {}
  540. __declspec(dllexport) void RestorePropertiesL();
  541. __declspec(dllexport) void StorePropertiesL() const;
  542. protected:
  543. __declspec(dllexport) CPrinterDevice();
  544. public:
  545. CPrinterControl* iControl;
  546. protected:
  547. TPageSpec iCurrentPageSpecInTwips;
  548. };
  549. #line 3669
  550. class CPrinterModelList : public CBase
  551.      {
  552. public:
  553.     virtual TInt ModelCount() const=0;
  554. #line 3686
  555.     virtual const TPrinterModelEntry operator[](TInt anIndex)=0;
  556. virtual TInt UidToNum(TUid aModelUid) const=0;
  557.     };
  558. #line 3705
  559. class MPageRegionPrinter
  560. {
  561. public:
  562. #line 3718
  563. virtual void PrintBandL(CGraphicsDevice* aDevice,TInt aPageNo,const TBandAttributes& aBandInPixels)=0;
  564. };
  565. const TInt KPdrStoreFileUidVal=268435514;
  566. const TInt KPdlUidVal=268450588;
  567. const TInt KUdlUidVal=268450589;
  568. #line 3746
  569. class CPrinterDriverUI : public CBase
  570.     {
  571. protected:
  572. __declspec(dllexport) CPrinterDriverUI();
  573. public:
  574. __declspec(dllexport) virtual TBool BeforePrintL();
  575. __declspec(dllexport) virtual void AfterPrintL();
  576. __declspec(dllexport) virtual void SetPropertiesL();
  577. __declspec(dllexport) virtual TBool CanSetProperties();
  578. virtual TInt SetPrinterDevice(CPrinterDevice* aPrinterDevice)=0;
  579. };
  580. class CFileStore;
  581. #line 3790
  582. class CPrinterDriver : public CBase
  583.      {
  584. public:
  585. __declspec(dllexport) static CPrinterDriver* NewL();
  586. __declspec(dllexport) ~CPrinterDriver();
  587. __declspec(dllexport) void OpenPdrL(const TDesC &aName);
  588. __declspec(dllexport) void Close();
  589. __declspec(dllexport) TInt NumModels() const;
  590. __declspec(dllexport) TPrinterModelEntry Model(TInt aNum) const;
  591. inline CPrinterDevice* PrinterDevice() {return iPrinterDevice;}
  592. __declspec(dllexport) CPrinterDevice* CreatePrinterDeviceL(TUid aModelUid);
  593. __declspec(dllexport) CPrinterDriverUI* CreatePrinterDriverUIL();
  594. private:
  595. CPrinterDriver();
  596. void DeletePrinterDevice();
  597. void DoOpenPdrL(const TDesC &aName);
  598. void DoCreatePrinterDeviceL(TUid aModelUid);
  599. void LoadLibraryL(RLibrary& aLibrary,const TDesC& aExt,TUid aUid2);
  600. private:
  601. RFs iFs;
  602. CFileStore *iPdrStore;
  603. TInt iNumModels;
  604. TPrinterModelHeader* iModelList;
  605. TFileName iPdlName;
  606. TUid iPdlUid;
  607. RLibrary iPdlLibrary;
  608. CPrinterDevice* iPrinterDevice;
  609. RLibrary iUdlLibrary;
  610. };
  611. class RResourceFile;
  612. class CPdrModelList : public CPrinterModelList
  613.     {
  614. public:
  615. __declspec(dllexport) static CPdrModelList* NewL();
  616. __declspec(dllexport) virtual ~CPdrModelList();
  617.     __declspec(dllexport) TInt ModelCount() const;
  618.     __declspec(dllexport) const TPrinterModelEntry operator [] (TInt anIndex);
  619. __declspec(dllexport) TInt UidToNum(TUid aModelUid) const;
  620. __declspec(dllexport) void AddDirectoryL(const TDesC& aDir);
  621. __declspec(dllexport) CPrinterModelList* ScanForModelsL();
  622. __declspec(dllexport) CPrinterDriver* CreatePrinterDriverL(TInt anIndex);
  623. private:
  624. CPdrModelList();
  625. void ConstructL();
  626. private:
  627. class TFileEntry
  628. {
  629. public:
  630. TFileName iFileName;
  631. TDesC* iDirectory;
  632. };
  633. class TModelEntry
  634. {
  635. public:
  636. TPrinterModelEntry iEntry;
  637. TFileEntry* iFile;
  638. };
  639. private:
  640. void ScanDirectoryL(TInt aDirIndex);
  641. void ListModelsL(TInt aFileIndex, TParse& aParser, TFileName& aNameOfLoadedResourceFile, TFileName& aTempFileName, RResourceFile& aResourceFile, HBufC8*& aResource);
  642. HBufC* NewPathBufL(const TFileEntry& aFileEntry);
  643. private:
  644. CArrayFixSeg<TModelEntry> * iModelArray;
  645. CArrayFixFlat<TFileEntry> * iFileArray;
  646. CArrayFixFlat<HBufC*> * iDirectoryArray;
  647. RFs iFileServer;
  648. };
  649. #line 3881
  650. class TZoomFactor : public MGraphicsDeviceMap
  651. {
  652. public:
  653. __declspec(dllexport) TZoomFactor();
  654. __declspec(dllexport) ~TZoomFactor();
  655. inline TZoomFactor(const MGraphicsDeviceMap* aDevice);
  656. inline TZoomFactor(const TZoomFactor* aDevice);
  657. __declspec(dllexport) TInt ZoomFactor() const;
  658. __declspec(dllexport) void SetZoomFactor(TInt aZoomFactor);
  659. inline void SetGraphicsDeviceMap(const MGraphicsDeviceMap* aDevice);
  660. inline const MGraphicsDeviceMap* GraphicsDeviceMap() const;
  661. __declspec(dllexport) void SetTwipToPixelMapping(const TSize& aSizeInPixels,const TSize& aSizeInTwips);
  662. __declspec(dllexport) TInt HorizontalTwipsToPixels(TInt aTwipWidth) const;
  663. __declspec(dllexport) TInt VerticalTwipsToPixels(TInt aTwipHeight) const;
  664. __declspec(dllexport) TInt HorizontalPixelsToTwips(TInt aPixelWidth) const;
  665. __declspec(dllexport) TInt VerticalPixelsToTwips(TInt aPixelHeight) const;
  666. __declspec(dllexport) virtual TInt GetNearestFontInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
  667. __declspec(dllexport) virtual TInt GetNearestFontToDesignHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
  668. __declspec(dllexport) virtual TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
  669. __declspec(dllexport) void ReleaseFont(CFont* aFont);
  670. public:
  671. enum {EZoomOneToOne=1000};
  672. private:
  673. TInt iZoomFactor;
  674. const MGraphicsDeviceMap* iDevice;
  675. };
  676. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\gdi.inl" /* stack depth 7 */
  677. #line 11
  678. inline TRgb::TRgb():
  679. iValue(0xffffffff)
  680. {}
  681. inline TRgb::TRgb(TUint32 aValue):
  682. iValue(((aValue & 0xff0000) >> 16) | (aValue & 0x00ff00) | ((aValue & 0x0000ff) << 16) | (0xff000000 - (aValue & 0xff000000)))
  683. #line 32
  684. {}
  685. inline TRgb::TRgb(TUint32 aInternalValue, TInt aAlpha) :
  686. iValue((aInternalValue & 0x00ffffff) | (aAlpha << 24))
  687. #line 49
  688. {
  689. }
  690. inline TRgb::TRgb(TInt aRed,TInt aGreen,TInt aBlue):
  691. iValue(aRed<<16|aGreen<<8|aBlue|0xff000000)
  692. {}
  693. #line 78
  694. inline TRgb::TRgb(TInt aRed,TInt aGreen,TInt aBlue, TInt aAlpha):
  695. iValue(aRed<<16|aGreen<<8|aBlue|aAlpha<<24)
  696. {}
  697. inline TInt TRgb::Red() const
  698. {return((iValue&0xff0000)>>16);}
  699. inline TInt TRgb::Green() const
  700. {return((iValue&0xff00)>>8);}
  701. inline TInt TRgb::Blue() const
  702. {return(iValue&0xff);}
  703. inline TBool TRgb::operator==(const TRgb& aColor) const
  704. #line 113
  705. {return(iValue==aColor.iValue);}
  706. inline TBool TRgb::operator!=(const TRgb& aColor) const
  707. #line 125
  708. {return(!(*this==aColor));}
  709. inline TRgb& TRgb::operator&=(const TRgb& aColor)
  710. #line 140
  711. {iValue&=aColor.iValue;return(*this);}
  712. inline TRgb& TRgb::operator|=(const TRgb& aColor)
  713. #line 155
  714. {iValue|=aColor.iValue;return(*this);}
  715. inline TRgb& TRgb::operator^=(const TRgb& aColor)
  716. #line 171
  717. {iValue^=aColor.iValue;iValue^=0xff000000; return(*this);}
  718. inline TUint32 TRgb::Value() const
  719. {return (((iValue & 0xff0000) >> 16) | (iValue & 0x00ff00) | ((iValue & 0x0000ff) << 16) | (0xff000000 - (iValue & 0xff000000)));}
  720. inline TUint32 TRgb::Internal() const
  721. {return (iValue);}
  722. inline void TRgb::SetInternal(TUint32 aInternal)
  723. {iValue = aInternal;}
  724. inline TRgb TRgb::operator~() const
  725. {TRgb rgb; rgb.SetInternal(iValue^0x00ffffff); return rgb;}
  726. inline TRgb TRgb::operator&(const TRgb& aColor)
  727. {TRgb rgb; rgb.SetInternal(iValue&aColor.iValue); return rgb;}
  728. inline TRgb TRgb::operator|(const TRgb& aColor)
  729. {TRgb rgb; rgb.SetInternal(iValue|aColor.iValue); return rgb;}
  730. inline TRgb TRgb::operator^(const TRgb& aColor)
  731. {TRgb rgb; rgb.SetInternal(iValue^aColor.iValue); return rgb;}
  732. #line 234
  733. inline TRgb TRgb::_Gray2(TInt aGray2)
  734. {
  735. if(aGray2) return(TRgb(0xffffff, 0xff));
  736. return(TRgb(0, 0xff));
  737. }
  738. #line 248
  739. inline TRgb TRgb::_Gray4(TInt aGray4)
  740. {
  741. aGray4&=3;
  742. aGray4|=aGray4<<2;
  743. aGray4|=aGray4<<4;
  744. return(TRgb(aGray4,aGray4,aGray4));
  745. }
  746. #line 264
  747. inline TRgb TRgb::_Gray16(TInt aGray16)
  748. {
  749. aGray16&=0xf;
  750. aGray16|=aGray16<<4;
  751. return(TRgb(aGray16,aGray16,aGray16));
  752. }
  753. #line 279
  754. inline TRgb TRgb::_Gray256(TInt aGray256)
  755. {
  756. aGray256&=0xff;
  757. return(TRgb(aGray256,aGray256,aGray256));
  758. }
  759. #line 292
  760. inline TRgb TRgb::_Color4K(TInt aColor4K)
  761. {
  762. TUint32 value = (aColor4K & 0xf00) << 8;
  763. value |= (aColor4K & 0x0f0) << 4;
  764. value |= (aColor4K & 0x00f);
  765. return TRgb(value | (value << 4), 0xff);
  766. }
  767. #line 307
  768. inline TRgb TRgb::_Color64K(TInt aColor64K)
  769. {
  770. TInt red = (aColor64K&0xF800)>>8;
  771. red += red>>5;
  772. TInt green = (aColor64K&0x07E0)>>3;
  773. green += green>>6;
  774. TInt blue = (aColor64K&0x001F)<<3;
  775. blue += blue>>5;
  776. return TRgb(red,green,blue);
  777. }
  778. #line 325
  779. inline TRgb TRgb::_Color16M(TInt a0RGB)
  780. {
  781. return TRgb(a0RGB, 0xff);
  782. }
  783. inline TRgb TRgb::_Color16MU(TInt a0RGB)
  784. {
  785. return TRgb(a0RGB, 0xff);
  786. }
  787. inline TInt TRgb::_Gray2() const
  788. {
  789. return(Gray256()>>7);
  790. }
  791. inline TInt TRgb::_Gray4() const
  792. {
  793. return(Gray256()>>6);
  794. }
  795. inline TInt TRgb::_Gray16() const
  796. {
  797. return(Gray256()>>4);
  798. }
  799. inline TInt TRgb::_Gray256() const
  800. {
  801. return(((Red()<<1)+Green()+(Green()<<2)+Blue())>>3);
  802. }
  803. inline TInt TRgb::_Color4K() const
  804. {
  805. TInt color4K = (iValue & 0x0000f0) >> 4;
  806. color4K |= (iValue & 0x00f000) >> 8;
  807. color4K |= (iValue & 0xf00000) >> 12;
  808. return color4K;
  809. }
  810. inline TInt TRgb::_Color64K() const
  811. {
  812. TInt color64K = (iValue & 0x0000f8) >> 3;
  813. color64K |= (iValue & 0x00fc00) >> 5;
  814. color64K |= (iValue & 0xf80000) >> 8;
  815. return color64K;
  816. }
  817. inline TInt TRgb::_Color16M() const
  818. {
  819. return (iValue & 0xffffff);
  820. }
  821. inline TInt TRgb::_Color16MU() const
  822. {
  823. return (iValue & 0xffffff);
  824. }
  825. inline TInt TRgb::Alpha() const
  826. {return (iValue >> 24);}
  827. #line 432
  828. inline TRgb TRgb::_Color16MA(TUint aARGB)
  829. {
  830. TRgb col; col.SetInternal(aARGB);
  831. return col;
  832. }
  833. inline TUint TRgb::_Color16MA() const
  834. {
  835. return (iValue);
  836. }
  837. inline TInt CPalette::Entries() const
  838. {return(iNumEntries);}
  839. inline TRgb TColor256Util::Color256(TInt aColor256) const
  840. { return TRgb(iColorTable[aColor256]); }
  841. inline TBool TFontStyle::operator==(const TFontStyle& aFontStyle) const
  842. {return(iFlags==aFontStyle.iFlags);}
  843. inline TGlyphBitmapType TFontStyle::BitmapType() const
  844. {
  845. return (TGlyphBitmapType)(iFlags >> 16);
  846. }
  847. inline void TFontStyle::SetBitmapType(TGlyphBitmapType aBitmapType)
  848. #line 502
  849. {
  850. iFlags &= 0xFFFF;
  851. iFlags |= (aBitmapType << 16);
  852. }
  853. inline TInt CBitmapDevice::CreateBitmapContext(CBitmapContext*& aGC)
  854. {return(CreateContext((CGraphicsContext*&)aGC));}
  855. inline TPictureCapability::TPictureCapability(TScalingType aScalingType,TBool aCroppable):
  856. iScalingType(aScalingType),iIsCroppable(aCroppable)
  857. {}
  858. inline TZoomFactor::TZoomFactor(const MGraphicsDeviceMap* aDevice):
  859. iZoomFactor(TZoomFactor::EZoomOneToOne),
  860. iDevice(aDevice)
  861. {}
  862. inline TZoomFactor::TZoomFactor(const TZoomFactor* aDevice):
  863. iDevice(aDevice)
  864. {
  865. iZoomFactor=aDevice->iZoomFactor;
  866. }
  867. inline void TZoomFactor::SetGraphicsDeviceMap(const MGraphicsDeviceMap* aDevice)
  868. {iDevice=aDevice;}
  869. inline const MGraphicsDeviceMap* TZoomFactor::GraphicsDeviceMap() const
  870. {return(iDevice);}
  871. #line 579
  872. inline TInt CFont::FontCapitalAscent() const
  873. {
  874. return ExtendedFunction(KFontCapitalAscent);
  875. }
  876. #line 595
  877. inline TInt CFont::FontMaxAscent() const
  878. {
  879. return ExtendedFunction(KFontMaxAscent);
  880. }
  881. #line 608
  882. inline TInt CFont::FontStandardDescent() const
  883. {
  884. return ExtendedFunction(KFontStandardDescent);
  885. }
  886. #line 623
  887. inline TInt CFont::FontMaxDescent() const
  888. {
  889. return ExtendedFunction(KFontMaxDescent);
  890. }
  891. inline TInt CFont::FontLineGap() const
  892. {
  893. return ExtendedFunction(KFontLineGap);
  894. }
  895. #line 648
  896. inline TInt CFont::FontMaxHeight() const
  897. {
  898. return FontMaxAscent() + FontMaxDescent();
  899. }
  900. #line 3912 "C:\Symbian\9.1\S60_3rd\epoc32\include\gdi.h" /* stack depth 6 */
  901. #line 21 "C:\Symbian\9.1\S60_3rd\epoc32\include\fntstore.h" /* stack depth 5 */
  902. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\openfont.h" /* stack depth 6 */
  903. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\Ecom.h" /* stack depth 7 */
  904. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\EComErrorCodes.h" /* stack depth 8 */
  905. #line 20
  906. const TInt KEComErrBase = -17000;
  907. const TInt KEComErrLast = -17030;
  908. #line 39
  909. const TInt KEComErrNoInterfaceIdentified = -17004;
  910. const TInt KEComErrNoResolver = -17014;
  911. const TInt KEComErrTooManyNotificationsOutstanding = -17026;
  912. #line 64
  913. const TInt KEComErrMissingParameter = -17028;
  914. const TInt KEComErrListInvalidAwaitNotification = -17029;
  915. const TInt KEComErrListCurrentlyUnavailable = -17030;
  916. #line 90
  917. const TInt KEComErrInvalidUnloadPolicy = -17003;
  918. const TInt KEComErrInvalidIIC = -17008;
  919. const TInt KEComErrDriveNotFound = -17019;
  920. #line 117
  921. const TInt KEComErrUnknownService = -17002;
  922. const TInt KEComErrReferenceCountInvalid = -17013;
  923. const TInt KEComErrDestructionFailed = -17017;
  924. const TInt KEComErrInvalidRegistryData = -17022;
  925. const TInt KEComErrMismatchedTags = -17023;
  926. #line 156
  927. const TInt KEComErrDestroyingWithNullDtorKey = -17027;
  928. #line 166
  929. const TInt KEComErrAlreadyReceiving = -17001;
  930. const TInt KEComErrEnableFailed = -17005;
  931. const TInt KEComErrDisableFailed = -17006;
  932. const TInt KEComErrNoRegistrationsFound = -17007;
  933. const TInt KEComErrUninstallFailed = -17009;
  934. const TInt KEComErrReinstallFailed = -17010;
  935. const TInt KEComErrRegistrationFailed = -17011;
  936. const TInt KEComErrNotConnected = -17012;
  937. const TInt KEComErrSuspendFailed = -17015;
  938. const TInt KEComErrResumeFailed = -17016;
  939. const TInt KEComErrDriveAlreadyInstalled = -17018;
  940. const TInt KEComErrIndexEntryNotFound = -17020;
  941. const TInt KEComErrNoRegistrationData = -17021;
  942. const TInt KEComErrInstantiationPointerNotFound = -17024;
  943. const TInt KEComErrInstantiationPointerNotAvailable = -17025;
  944. #line 19 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\Ecom.h" /* stack depth 7 */
  945. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\EComResolverParams.h" /* stack depth 8 */
  946. #line 25
  947. class TEComResolverParams
  948. {
  949. public:
  950. inline TEComResolverParams();
  951. inline const TDesC8& DataType() const;
  952. inline void SetDataType(const TDesC8& aDataType);
  953. inline TBool IsGenericMatch() const;
  954. inline void SetGenericMatch(TBool aGenericMatch);
  955. inline TBool IsWildcardMatch() const;
  956. inline void SetWildcardMatch(TBool aWildcardMatch);
  957. private:
  958. TPtrC8 iDataType;
  959. TBool iGenericMatch;
  960. };
  961. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\EComResolverParams.inl" /* stack depth 9 */
  962. #line 19
  963. TEComResolverParams::TEComResolverParams()
  964. : iDataType(0 ,0),
  965. iGenericMatch(EFalse)
  966. {
  967. }
  968. #line 35
  969. const TDesC8& TEComResolverParams::DataType() const
  970. {
  971. return iDataType;
  972. }
  973. #line 50
  974. void TEComResolverParams::SetDataType(const TDesC8& aDataType)
  975. {
  976. iDataType.Set(aDataType);
  977. }
  978. #line 62
  979. TBool TEComResolverParams::IsGenericMatch() const
  980. {
  981. return iGenericMatch;
  982. }
  983. #line 94
  984. void TEComResolverParams::SetGenericMatch(TBool aGenericMatch)
  985. {
  986. iGenericMatch=aGenericMatch;
  987. }
  988. #line 107
  989. TBool TEComResolverParams::IsWildcardMatch() const
  990. {
  991. return iGenericMatch;
  992. }
  993. #line 121
  994. void TEComResolverParams::SetWildcardMatch(TBool aWildcardMatch)
  995. {
  996. iGenericMatch=aWildcardMatch;
  997. }
  998. #line 56 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\EComResolverParams.h" /* stack depth 8 */
  999. #line 20 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\Ecom.h" /* stack depth 7 */
  1000. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\ImplementationInformation.h" /* stack depth 8 */
  1001. #line 52
  1002. class CImplementationInformation : public CBase
  1003. {
  1004. public:
  1005. static CImplementationInformation* NewLC(RReadStream& aStream);
  1006. static CImplementationInformation* NewL(TUid aUid,
  1007. TInt aVersion,
  1008. HBufC*  aName,
  1009. HBufC8* aDataType,
  1010. HBufC8* aOpaqueData,
  1011. TDriveUnit aDrive,
  1012. TBool aRomOnly,
  1013. TBool aRomBased);
  1014. static CImplementationInformation* NewL(const CImplementationInformation& aImplInfo);
  1015. ~CImplementationInformation();
  1016. inline const TDesC& DisplayName() const;
  1017. inline const TDesC8& DataType() const;
  1018. inline const TDesC8& OpaqueData() const;
  1019. inline TUid ImplementationUid() const;
  1020. inline TInt Version() const;
  1021. inline TBool Disabled() const;
  1022. inline void SetDisabled(TBool aDisabled);
  1023. void ExternalizeL(RWriteStream& aStream) const;
  1024. void InternalizeL(RReadStream& aStream);
  1025. inline TDriveUnit Drive() const;
  1026. inline TBool RomOnly() const;
  1027. inline TBool RomBased() const;
  1028. void SetRomBased(TBool aRomBased);
  1029. private:
  1030. CImplementationInformation();
  1031. CImplementationInformation(TUid aUid,
  1032.    TInt aVersion,
  1033.    HBufC*  aName,
  1034.    HBufC8* aDataType,
  1035.    HBufC8* aOpaqueData,
  1036.    TDriveUnit aDrive,
  1037.    TBool aRomOnly,
  1038.    TBool aRomBased);
  1039. private:
  1040. TUid iImplementationUid;
  1041. TInt iVersion;
  1042. HBufC* iDisplayName;
  1043. HBufC8* iData;
  1044. HBufC8* iOpaqueData;
  1045. TBool iDisabled;
  1046. TDriveUnit iDrive;
  1047. TBool iRomOnly;
  1048. TBool iRomBased;
  1049. };
  1050. typedef RArray<CImplementationInformation*> RImplInfoArray;
  1051. typedef RPointerArray<CImplementationInformation> RImplInfoPtrArray;
  1052. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\ImplementationInformation.inl" /* stack depth 9 */
  1053. #line 22
  1054. const TDesC& CImplementationInformation::DisplayName() const
  1055. {
  1056. if(iDisplayName == 0 )
  1057. return KNullDesC();
  1058. else
  1059. return *iDisplayName;
  1060. }
  1061. #line 37
  1062. const TDesC8& CImplementationInformation::DataType() const
  1063. {
  1064. if(iData == 0 )
  1065. return KNullDesC8();
  1066. else
  1067. return *iData;
  1068. }
  1069. #line 52
  1070. const TDesC8& CImplementationInformation::OpaqueData() const
  1071. {
  1072. if(iOpaqueData == 0 )
  1073. return KNullDesC8();
  1074. else
  1075. return *iOpaqueData;
  1076. }
  1077. #line 67
  1078. TUid CImplementationInformation::ImplementationUid() const
  1079. {
  1080. return iImplementationUid;
  1081. }
  1082. #line 79
  1083. TInt CImplementationInformation::Version() const
  1084. {
  1085. return iVersion;
  1086. }
  1087. #line 92
  1088. TBool CImplementationInformation::Disabled() const
  1089. {
  1090. return iDisabled;
  1091. }
  1092. #line 105
  1093. void CImplementationInformation::SetDisabled(TBool aDisabled)
  1094. {
  1095. iDisabled = aDisabled;
  1096. }
  1097. #line 117
  1098. TDriveUnit CImplementationInformation::Drive() const
  1099. {
  1100. return iDrive;
  1101. }
  1102. #line 129
  1103. TBool CImplementationInformation::RomOnly() const
  1104. {
  1105. return iRomOnly;
  1106. }
  1107. TBool CImplementationInformation::RomBased() const
  1108. {
  1109. return iRomBased;
  1110. }
  1111. #line 159 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\ImplementationInformation.h" /* stack depth 8 */
  1112. #line 21 "C:\Symbian\9.1\S60_3rd\epoc32\include\Ecom\Ecom.h" /* stack depth 7 */
  1113. class CLoadManager;
  1114. class CGlobalData;
  1115. const TInt KMaxServiceArgs = 4;
  1116. #line 41
  1117. const TUid KRomOnlyResolverUid = {0x10009D92};
  1118. #line 68
  1119. class REComSession  : public RSessionBase
  1120. {
  1121. friend class CGlobalData;
  1122. public:
  1123. __declspec(dllexport) REComSession();
  1124. __declspec(dllexport) static REComSession& OpenL();
  1125. __declspec(dllexport) void Close();
  1126. __declspec(dllexport) void NotifyOnChange(TRequestStatus& aStatus);
  1127. __declspec(dllexport) void CancelNotifyOnChange(TRequestStatus& aStatus);
  1128. __declspec(dllexport) static void ListImplementationsL(TUid aInterfaceUid,
  1129.   const TEComResolverParams& aResolutionParameters,
  1130.   RImplInfoPtrArray& aImplInfoArray);
  1131. __declspec(dllexport) static void ListImplementationsL(TUid aInterfaceUid,
  1132.   RImplInfoPtrArray& aImplInfoArray);
  1133. __declspec(dllexport) static void ListImplementationsL(TUid aInterfaceUid,
  1134.   const TEComResolverParams& aResolutionParameters,
  1135.   TUid aResolverUid,
  1136.   RImplInfoPtrArray& aImplInfoArray);
  1137. #line 104
  1138. __declspec(dllexport) static TAny* CreateImplementationL(TUid aImplementationUid,
  1139. TUid& aDtorIDKey);
  1140. __declspec(dllexport) static TAny* CreateImplementationL(TUid aImplementationUid,
  1141. TInt32 aKeyOffset);
  1142. __declspec(dllexport) static TAny* CreateImplementationL(TUid aImplementationUid,
  1143. TUid& aDtorIDKey,
  1144. TAny* aConstructionParameters);
  1145. __declspec(dllexport) static TAny* CreateImplementationL(TUid aImplementationUid,
  1146. TInt32 aKeyOffset,
  1147. TAny* aConstructionParameters);
  1148. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1149. TUid& aDtorIDKey,
  1150. const TEComResolverParams& aResolutionParameters);
  1151. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1152. TInt32 aKeyOffset,
  1153. const TEComResolverParams& aResolutionParameters);
  1154. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1155. TUid& aDtorIDKey,
  1156. TAny* aConstructionParameters,
  1157. const TEComResolverParams& aResolutionParameters);
  1158. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1159. TInt32 aKeyOffset,
  1160. TAny* aConstructionParameters,
  1161. const TEComResolverParams& aResolutionParameters);
  1162. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1163. TUid& aDtorIDKey,
  1164. const TEComResolverParams& aResolutionParameters,
  1165. TUid aResolverUid);
  1166. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1167. TInt32 aKeyOffset,
  1168. const TEComResolverParams& aResolutionParameters,
  1169. TUid aResolverUid);
  1170. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1171. TUid& aDtorIDKey,
  1172. TAny* aConstructionParameters,
  1173. const TEComResolverParams& aResolutionParameters,
  1174. TUid aResolverUid);
  1175. __declspec(dllexport) static TAny* CreateImplementationL(TUid aInterfaceUid,
  1176. TInt32 aKeyOffset,
  1177. TAny* aConstructionParameters,
  1178. const TEComResolverParams& aResolutionParameters,
  1179. TUid aResolverUid);
  1180. __declspec(dllexport) static void DestroyedImplementation(TUid aDtorIDKey);
  1181. __declspec(dllexport) static void FinalClose();
  1182. private:
  1183. void ConstructL();
  1184. void ReallyClose();
  1185. static void ListImplementationsL(TInt aServiceId,
  1186.  TUid aInterfaceUid,
  1187.  const TEComResolverParams& aResolutionParameters,
  1188.  TUid aResolverUid,
  1189.  RImplInfoPtrArray& aImplInfoArray);
  1190. TAny* ResolveAndCreateImplL(TUid aImplementationUid,
  1191.  TUid& aDtorIDKey,
  1192.  TAny* aCreationParameters, TBool aCreationParamsFlag);
  1193. TAny* ResolveAndCreateImplL(TUid aInterfaceUid,
  1194.  const TEComResolverParams& aResolutionParameters,
  1195.  TUid& aDtorIDKey,
  1196.  TAny* aCreationParameters, TBool aCreationParamsFlag);
  1197. TAny* ResolveAndCreateImplL(TUid aInterfaceUid,
  1198.  const TEComResolverParams& aResolutionParameters,
  1199.  TUid aResolverUid,
  1200.  TUid& aDtorIDKey,
  1201.  TAny* aCreationParameters, TBool aCreationParamsFlag);
  1202. TAny* ResolveAndCreateImplL(TInt aServiceId,
  1203.  TUid aInterfaceUid,
  1204.  const TEComResolverParams& aResolutionParameters,
  1205.  TUid aResolverUid,
  1206.  TUid& aDtorIDKey,
  1207.  TAny* aCreationParameters, TBool aCreationParamsFlag);
  1208. public:
  1209. __declspec(dllexport) static void SetGetParametersL(const TIpcArgs &aArgs);
  1210. private:
  1211. TInt iReserved1;
  1212. TBool iDoNotCloseThis;
  1213. TInt iReserved2;
  1214. };
  1215. #line 27 "C:\Symbian\9.1\S60_3rd\epoc32\include\openfont.h" /* stack depth 6 */
  1216. class CFont;
  1217. class COpenFontFile;
  1218. class COpenFontGlyph;
  1219. class COpenFontGlyphCache;
  1220. class COpenFontGlyphTreeEntry;
  1221. class COpenFontPositioner;
  1222. class COpenFontSessionCache;
  1223. class COpenFontSessionCacheList;
  1224. class RFs;
  1225. class TCharacterMetrics;
  1226. class TFontSpec;
  1227. class TOpenFontFaceAttrib;
  1228. class CFontStore;
  1229. class TOpenFontFileData;
  1230. const TInt KUidOpenFontRasterizerPlunginInterface = 0x101F7F5D;
  1231. #line 64
  1232. const TUint KReplacementCharacter = 0xF6DB;
  1233. const TInt KFillCharacterOffset = 0x7FFF;
  1234. #line 81
  1235. class TOpenFontMetrics
  1236. {
  1237. public:
  1238. inline TOpenFontMetrics();
  1239. __declspec(dllexport) TOpenFontMetrics(const CFont* aFont);
  1240. inline TInt Size() const;
  1241. inline TInt Ascent() const;
  1242. inline TInt Descent() const;
  1243. inline TInt MaxHeight() const;
  1244. inline TInt MaxDepth() const;
  1245. inline TInt MaxWidth() const;
  1246. inline void SetSize(TInt aSize);
  1247. inline void SetAscent(TInt aAscent);
  1248. inline void SetDescent(TInt aDescent);
  1249. inline void SetMaxHeight(TInt aMaxHeight);
  1250. inline void SetMaxDepth(TInt aMaxDepth);
  1251. inline void SetMaxWidth(TInt aMaxWidth);
  1252. private:
  1253. TInt16 iDesignHeight;
  1254. TInt16 iAscent;
  1255. TInt16 iDescent;
  1256. TInt16 iMaxHeight;
  1257. TInt16 iMaxDepth;
  1258. TInt16 iMaxWidth;
  1259. TInt32 iReserved;
  1260. };
  1261. #line 128
  1262. class TOpenFontCharMetrics
  1263. {
  1264. public:
  1265. enum TUninitialized { EUninitialized };
  1266. public:
  1267. inline TOpenFontCharMetrics();
  1268. TOpenFontCharMetrics(TUninitialized) {}
  1269. __declspec(dllexport) TOpenFontCharMetrics(const TCharacterMetrics& aMetrics);
  1270. __declspec(dllexport) TBool GetTCharacterMetrics(TCharacterMetrics& aMetrics) const;
  1271. inline TInt Width() const;
  1272. inline TInt Height() const;
  1273. inline TInt HorizBearingX() const;
  1274. inline TInt HorizBearingY() const;
  1275. inline TInt HorizAdvance() const;
  1276. inline TInt VertBearingX() const;
  1277. inline TInt VertBearingY() const;
  1278. inline TInt VertAdvance() const;
  1279. inline void GetHorizBounds(TRect& aBounds) const;
  1280. inline void GetVertBounds(TRect& aBounds) const;
  1281. inline void SetWidth(TInt aWidth);
  1282. inline void SetHeight(TInt aHeight);
  1283. inline void SetHorizBearingX(TInt aHorizBearingX);
  1284. inline void SetHorizBearingY(TInt aHorizBearingY);
  1285. inline void SetHorizAdvance(TInt aHorizAdvance);
  1286. inline void SetVertBearingX(TInt aVertBearingX);
  1287. inline void SetVertBearingY(TInt aVertBearingY);
  1288. inline void SetVertAdvance(TInt aVertAdvance);
  1289. private:
  1290. TInt16 iWidth;
  1291. TInt16 iHeight;
  1292. TInt16 iHorizBearingX;
  1293. TInt16 iHorizBearingY;
  1294. TInt16 iHorizAdvance;
  1295. TInt16 iVertBearingX;
  1296. TInt16 iVertBearingY;
  1297. TInt16 iVertAdvance;
  1298. TInt32 iReserved;
  1299. };
  1300. #line 187
  1301. class TOpenFontGlyphData
  1302. {
  1303. public:
  1304. __declspec(dllexport) static TOpenFontGlyphData* New(RHeap* aHeap,TInt aBufferSize);
  1305. inline TBool Overflow() const;
  1306. inline TInt BytesNeeded() const;
  1307. inline TPtrC8 Bitmap() const;
  1308. inline const TUint8* BitmapPointer() const;
  1309. inline const TOpenFontCharMetrics* Metrics() const;
  1310. inline TInt GlyphIndex() const;
  1311. inline TUint8* BufferStart();
  1312. inline TUint8* BufferEnd();
  1313. inline void SetBytesNeeded(TInt aBytes);
  1314. inline void SetBitmapPointer(const TUint8* aBitmap);
  1315. inline void SetMetricsPointer(const TOpenFontCharMetrics* aMetrics);
  1316. inline void SetPointersToInternalBuffers();
  1317. inline void SetMetrics(TOpenFontCharMetrics& aMetrics);
  1318. inline void SetGlyphIndex(TInt aGlyphIndex);
  1319. private:
  1320. TOpenFontGlyphData();
  1321. ~TOpenFontGlyphData();
  1322. private:
  1323. TInt iBitmapBufferSize;
  1324. TInt iBytesNeeded;
  1325. TOpenFontCharMetrics iMetricsBuffer;
  1326. const TUint8* iBitmap;
  1327. const TOpenFontCharMetrics* iMetrics;
  1328. TInt iGlyphIndex;
  1329. TAny* iReserved;
  1330. TUint8 iBitmapBuffer[1];
  1331. };
  1332. #line 254
  1333. class COpenFont: public CBase
  1334. {
  1335. public:
  1336. #line 282
  1337. virtual void RasterizeL(TInt aCode,TOpenFontGlyphData* aGlyphData) = 0;
  1338. __declspec(dllexport) virtual void Reserved();
  1339. __declspec(dllexport) COpenFont(RHeap* aHeap,COpenFontSessionCacheList* aSessionCacheList,COpenFontFile* aFile);
  1340. __declspec(dllexport) COpenFont(RHeap* aHeap,COpenFontSessionCacheList* aSessionCacheList,COpenFontFile* aFile,TInt aFaceIndex);
  1341. __declspec(dllexport) ~COpenFont();
  1342. __declspec(dllexport) void operator delete(TAny*);
  1343. inline const TOpenFontMetrics& Metrics() const;
  1344. inline const TOpenFontFaceAttrib* FaceAttrib() const;
  1345. inline COpenFontFile* File() const;
  1346. inline TInt FaceIndex() const;
  1347. inline TBool CharacterNeedsToBeRasterized(TInt aSessionHandle,TInt aCode) const;
  1348. TBool Rasterize(TInt aSessionHandle,TInt aCode,TOpenFontGlyphData* aGlyphData);
  1349. TBool HasCharacterL(TInt aCode) const;
  1350. TBool GetCharacterData(TInt aSessionHandle,TInt aCode,const TOpenFontCharMetrics*& aMetrics,const TUint8*& aBitmap) const;
  1351. void OnFileDeleted();
  1352. inline TInt FontCapitalAscent() const;
  1353. inline TInt FontMaxAscent() const;
  1354. inline TInt FontStandardDescent() const;
  1355. inline TInt FontMaxDescent() const;
  1356. inline TInt FontLineGap() const;
  1357. inline TInt FontMaxHeight() const;
  1358. protected:
  1359. RHeap* iHeap;
  1360. TOpenFontMetrics iMetrics;
  1361. const COpenFontPositioner* iPositioner;
  1362. TInt iFontCapitalAscent;
  1363. TInt iFontMaxAscent;
  1364. TInt iFontStandardDescent;
  1365. TInt iFontMaxDescent;
  1366. TInt iFontLineGap;
  1367. private:
  1368. const COpenFontGlyph* Glyph(TInt aSessionHandle,TInt aCode) const;
  1369. const COpenFontGlyph* FontCacheGlyph(TInt aCode,COpenFontGlyphTreeEntry**& aNode);
  1370. const COpenFontGlyph* SessionCacheGlyph(RHeap* aHeap,TInt aSessionHandle,TInt aCode,
  1371. COpenFontSessionCache*& aCache,TInt& aIndex,TBool aCreate) const;
  1372. void RasterizeHelperL(TInt aCode,TOpenFontGlyphData* aGlyphData,TOpenFontGlyphData*& aTempGlyphData);
  1373. private:
  1374. COpenFontFile* iFile;
  1375. TInt iFaceIndex;
  1376. COpenFontGlyphCache* iGlyphCache;
  1377. COpenFontSessionCacheList* iSessionCacheList;
  1378. TAny* iReserved;
  1379. };
  1380. #line 351
  1381. class TOpenFontFaceAttribBase
  1382. {
  1383. public:
  1384. inline TOpenFontFaceAttribBase();
  1385. inline TBool HasLatin() const;
  1386. inline TBool HasGreek() const;
  1387. inline TBool HasCyrillic() const;
  1388. inline TBool HasKana() const;
  1389. inline TBool HasHangul() const;
  1390. inline TBool HasCJK() const;
  1391. inline TBool IsSymbol() const;
  1392. inline TBool IsBold() const;
  1393. inline TBool IsItalic() const;
  1394. inline TBool IsSerif() const;
  1395. inline TBool IsMonoWidth() const;
  1396. inline TPtrC Name() const;
  1397. inline const TUint* Coverage() const;
  1398. inline void SetName(const TDesC& aName);
  1399. inline void SetCoverage(TUint aCoverage0,TUint aCoverage1 = 0,TUint aCoverage2 = 0,TUint aCoverage3 = 0);
  1400. inline void SetBold(TBool aBold);
  1401. inline void SetItalic(TBool aItalic);
  1402. inline void SetSerif(TBool aSerif);
  1403. inline void SetMonoWidth(TBool aMonoWidth);
  1404. inline TBool operator==(const TOpenFontFaceAttribBase& aAttrib) const;
  1405. enum
  1406. {
  1407. ELatinSet = 0x1,
  1408. EGreekSet = 0x80,
  1409. ECyrillicSet = 0x200,
  1410. EArmenianSet = 0x400,
  1411. EHebrewSet = 0x800,
  1412. EArabicSet = 0x2000,
  1413. EDevanagariSet = 0x8000,
  1414. EBengaliSet = 0x10000,
  1415. EGurmukhiSet = 0x20000,
  1416. EGujuratiSet = 0x40000,
  1417. EOriyaSet = 0x80000,
  1418. ETamilSet = 0x100000,
  1419. ETeluguSet = 0x200000,
  1420. EKannadaSet = 0x400000,
  1421. EMalayalamSet = 0x800000,
  1422. EThaiSet = 0x1000000,
  1423. ELaoSet = 0x2000000,
  1424. EGeorgianSet = 0x8000000,
  1425. EHangulJamoSet = 0x10000000,
  1426. };
  1427. enum
  1428. {
  1429. ESymbolSets = 0xFFFE,
  1430. EKanaSets = 0x60000,
  1431. EHangulSet = 0x100000,
  1432. ECJKSet = 0x8000000
  1433. };
  1434. enum
  1435. {
  1436. EBold = 0x1,
  1437. EItalic = 0x2,
  1438. ESerif = 0x4,
  1439. EMonoWidth = 0x8
  1440. };
  1441. enum
  1442. {
  1443. ENameLength = 32
  1444. };
  1445. protected:
  1446. TBufC<ENameLength> iName;
  1447. TUint iCoverage[4];
  1448. TInt iStyle;
  1449. TInt32 iReserved;
  1450. };
  1451. #line 443
  1452. class TOpenFontFaceAttrib: public TOpenFontFaceAttribBase
  1453. {
  1454. public:
  1455. inline TOpenFontFaceAttrib();
  1456. inline TBool operator==(const TOpenFontFaceAttrib& aAttrib) const;
  1457. inline TPtrC FullName() const;
  1458. inline TPtrC FamilyName() const;
  1459. inline TPtrC LocalFullName() const;
  1460. inline TPtrC LocalFamilyName() const;
  1461. inline TPtrC ShortFullName() const;
  1462. inline TPtrC ShortFamilyName() const;
  1463. inline TPtrC ShortLocalFullName() const;
  1464. inline TPtrC ShortLocalFamilyName() const;
  1465. inline void SetFullName(const TDesC& aName);
  1466. inline void SetFamilyName(const TDesC& aName);
  1467. inline void SetLocalFullName(const TDesC& aName);
  1468. inline void SetLocalFamilyName(const TDesC& aName);
  1469. inline TInt MinSizeInPixels() const;
  1470. inline void SetMinSizeInPixels(TInt aSize);
  1471. private:
  1472. TBufC<ENameLength> iFamilyName;
  1473. TBufC<ENameLength> iLocalFullName;
  1474. TBufC<ENameLength> iLocalFamilyName;
  1475. TInt iMinSizeInPixels;
  1476. TInt32 iReserved2;
  1477. };
  1478. #line 488
  1479. class TOpenFontSpec: public TOpenFontFaceAttribBase
  1480. {
  1481. public:
  1482. __declspec(dllexport) TOpenFontSpec();
  1483. __declspec(dllexport) TOpenFontSpec(const TFontSpec& aFontSpec);
  1484. __declspec(dllexport) void operator=(const TFontSpec& aFontSpec);
  1485. inline TBool operator==(const TOpenFontSpec& aFontSpec) const;
  1486. __declspec(dllexport) void SetAttrib(const TOpenFontFaceAttribBase& aAttrib);
  1487. __declspec(dllexport) void GetTFontSpec(TFontSpec& aFontSpec) const;
  1488. __declspec(dllexport) void CompensateForAspectRatio(TInt aPixelWidth,TInt aPixelHeight);
  1489. __declspec(dllexport) void CompensateForAspectRatio(const MGraphicsDeviceMap& aMap);
  1490. inline TInt Height() const;
  1491. inline TInt32 WidthFactor() const;
  1492. inline TInt32 SlantFactor() const;
  1493. inline TGlyphBitmapType BitmapType() const;
  1494. inline TUint32 Effects() const;
  1495. inline TFontPrintPosition PrintPosition() const;
  1496. inline void SetHeight(TInt aHeight);
  1497. inline void SetWidthFactor(TInt32 aWidthFactor);
  1498. inline void SetSlantFactor(TInt32 aSlantFactor);
  1499. inline void SetBitmapType(TGlyphBitmapType aBitmapType);
  1500. inline void SetEffects(TUint32 aEffects);
  1501. __declspec(dllexport) void SetEffects(FontEffect::TEffect aEffect, TBool aOn);
  1502. __declspec(dllexport) TBool IsEffectOn(FontEffect::TEffect aEffect) const;
  1503. static TBool IsCompensationForAspectRatioNeeded(TInt aPixelWidth, TInt aPixelHeight, TReal& aRatio);
  1504. enum
  1505. {
  1506. EAlgorithmicBold = 1,
  1507. EDropShadow = 2,
  1508. EOutline = 4
  1509. };
  1510. private:
  1511. TInt iHeight;
  1512. TInt32 iWidthFactor;
  1513. TInt32 iSlantFactor;
  1514. TInt iBitmapType;
  1515. TUint32 iEffects;
  1516. TBool iSymbol;
  1517. TFontPrintPosition iPrintPosition;
  1518. TInt iReserved2;
  1519. };
  1520. enum TOpenFontAttachment
  1521. {
  1522. EBaselineLeft,
  1523. EBaselineRight,
  1524. ETopLeft,
  1525. ETopCenter,
  1526. ETopRight,
  1527. EBottomLeft,
  1528. EBottomCenter,
  1529. EBottomRight
  1530. };
  1531. #line 599
  1532. class COpenFontFile: public CBase
  1533. {
  1534. public:
  1535. virtual void GetNearestFontInPixelsL(RHeap* aHeap, COpenFontSessionCacheList* aSessionCacheList,
  1536.  const TOpenFontSpec& aDesiredFontSpec, TInt aPixelWidth, TInt aPixelHeight,
  1537.  COpenFont*& aFont, TOpenFontSpec& aActualFontSpec) = 0;
  1538. virtual void GetNearestFontToDesignHeightInPixelsL(RHeap* , COpenFontSessionCacheList* ,
  1539.    const TOpenFontSpec& , TInt , TInt ,
  1540.    COpenFont*& , TOpenFontSpec& ){}
  1541. virtual void GetNearestFontToMaxHeightInPixelsL(RHeap* , COpenFontSessionCacheList* ,
  1542. const TOpenFontSpec& , TInt , TInt ,
  1543.  COpenFont*& , TOpenFontSpec& , TInt ){}
  1544. virtual TBool HasUnicodeCharacterL(TInt aFaceIndex,TInt aCode) const = 0;
  1545. __declspec(dllexport) virtual void Reserved();
  1546. __declspec(dllexport) COpenFontFile(TInt aUid,const TDesC& aFileName);
  1547. __declspec(dllexport) ~COpenFontFile();
  1548. __declspec(dllexport) TBool GetNearestFontHelper(const TOpenFontSpec& aDesiredFontSpec,TInt aPixelWidth,TInt aPixelHeight,
  1549. TInt& aFaceIndex,TOpenFontSpec& aActualFontSpec) const;
  1550. __declspec(dllexport) void AddFaceL(const TOpenFontFaceAttrib& aAttrib);
  1551. inline TUid Uid() const;
  1552. inline const TDesC& FileName() const;
  1553. inline const TOpenFontFaceAttrib& FaceAttrib(TInt aFaceIndex) const;
  1554. inline TInt FaceCount() const;
  1555. inline void IncRefCount();
  1556. inline TBool DecRefCount();
  1557. TInt GetNearestFontInPixels(RHeap* aHeap,COpenFontSessionCacheList* aSessionCacheList,
  1558. const TOpenFontSpec& aDesiredFontSpec,TInt aPixelWidth,TInt aPixelHeight,
  1559. COpenFont*& aFont,TOpenFontSpec& aActualFontSpec);
  1560. TInt GetNearestFontToDesignHeightInPixels(RHeap* aHeap, COpenFontSessionCacheList* aSessionCacheList,
  1561.   const TOpenFontSpec& aDesiredFontSpec, TInt aPixelWidth, TInt aPixelHeight,
  1562.   COpenFont*& aFont, TOpenFontSpec& aActualFontSpec);
  1563. TInt GetNearestFontToMaxHeightInPixels(RHeap* aHeap, COpenFontSessionCacheList* aSessionCacheList,
  1564.    const TOpenFontSpec& aDesiredFontSpec, TInt aPixelWidth, TInt aPixelHeight,
  1565.    COpenFont*& aFont, TOpenFontSpec& aActualFontSpec, TInt aMaxHeight);
  1566. void RemoveFontFromList(const COpenFont* aFont);
  1567. void SetFontStoreL(CFontStore* aFontStore);
  1568. protected:
  1569. __declspec(dllexport) TBool GetNearestFontHelperOld(const TOpenFontSpec& aDesiredFontSpec,TInt aPixelWidth,TInt aPixelHeight,
  1570. TInt& aFaceIndex,TOpenFontSpec& aActualFontSpec) const;
  1571. private:
  1572. class TAttrib: public TOpenFontFaceAttrib
  1573. {
  1574. public:
  1575. COpenFontPositioner* iPositioner;
  1576. };
  1577. static TInt ScoreByName(const TOpenFontSpec& aDesiredFontSpec, const TAttrib& aAttrib);
  1578. static TInt ScoreByStyle(const TOpenFontSpec& aDesiredFontSpec, const TAttrib& aAttrib, const TOpenFontFileData* aOpenFontFileData);
  1579. private:
  1580. CArrayFixFlat<TAttrib> iFaceAttrib;
  1581. TUid iUid;
  1582. TBuf<KMaxFileName> iFileName;
  1583. TInt iRefCount;
  1584. CArrayPtrFlat<COpenFont> iFontList;
  1585. TOpenFontFileData* iData;
  1586. };
  1587. #line 697
  1588. class COpenFontRasterizer: public CBase
  1589. {
  1590. public:
  1591. #line 730
  1592. virtual COpenFontFile* NewFontFileL(TInt aUid,const TDesC& aFileName,RFs& aFileSession) = 0;
  1593. inline static COpenFontRasterizer* NewL(TUid aInterfaceImplUid);
  1594. inline virtual ~COpenFontRasterizer();
  1595. __declspec(dllexport) virtual void Reserved();
  1596. private:
  1597. TUid iDtor_ID_Key;
  1598. };
  1599. #line 753
  1600. class COpenFontRasterizerContext: public CBase
  1601. {
  1602. public:
  1603. inline COpenFontRasterizerContext();
  1604. inline void StartGlyph(TOpenFontGlyphData* aGlyphData);
  1605. inline void WriteGlyphBit(TInt aBit);
  1606. inline void WriteGlyphByte(TInt aByte);
  1607. inline void EndGlyph();
  1608. private:
  1609. TOpenFontGlyphData* iGlyphData;
  1610. TUint8* iGlyphDataStart;
  1611. TUint8* iGlyphDataPtr;
  1612. TUint8* iGlyphDataEnd;
  1613. TInt iGlyphBit;
  1614. TInt iBytesNeeded;
  1615. TBool iOverflow;
  1616. TAny* iReserved;
  1617. };
  1618. inline TOpenFontMetrics::TOpenFontMetrics()
  1619. {
  1620. Mem::FillZ(this,sizeof(*this));
  1621. }
  1622. inline TInt TOpenFontMetrics::Size() const
  1623. {
  1624. return iDesignHeight;
  1625. }
  1626. inline TInt TOpenFontMetrics::Ascent() const
  1627. {
  1628. return iAscent;
  1629. }
  1630. inline TInt TOpenFontMetrics::Descent() const
  1631. {
  1632. return iDescent;
  1633. }
  1634. #line 824
  1635. inline TInt TOpenFontMetrics::MaxHeight() const
  1636. {
  1637. return iMaxHeight;
  1638. }
  1639. #line 839
  1640. inline TInt TOpenFontMetrics::MaxDepth() const
  1641. {
  1642. return iMaxDepth;
  1643. }
  1644. inline TInt TOpenFontMetrics::MaxWidth() const
  1645. {
  1646. return iMaxWidth;
  1647. }
  1648. inline void TOpenFontMetrics::SetSize(TInt aSize)
  1649. {
  1650. iDesignHeight = static_cast<TInt16>(aSize);
  1651. }
  1652. inline void TOpenFontMetrics::SetAscent(TInt aAscent)
  1653. {
  1654. iAscent = static_cast<TInt16>(aAscent);
  1655. }
  1656. inline void TOpenFontMetrics::SetDescent(TInt aDescent)
  1657. {
  1658. iDescent = static_cast<TInt16>(aDescent);
  1659. }
  1660. inline void TOpenFontMetrics::SetMaxHeight(TInt aMaxHeight)
  1661. {
  1662. iMaxHeight = static_cast<TInt16>(aMaxHeight);
  1663. }
  1664. inline void TOpenFontMetrics::SetMaxDepth(TInt aMaxDepth)
  1665. {
  1666. iMaxDepth = static_cast<TInt16>(aMaxDepth);
  1667. }
  1668. inline void TOpenFontMetrics::SetMaxWidth(TInt aMaxWidth)
  1669. {
  1670. iMaxWidth = static_cast<TInt16>(aMaxWidth);
  1671. }
  1672. inline TOpenFontCharMetrics::TOpenFontCharMetrics()
  1673. {
  1674. Mem::FillZ(this,sizeof(*this));
  1675. }
  1676. inline TInt TOpenFontCharMetrics::Width() const
  1677. {
  1678. return iWidth;
  1679. }
  1680. inline TInt TOpenFontCharMetrics::Height() const
  1681. {
  1682. return iHeight;
  1683. }
  1684. #line 939
  1685. inline TInt TOpenFontCharMetrics::HorizBearingX() const
  1686. {
  1687. return iHorizBearingX;
  1688. }
  1689. #line 951
  1690. inline TInt TOpenFontCharMetrics::HorizBearingY() const
  1691. {
  1692. return iHorizBearingY;
  1693. }
  1694. #line 963
  1695. inline TInt TOpenFontCharMetrics::HorizAdvance() const
  1696. {
  1697. return iHorizAdvance;
  1698. }
  1699. #line 975
  1700. inline TInt TOpenFontCharMetrics::VertBearingX() const
  1701. {
  1702. return iVertBearingX;
  1703. }
  1704. #line 987
  1705. inline TInt TOpenFontCharMetrics::VertBearingY() const
  1706. {
  1707. return iVertBearingY;
  1708. }
  1709. #line 1002
  1710. inline TInt TOpenFontCharMetrics::VertAdvance() const
  1711. {
  1712. return iVertAdvance;
  1713. }
  1714. inline void TOpenFontCharMetrics::GetHorizBounds(TRect& aBounds) const
  1715. {
  1716. aBounds.iTl.iX = iHorizBearingX;
  1717. aBounds.iTl.iY = -iHorizBearingY;
  1718. aBounds.iBr.iX = aBounds.iTl.iX + iWidth;
  1719. aBounds.iBr.iY = aBounds.iTl.iY + iHeight;
  1720. }
  1721. inline void TOpenFontCharMetrics::GetVertBounds(TRect& aBounds) const
  1722. {
  1723. aBounds.iTl.iX = -iVertBearingX;
  1724. aBounds.iTl.iY = iVertBearingY;
  1725. aBounds.iBr.iX = aBounds.iTl.iX + iWidth;
  1726. aBounds.iBr.iY = aBounds.iTl.iY + iHeight;
  1727. }
  1728. inline void TOpenFontCharMetrics::SetWidth(TInt aWidth)
  1729. {
  1730. iWidth = (TInt16)aWidth;
  1731. }
  1732. inline void TOpenFontCharMetrics::SetHeight(TInt aHeight)
  1733. {
  1734. iHeight = (TInt16)aHeight;
  1735. }
  1736. #line 1058
  1737. inline void TOpenFontCharMetrics::SetHorizBearingX(TInt aHorizBearingX)
  1738. {
  1739. iHorizBearingX = (TInt16)aHorizBearingX;
  1740. }
  1741. #line 1070
  1742. inline void TOpenFontCharMetrics::SetHorizBearingY(TInt aHorizBearingY)
  1743. {
  1744. iHorizBearingY = (TInt16)aHorizBearingY;
  1745. }
  1746. #line 1082
  1747. inline void TOpenFontCharMetrics::SetHorizAdvance(TInt aHorizAdvance)
  1748. {
  1749. iHorizAdvance = (TInt16)aHorizAdvance;
  1750. }
  1751. #line 1094
  1752. inline void TOpenFontCharMetrics::SetVertBearingX(TInt aVertBearingX)
  1753. {
  1754. iVertBearingX = (TInt16)aVertBearingX;
  1755. }
  1756. #line 1106
  1757. inline void TOpenFontCharMetrics::SetVertBearingY(TInt aVertBearingY)
  1758. {
  1759. iVertBearingY = (TInt16)aVertBearingY;
  1760. }
  1761. #line 1121
  1762. inline void TOpenFontCharMetrics::SetVertAdvance(TInt aVertAdvance)
  1763. {
  1764. iVertAdvance = (TInt16)aVertAdvance;
  1765. }
  1766. inline const TOpenFontMetrics& COpenFont::Metrics() const
  1767. {
  1768. return iMetrics;
  1769. }
  1770. #line 1144
  1771. inline TInt TOpenFontGlyphData::GlyphIndex() const
  1772. {
  1773. return iGlyphIndex;
  1774. }
  1775. inline const TOpenFontFaceAttrib* COpenFont::FaceAttrib() const
  1776. {
  1777. return iFile ? &iFile->FaceAttrib(iFaceIndex) : 0 ;
  1778. }
  1779. #line 1166
  1780. inline COpenFontFile* COpenFont::File() const
  1781. {
  1782. return iFile;
  1783. }
  1784. inline TInt COpenFont::FaceIndex() const
  1785. {
  1786. return iFaceIndex;
  1787. }
  1788. #line 1188
  1789. inline TBool COpenFont::CharacterNeedsToBeRasterized(TInt aSessionHandle,TInt aCode) const
  1790. {
  1791. return Glyph(aSessionHandle,aCode) == 0 ;
  1792. }
  1793. #line 1201
  1794. inline TInt COpenFont::FontCapitalAscent() const
  1795. {
  1796. return iFontCapitalAscent;
  1797. }
  1798. #line 1217
  1799. inline TInt COpenFont::FontMaxAscent() const
  1800. {
  1801. return iFontMaxAscent;
  1802. }
  1803. #line 1230
  1804. inline TInt COpenFont::FontStandardDescent() const
  1805. {
  1806. return iFontStandardDescent;
  1807. }
  1808. #line 1245
  1809. inline TInt COpenFont::FontMaxDescent() const
  1810. {
  1811. return iFontMaxDescent;
  1812. }
  1813. inline TInt COpenFont::FontLineGap() const
  1814. {
  1815. return iFontLineGap;
  1816. }
  1817. #line 1268
  1818. inline TInt COpenFont::FontMaxHeight() const
  1819. {
  1820. return iFontMaxAscent + iFontMaxDescent;
  1821. }
  1822. inline TOpenFontFaceAttribBase::TOpenFontFaceAttribBase()
  1823. {
  1824. Mem::FillZ(this,sizeof(*this));
  1825. }
  1826. inline TOpenFontFaceAttrib::TOpenFontFaceAttrib():
  1827. iMinSizeInPixels(0),
  1828. iReserved2(0)
  1829. {
  1830. }
  1831. inline TBool TOpenFontFaceAttribBase::HasLatin() const
  1832. {
  1833. return iCoverage[0] & ELatinSet;
  1834. }
  1835. inline TBool TOpenFontFaceAttribBase::HasGreek() const
  1836. {
  1837. return iCoverage[0] & EGreekSet;
  1838. }
  1839. inline TBool TOpenFontFaceAttribBase::HasCyrillic() const
  1840. {
  1841. return iCoverage[0] & ECyrillicSet;
  1842. }
  1843. #line 1336
  1844. inline TBool TOpenFontFaceAttribBase::HasKana() const
  1845. {
  1846. return iCoverage[1] & EKanaSets;
  1847. }
  1848. #line 1350
  1849. inline TBool TOpenFontFaceAttribBase::HasHangul() const
  1850. {
  1851. return iCoverage[1] & EHangulSet;
  1852. }
  1853. #line 1363
  1854. inline TBool TOpenFontFaceAttribBase::HasCJK() const
  1855. {
  1856. return iCoverage[1] & ECJKSet;
  1857. }
  1858. inline TBool TOpenFontFaceAttribBase::IsSymbol() const
  1859. {
  1860. return iCoverage[0] == 0 && iCoverage[2] == 0 && iCoverage[3] == 0 &&
  1861.    iCoverage[1] & ESymbolSets && !(iCoverage[1] & ~ESymbolSets);
  1862. }
  1863. inline TBool TOpenFontFaceAttribBase::IsBold() const
  1864. {
  1865. return iStyle & EBold;
  1866. }
  1867. inline TBool TOpenFontFaceAttribBase::IsItalic() const
  1868. {
  1869. return iStyle & EItalic;
  1870. }
  1871. inline TBool TOpenFontFaceAttribBase::IsSerif() const
  1872. {
  1873. return iStyle & ESerif;
  1874. }
  1875. inline TBool TOpenFontFaceAttribBase::IsMonoWidth() const
  1876. {
  1877. return iStyle & EMonoWidth;
  1878. }
  1879. inline TPtrC TOpenFontFaceAttribBase::Name() const
  1880. {
  1881. return iName;
  1882. }
  1883. #line 1424
  1884. inline TPtrC TOpenFontFaceAttrib::FullName() const
  1885. {
  1886. return Name();
  1887. }
  1888. #line 1436
  1889. inline TPtrC TOpenFontFaceAttrib::FamilyName() const
  1890. {
  1891. return iFamilyName;
  1892. }
  1893. #line 1451
  1894. inline TPtrC TOpenFontFaceAttrib::LocalFullName() const
  1895. {
  1896. return iLocalFullName;
  1897. }
  1898. #line 1466
  1899. inline TPtrC TOpenFontFaceAttrib::LocalFamilyName() const
  1900. {
  1901. return iLocalFamilyName;
  1902. }
  1903. #line 1482
  1904. inline TPtrC TOpenFontFaceAttrib::ShortFullName() const
  1905. {
  1906. return TPtrC(iName.Ptr(),Min(iName.Length(),KMaxTypefaceNameLength));
  1907. }
  1908. #line 1498
  1909. inline TPtrC TOpenFontFaceAttrib::ShortFamilyName() const
  1910. {
  1911. return TPtrC(iFamilyName.Ptr(),Min(iFamilyName.Length(),KMaxTypefaceNameLength));
  1912. }
  1913. #line 1514
  1914. inline TPtrC TOpenFontFaceAttrib::ShortLocalFullName() const
  1915. {
  1916. return TPtrC(iLocalFullName.Ptr(),Min(iLocalFullName.Length(),KMaxTypefaceNameLength));
  1917. }
  1918. #line 1530
  1919. inline TPtrC TOpenFontFaceAttrib::ShortLocalFamilyName() const
  1920. {
  1921. return TPtrC(iLocalFamilyName.Ptr(),Min(iLocalFamilyName.Length(),KMaxTypefaceNameLength));
  1922. }
  1923. #line 1547
  1924. inline const TUint* TOpenFontFaceAttribBase::Coverage() const
  1925. {
  1926. return iCoverage;
  1927. }
  1928. inline TInt TOpenFontFaceAttrib::MinSizeInPixels() const
  1929. {
  1930. return iMinSizeInPixels;
  1931. }
  1932. inline void TOpenFontFaceAttribBase::SetName(const TDesC& aName)
  1933. {
  1934. iName = TPtrC(aName.Ptr(),Min(aName.Length(),(TInt)ENameLength));
  1935. }
  1936. inline void TOpenFontFaceAttrib::SetFullName(const TDesC& aName)
  1937. {
  1938. SetName(aName);
  1939. }
  1940. inline void TOpenFontFaceAttrib::SetFamilyName(const TDesC& aName)
  1941. {
  1942. iFamilyName = TPtrC(aName.Ptr(),Min(aName.Length(),(TInt)ENameLength));
  1943. }
  1944. inline void TOpenFontFaceAttrib::SetLocalFullName(const TDesC& aName)
  1945. {
  1946. iLocalFullName = TPtrC(aName.Ptr(),Min(aName.Length(),(TInt)ENameLength));
  1947. }
  1948. inline void TOpenFontFaceAttrib::SetLocalFamilyName(const TDesC& aName)
  1949. {
  1950. iLocalFamilyName = TPtrC(aName.Ptr(),Min(aName.Length(),(TInt)ENameLength));
  1951. }
  1952. #line 1620
  1953. inline void TOpenFontFaceAttribBase::SetCoverage(TUint aCoverage0,TUint aCoverage1,TUint aCoverage2,TUint aCoverage3)
  1954. {
  1955. iCoverage[0] = aCoverage0;
  1956. iCoverage[1] = aCoverage1;
  1957. iCoverage[2] = aCoverage2;
  1958. iCoverage[3] = aCoverage3;
  1959. }
  1960. inline void TOpenFontFaceAttrib::SetMinSizeInPixels(TInt aSize)
  1961. {
  1962. iMinSizeInPixels = aSize;
  1963. }
  1964. #line 1647
  1965. inline TBool TOpenFontFaceAttrib::operator==(const TOpenFontFaceAttrib& aAttrib) const
  1966. {
  1967. return TOpenFontFaceAttribBase::operator==(aAttrib) &&
  1968.    iFamilyName == aAttrib.iFamilyName &&
  1969.    iLocalFullName == aAttrib.iLocalFullName &&
  1970.    iLocalFamilyName == aAttrib.iLocalFamilyName &&
  1971.    iMinSizeInPixels == aAttrib.iMinSizeInPixels;
  1972. }
  1973. inline void TOpenFontFaceAttribBase::SetBold(TBool aBold)
  1974. {
  1975. if (aBold)
  1976. iStyle |= EBold;
  1977. else
  1978. iStyle &= ~EBold;
  1979. }
  1980. inline void TOpenFontFaceAttribBase::SetItalic(TBool aItalic)
  1981. {
  1982. if (aItalic)
  1983. iStyle |= EItalic;
  1984. else
  1985. iStyle &= ~EItalic;
  1986. }
  1987. inline void TOpenFontFaceAttribBase::SetSerif(TBool aSerif)
  1988. {
  1989. if (aSerif)
  1990. iStyle |= ESerif;
  1991. else
  1992. iStyle &= ~ESerif;
  1993. }
  1994. inline void TOpenFontFaceAttribBase::SetMonoWidth(TBool aMonoWidth)
  1995. {
  1996. if (aMonoWidth)
  1997. iStyle |= EMonoWidth;
  1998. else
  1999. iStyle &= ~EMonoWidth;
  2000. }
  2001. #line 1710
  2002. inline TBool TOpenFontFaceAttribBase::operator==(const TOpenFontFaceAttribBase& aAttrib) const
  2003. {
  2004. return iStyle == aAttrib.iStyle &&
  2005.    iCoverage[0] == aAttrib.iCoverage[0] &&
  2006.    iCoverage[1] == aAttrib.iCoverage[1] &&
  2007.    iCoverage[2] == aAttrib.iCoverage[2] &&
  2008.    iCoverage[3] == aAttrib.iCoverage[3] &&
  2009.    iName.CompareF(aAttrib.iName) == 0;
  2010. }
  2011. #line 1727
  2012. inline TBool TOpenFontSpec::operator==(const TOpenFontSpec& aFontSpec) const
  2013. {
  2014. return TOpenFontFaceAttribBase::operator==(aFontSpec) &&
  2015.    iHeight == aFontSpec.iHeight &&
  2016.    iWidthFactor == aFontSpec.iWidthFactor &&
  2017.    iSlantFactor == aFontSpec.iSlantFactor &&
  2018.    iBitmapType == aFontSpec.iBitmapType &&
  2019.    iEffects == aFontSpec.iEffects &&
  2020.    iSymbol == aFontSpec.iSymbol &&
  2021.    iPrintPosition == aFontSpec.iPrintPosition;
  2022. }
  2023. inline TInt TOpenFontSpec::Height() const
  2024. {
  2025. return iHeight;
  2026. }
  2027. inline TInt32 TOpenFontSpec::WidthFactor() const
  2028. {
  2029. return iWidthFactor;
  2030. }
  2031. inline TInt32 TOpenFontSpec::SlantFactor() const
  2032. {
  2033. return iSlantFactor;
  2034. }
  2035. inline TGlyphBitmapType TOpenFontSpec::BitmapType() const
  2036. {
  2037. return (TGlyphBitmapType)iBitmapType;
  2038. }
  2039. inline TUint32 TOpenFontSpec::Effects() const
  2040. {
  2041. return iEffects;
  2042. }
  2043. inline TFontPrintPosition TOpenFontSpec::PrintPosition() const
  2044. {
  2045. return iPrintPosition;
  2046. }
  2047. inline void TOpenFontSpec::SetHeight(TInt aHeight)
  2048. {
  2049. iHeight = aHeight;
  2050. }
  2051. #line 1811
  2052. inline void TOpenFontSpec::SetWidthFactor(TInt32 aWidthFactor)
  2053. {
  2054. iWidthFactor = aWidthFactor;
  2055. }
  2056. #line 1831
  2057. inline void TOpenFontSpec::SetSlantFactor(TInt32 aSlantFactor)
  2058. {
  2059. iSlantFactor = aSlantFactor;
  2060. }
  2061. #line 1845
  2062. inline void TOpenFontSpec::SetBitmapType(TGlyphBitmapType aBitmapType)
  2063. {
  2064. iBitmapType = aBitmapType;
  2065. }
  2066. inline void TOpenFontSpec::SetEffects(TUint32 aEffects)
  2067. {
  2068. iEffects = aEffects;
  2069. }
  2070. inline TUid COpenFontFile::Uid() const
  2071. {
  2072. return iUid;
  2073. }
  2074. inline const TDesC& COpenFontFile::FileName() const
  2075. {
  2076. return iFileName;
  2077. }
  2078. inline const TOpenFontFaceAttrib& COpenFontFile::FaceAttrib(TInt aFaceIndex) const
  2079. {
  2080. return iFaceAttrib[aFaceIndex];
  2081. }
  2082. #line 1899
  2083. inline TInt COpenFontFile::FaceCount() const
  2084. {
  2085. return iFaceAttrib.Count();
  2086. }
  2087. inline void COpenFontFile::IncRefCount()
  2088. {
  2089. iRefCount++;
  2090. }
  2091. inline TBool COpenFontFile::DecRefCount()
  2092. {
  2093. iRefCount--;
  2094. return iRefCount <= 0;
  2095. }
  2096. inline COpenFontRasterizerContext::COpenFontRasterizerContext():
  2097. iGlyphData(0 )
  2098. {
  2099. }
  2100. inline void COpenFontRasterizerContext::StartGlyph(TOpenFontGlyphData* aGlyphData)
  2101. {
  2102. aGlyphData->SetPointersToInternalBuffers();
  2103. iGlyphData = aGlyphData;
  2104. iGlyphDataStart = iGlyphDataPtr = aGlyphData->BufferStart();
  2105. iGlyphDataEnd = aGlyphData->BufferEnd() - 4;
  2106. iGlyphBit = 1;
  2107. *iGlyphDataPtr = 0;
  2108. iBytesNeeded = 1;
  2109. iOverflow = 0 ;
  2110. }
  2111. inline void COpenFontRasterizerContext::WriteGlyphBit(TInt aBit)
  2112. {
  2113. if (aBit && !iOverflow)
  2114. *iGlyphDataPtr |= iGlyphBit;
  2115. iGlyphBit <<= 1;
  2116. if (iGlyphBit == 256)
  2117. {
  2118. iGlyphBit = 1;
  2119. iBytesNeeded++;
  2120. if (++iGlyphDataPtr < iGlyphDataEnd)
  2121. *iGlyphDataPtr = 0;
  2122. else
  2123. iOverflow = 1 ;
  2124. }
  2125. }
  2126. inline void COpenFontRasterizerContext::WriteGlyphByte(TInt aByte)
  2127.   {
  2128. if (iGlyphDataPtr < iGlyphDataEnd)
  2129. *iGlyphDataPtr++ = (TUint8)aByte;
  2130. else
  2131. iOverflow = 1 ;
  2132. iBytesNeeded++;
  2133. }
  2134. inline void COpenFontRasterizerContext::EndGlyph()
  2135. {
  2136. iGlyphData->SetBytesNeeded(iBytesNeeded + 4);
  2137. iGlyphData = 0 ;
  2138. }
  2139. inline TBool TOpenFontGlyphData::Overflow() const
  2140. {
  2141. return iBytesNeeded > iBitmapBufferSize;
  2142. }
  2143. inline TInt TOpenFontGlyphData::BytesNeeded() const
  2144. {
  2145. return iBytesNeeded;
  2146. }
  2147. inline TPtrC8 TOpenFontGlyphData::Bitmap() const
  2148. {
  2149. return TPtrC8(iBitmap,iBytesNeeded);
  2150. }
  2151. inline const TUint8* TOpenFontGlyphData::BitmapPointer() const
  2152. {
  2153. return iBitmap;
  2154. }
  2155. inline const TOpenFontCharMetrics* TOpenFontGlyphData::Metrics() const
  2156. {
  2157. return iMetrics;
  2158. }
  2159. inline TUint8* TOpenFontGlyphData::BufferStart()
  2160. {
  2161. return iBitmapBuffer;
  2162. }
  2163. inline TUint8* TOpenFontGlyphData::BufferEnd()
  2164. {
  2165. return iBitmapBuffer + iBitmapBufferSize;
  2166. }
  2167. inline void TOpenFontGlyphData::SetBytesNeeded(TInt aBytes)
  2168. {
  2169. iBytesNeeded = aBytes;
  2170. }
  2171. inline void TOpenFontGlyphData::SetBitmapPointer(const TUint8* aBitmap)
  2172. {
  2173. iBitmap = aBitmap;
  2174. }
  2175. inline void TOpenFontGlyphData::SetMetricsPointer(const TOpenFontCharMetrics* aMetrics)
  2176. {
  2177. iMetrics = aMetrics;
  2178. }
  2179. inline void TOpenFontGlyphData::SetPointersToInternalBuffers()
  2180. {
  2181. iBitmap = iBitmapBuffer;
  2182. iMetrics = &iMetricsBuffer;
  2183. }
  2184. inline void TOpenFontGlyphData::SetMetrics(TOpenFontCharMetrics& aMetrics)
  2185. {
  2186. iMetricsBuffer = aMetrics;
  2187. iMetrics = &iMetricsBuffer;
  2188. }
  2189. inline void TOpenFontGlyphData::SetGlyphIndex(TInt aGlyphIndex)
  2190. {
  2191. iGlyphIndex = aGlyphIndex;
  2192. }
  2193. #line 2117
  2194. inline COpenFontRasterizer* COpenFontRasterizer::NewL(TUid aInterfaceImplUid)
  2195. {
  2196. return reinterpret_cast <COpenFontRasterizer*> (
  2197. REComSession::CreateImplementationL(
  2198. aInterfaceImplUid,
  2199. (((TInt)&(((COpenFontRasterizer *)0x1000)-> iDtor_ID_Key))-0x1000) ));
  2200. }
  2201. inline COpenFontRasterizer::~COpenFontRasterizer()
  2202. {
  2203. REComSession::DestroyedImplementation(iDtor_ID_Key);
  2204. }
  2205. #line 22 "C:\Symbian\9.1\S60_3rd\epoc32\include\fntstore.h" /* stack depth 5 */
  2206. class CFontStoreFile;
  2207. class CFontBitmap;
  2208. class RReadStream;
  2209. class TTypefaceFontBitmap;
  2210. class TCharacterMetrics
  2211. {
  2212. public:
  2213. __declspec(dllexport) TCharacterMetrics();
  2214. TInt16 iAscentInPixels;
  2215. TInt16 iHeightInPixels;
  2216. TInt16 iLeftAdjustInPixels;
  2217. TInt16 iMoveInPixels;
  2218. TInt16 iRightAdjustInPixels;
  2219. };
  2220. class TAlgStyle
  2221. #line 53
  2222. {
  2223. public:
  2224. __declspec(dllexport) TAlgStyle();
  2225. __declspec(dllexport) void SetIsBold(TBool aIsBold);
  2226. __declspec(dllexport) void SetIsItalic(TBool aIsItalic);
  2227. __declspec(dllexport) void SetIsMono(TBool aIsMono);
  2228. __declspec(dllexport) void SetWidthFactor(TInt aWidthFactor);
  2229. __declspec(dllexport) void SetHeightFactor(TInt aHeightFactor);
  2230. __declspec(dllexport) TBool IsBold() const;
  2231. __declspec(dllexport) TBool IsItalic() const;
  2232. __declspec(dllexport) TBool IsMono() const;
  2233. __declspec(dllexport) TInt WidthFactor() const;
  2234. __declspec(dllexport) TInt HeightFactor() const;
  2235. __declspec(dllexport) TBool operator==(const TAlgStyle& aAlgStyle) const;
  2236. public:
  2237. TInt iBaselineOffsetInPixels;
  2238. private:
  2239. enum
  2240. {
  2241. EBold=1,
  2242. EItalic=2,
  2243. EMono=4,
  2244. };
  2245.     TInt8 iFlags;
  2246. TInt8 iWidthFactor;
  2247. TInt8 iHeightFactor;
  2248. };
  2249. #line 94
  2250. class CBitmapFont : public CFont
  2251. {
  2252. friend class CFontStore;
  2253. private:
  2254. CBitmapFont(RHeap* aHeap,const TFontSpec& aFontSpecInTwips, const TAlgStyle& aAlgStyle, CFontBitmap* aFontBitmap);
  2255. CBitmapFont(RHeap* aHeap,const TFontSpec& aFontSpecInTwips, const TAlgStyle& aAlgStyle, COpenFont* aOpenFont);
  2256. void ConstructL();
  2257. ~CBitmapFont();
  2258. static CBitmapFont* NewL(RHeap* aHeap, const TFontSpec& aFontSpecInTwips, const TAlgStyle& aAlgStyle, CFontBitmap* aFontBitmap);
  2259. static CBitmapFont* NewL(RHeap* aHeap, const TFontSpec& aFontSpecInTwips, const TAlgStyle& aAlgStyle, COpenFont* aOpenFont);
  2260. private:
  2261. __declspec(dllexport) virtual TUid DoTypeUid() const;
  2262. __declspec(dllexport) virtual TInt DoHeightInPixels() const;
  2263. __declspec(dllexport) virtual TInt DoAscentInPixels() const;
  2264. __declspec(dllexport) virtual TInt DoCharWidthInPixels(TChar aChar) const;
  2265. __declspec(dllexport) virtual TInt DoTextWidthInPixels(const TDesC &aText) const;
  2266. __declspec(dllexport) virtual TInt DoBaselineOffsetInPixels() const;
  2267. __declspec(dllexport) virtual TInt DoTextCount(const TDesC &aText, TInt aWidthInPixels) const;
  2268. __declspec(dllexport) virtual TInt DoTextCount(const TDesC &aText, TInt aWidthInPixels, TInt &aExcessWidthInPixels) const;
  2269. __declspec(dllexport) virtual TInt DoMaxCharWidthInPixels() const;
  2270. __declspec(dllexport) virtual TInt DoMaxNormalCharWidthInPixels() const;
  2271. __declspec(dllexport) virtual TFontSpec DoFontSpecInTwips() const;
  2272. __declspec(dllexport) virtual TInt DoExtendedFunction(TUid aFunctionId, TAny* aParam = 0 ) const;
  2273. public:
  2274. TUid Uid() const;
  2275. __declspec(dllexport) TCharacterMetrics CharacterMetrics(TInt aCode,const TUint8*& aBytes) const;
  2276. __declspec(dllexport) TBool GetCharacterData(TInt aSessionHandle, TInt aCode, TOpenFontCharMetrics& aMetrics, const TUint8*& aBitmap) const;
  2277. __declspec(dllexport) TBool Rasterize(TInt aSessionHandle,TInt aCode,TOpenFontGlyphData* aGlyphData) const;
  2278. __declspec(dllexport) void GetFontMetrics(TOpenFontMetrics& aMetrics) const;
  2279. __declspec(dllexport) TBool GetFaceAttrib(TOpenFontFaceAttrib& aAttrib) const;
  2280. __declspec(dllexport) TInt BitmapEncoding() const;
  2281. __declspec(dllexport) TBool HasCharacterL(TInt aCode) const;
  2282. __declspec(dllexport) TBool CharacterNeedsToBeRasterized(TInt aSessionHandle,TInt aCode) const;
  2283. __declspec(dllexport) void operator delete(TAny*);
  2284. inline TBool IsOpenFont() const;
  2285. inline COpenFont* OpenFont() const;
  2286. inline TGlyphBitmapType GlyphBitmapType() const;
  2287. private:
  2288. TInt Width(TInt aNum) const;
  2289. TInt Height(TInt aNum) const;
  2290. CFontBitmap* FontBitmap() const;
  2291. private:
  2292. TFontSpec iFontSpecInTwips;
  2293. public:
  2294. TAlgStyle iAlgStyle;
  2295. private:
  2296. RHeap* iHeap;
  2297. TInt iFontBitmapOffset;
  2298. COpenFont* iOpenFont;
  2299. };
  2300. class CFontStore : public CTypefaceStore
  2301. #line 167
  2302.     {
  2303. private:
  2304. CFontStore();
  2305. void ConstructL();
  2306. public:
  2307. __declspec(dllexport) static CFontStore* NewL(RHeap* aHeap);
  2308. __declspec(dllexport) ~CFontStore();
  2309. __declspec(dllexport) TUid AddFileL(const TDesC& aName);
  2310. __declspec(dllexport) void RemoveFile(TUid aFileUid);
  2311. __declspec(dllexport) TInt GetNearestFontInTwips(CFont *&aFont, const TFontSpec& aFontSpec);
  2312. __declspec(dllexport) TInt GetNearestFontInPixels(CFont *&aFont, const TFontSpec &aFontSpec);
  2313. __declspec(dllexport) TInt GetNearestFontToDesignHeightInTwips(CFont *&aFont, const TFontSpec& aFontSpec);
  2314. __declspec(dllexport) TInt GetNearestFontToDesignHeightInPixels(CFont *&aFont, const TFontSpec& aFontSpec);
  2315. __declspec(dllexport) TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
  2316. __declspec(dllexport) TInt GetNearestFontToMaxHeightInPixels(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
  2317. __declspec(dllexport) TInt GetNearestFontInTwips(CFont *&aFont, const TOpenFontSpec& aFontSpec);
  2318. __declspec(dllexport) TInt GetNearestFontInPixels(CFont *&aFont, const TOpenFontSpec &aFontSpec);
  2319. __declspec(dllexport) TInt GetNearestFontToDesignHeightInTwips(CFont *&aFont, const TOpenFontSpec& aFontSpec);
  2320. __declspec(dllexport) TInt GetNearestFontToDesignHeightInPixels(CFont *&aFont, const TOpenFontSpec& aFontSpec);
  2321. __declspec(dllexport) TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont, const TOpenFontSpec& aFontSpec, TInt aMaxHeight);
  2322. __declspec(dllexport) TInt GetNearestFontToMaxHeightInPixels(CFont*& aFont, const TOpenFontSpec& aFontSpec, TInt aMaxHeight);
  2323. __declspec(dllexport) TInt GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle);
  2324. __declspec(dllexport) TInt NumTypefaces() const;
  2325. __declspec(dllexport) void TypefaceSupport(TTypefaceSupport &aTypefaceSupport,TInt aTypefaceIndex) const;
  2326. __declspec(dllexport) TInt FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const;
  2327. __declspec(dllexport) TInt FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const;
  2328. __declspec(dllexport) void InstallRasterizerL(COpenFontRasterizer* aRasterizer);
  2329. __declspec(dllexport) void DeleteSessionCache(TInt aSessionHandle);
  2330. inline TGlyphBitmapType DefaultBitmapType() const;
  2331. inline void SetDefaultBitmapType(TGlyphBitmapType aType);
  2332. TInt BitmapFontFilesCount() const;
  2333. private:
  2334. void InternalizeFontStoreFileL(CFontStoreFile* aFontStoreFile, TInt aFontVersion);
  2335. TTypeface* GetNearestTypeface(const TTypeface& aTypeface) const;
  2336. TTypefaceFontBitmap GetNearestTypefaceFontBitmap(const TFontSpec& aFontSpecInPixels, TInt aMaxHeight = 0);
  2337. CFontBitmap* GetFontBitmapById(TUid aUid);
  2338. CBitmapFont* FindFont(const TFontSpec& aFontSpecInPixels,const TAlgStyle& aAlgStyle,TUid aUid) const;
  2339. CBitmapFont* FindFont(const TOpenFontSpec& aFontSpecInPixels,const TAlgStyle& aAlgStyle) const;
  2340. CBitmapFont* NewFontL(const TFontSpec& aFontSpecInTwips,const TAlgStyle& aAlgStyle,CFontBitmap* aFontBitmap);
  2341. CBitmapFont* NewFontL(const TOpenFontSpec& aFontSpecInTwips,const TAlgStyle& aAlgStyle,COpenFont* aOpenFont);
  2342. TInt VerticalPixelsToTwips(TInt aPixelHeight) const;
  2343. TInt VerticalTwipsToPixels(TInt aTwipsHeight) const;
  2344. TInt GetNearestBitmapFontInPixels(CBitmapFont *&aFont, TFontSpec &aFontSpec, TInt aMaxHeight = 0);
  2345. TInt GetNearestOpenFontInPixels(CBitmapFont *&aFont, TOpenFontSpec &aFontSpec, const TOpenFontSpec& aIdealFontSpecInPixels, TInt aMaxHeight = 0);
  2346. TInt GetNearestFontInPixels(CFont *&aFont, const TOpenFontSpec &aFontSpec, TInt aMaxHeight);
  2347. void UpdateTypefaceSupportListL();
  2348. public:
  2349. TInt iKPixelWidthInTwips;
  2350. TInt iKPixelHeightInTwips;
  2351. private:
  2352. RFs iFs;
  2353. RHeap* iHeap;
  2354. CArrayPtrFlat<CFontStoreFile> iFontStoreFileList;
  2355. CArrayPtrFlat<TTypeface> iTypefaceList;
  2356. CArrayPtrFlat<CFontBitmap> iFontBitmapList;
  2357. CArrayFixFlat<TTypefaceFontBitmap> iTypefaceFontBitmapList;
  2358. CArrayPtrFlat<COpenFontFile> iOpenFontFileList;
  2359. CArrayFixFlat<TTypefaceSupport> iOpenFontTypefaceSupportList;
  2360. CArrayPtrFlat<COpenFontRasterizer> iOpenFontRasterizerList;
  2361. COpenFontSessionCacheList* iOpenFontSessionCacheList;
  2362. TInt iOpenFontUid;
  2363. TGlyphBitmapType iDefaultBitmapType;
  2364. };
  2365. inline TBool CBitmapFont::IsOpenFont() const
  2366. {
  2367. return iOpenFont != 0 ;
  2368. }
  2369. inline COpenFont* CBitmapFont::OpenFont() const
  2370. {
  2371. return iOpenFont;
  2372. }
  2373. inline TGlyphBitmapType CBitmapFont::GlyphBitmapType() const
  2374. #line 275
  2375. {
  2376. return iFontSpecInTwips.iFontStyle.BitmapType();
  2377. }
  2378. inline TGlyphBitmapType CFontStore::DefaultBitmapType() const
  2379. {
  2380. return iDefaultBitmapType;
  2381. }
  2382. inline void CFontStore::SetDefaultBitmapType(TGlyphBitmapType aType)
  2383. {
  2384. iDefaultBitmapType = aType;
  2385. }
  2386. #line 23 "C:\Symbian\9.1\S60_3rd\epoc32\include\w32std.h" /* stack depth 4 */
  2387. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitdev.h" /* stack depth 5 */
  2388. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\fbs.h" /* stack depth 6 */
  2389. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitmap.h" /* stack depth 7 */
  2390. #line 20
  2391. const TUid KCBitwiseBitmapUid={268435520};
  2392. const TUid KCBitwiseBitmapHardwareUid={0x10009a3d};
  2393. const TUid KMultiBitmapFileImageUid={268435522};
  2394. const TInt KCompressionBookMarkThreshold=0x2000;
  2395. class CChunkPile;
  2396. class TCompressionBookMark;
  2397. enum TBitmapfileCompression
  2398. {
  2399. ENoBitmapCompression,
  2400. EByteRLECompression,
  2401. ETwelveBitRLECompression,
  2402. ESixteenBitRLECompression,
  2403. ETwentyFourBitRLECompression,
  2404. EThirtyTwoUBitRLECompression,
  2405. ERLECompressionLast
  2406. };
  2407. class TRgb24bit
  2408. {
  2409. public:
  2410. TUint8 iRed;
  2411. TUint8 iGreen;
  2412. TUint8 iBlue;
  2413. };
  2414. class SEpocBitmapHeader
  2415. {
  2416. public:
  2417. enum TColor
  2418. {
  2419. ENoColor=0,
  2420. EColor=1,
  2421. EColorAlpha=2,
  2422. EColorUndefined=8
  2423. };
  2424. public:
  2425. TInt iBitmapSize;
  2426. TInt iStructSize;
  2427. TSize iSizeInPixels;
  2428. TSize iSizeInTwips;
  2429. TInt iBitsPerPixel;
  2430. TInt iColor;
  2431. TInt iPaletteEntries;
  2432. TBitmapfileCompression iCompression;
  2433. };
  2434. class TLineScanningPosition
  2435. {
  2436. public:
  2437. TLineScanningPosition(TUint32* aSrcDataPtr): iSrcDataPtr((TUint8*)aSrcDataPtr), iCursorPos(0), iScanLineBuffer(0 ) {}
  2438. public:
  2439. TUint8* iSrcDataPtr;
  2440. TInt iCursorPos;
  2441. HBufC8* iScanLineBuffer;
  2442. };
  2443. class CShiftedFileStore;
  2444. class CBitwiseBitmap
  2445. {
  2446. friend class CFbTop;
  2447. friend class CFbClient;
  2448. friend class CFbsBitmap;
  2449. friend class CBitmapObject;
  2450. friend class CFbsBitmapAsyncStreamer;
  2451. friend class CleanupDelete<CBitwiseBitmap>;
  2452. public:
  2453. __declspec(dllexport) TUid Uid() const;
  2454. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream,const CFbsBitmap& aHandleBitmap) const;
  2455. __declspec(dllexport) void ExternalizeRectangleL(RWriteStream& aStream,const TRect& aRect,const CFbsBitmap& aHandleBitmap) const;
  2456. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  2457. __declspec(dllexport) static void InternalizeHeaderL(RReadStream& aStream,SEpocBitmapHeader& aHeader);
  2458. __declspec(dllexport) TSize SizeInPixels() const;
  2459. __declspec(dllexport) TSize SizeInTwips() const;
  2460. __declspec(dllexport) TDisplayMode DisplayMode() const;
  2461. __declspec(dllexport) TInt HorizontalTwipsToPixels(TInt aTwips) const;
  2462. __declspec(dllexport) TInt VerticalTwipsToPixels(TInt aTwips) const;
  2463. __declspec(dllexport) TInt HorizontalPixelsToTwips(TInt aPixels) const;
  2464. __declspec(dllexport) TInt VerticalPixelsToTwips(TInt aPixels) const;
  2465. __declspec(dllexport) void GetPixel(TRgb& aColor,const TPoint& aPos,TUint32* aBase) const;
  2466. __declspec(dllexport) TInt GetScanLinePtr(TUint32*& aSlptr, TPoint& aPixel,TInt aLength, TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2467. __declspec(dllexport) TInt GetScanLinePtr(TUint32*& aSlptr, TInt& aLength, TPoint& aPixel,TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2468. __declspec(dllexport) void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TBool aDither,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2469. __declspec(dllexport) void GetScanLine(TUint32*& aSlptr, TDes8& aBuf,const TPoint& aPixel,TInt aLength,TBool aDither,const TPoint& aDitherOffset,TDisplayMode aDispMode) const;
  2470. __declspec(dllexport) void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TBool aDither,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase) const;
  2471. __declspec(dllexport) void GetVerticalScanLine(TDes8& aBuf,TInt aX,TBool aDither,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase) const;
  2472. __declspec(dllexport) void StretchScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aClipStrchX,TInt aClipStrchLen,TInt aStretchLength,TInt aOrgX,TInt aOrgLen,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase) const;
  2473. __declspec(dllexport) void StretchScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aClipStrchX,TInt aClipStrchLen,TInt aStretchLength,TInt aOrgX,TInt aOrgLen,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2474. __declspec(dllexport) TUint32* ScanLineAddress(TUint32* aBase,TUint aY) const;
  2475. __declspec(dllexport) TBool IsMonochrome(TUint32* aBase) const;
  2476. __declspec(dllexport) void Compress(TUint8* aNewData,TUint8* aOldData);
  2477. __declspec(dllexport) TBool IsLargeBitmap() const;
  2478. __declspec(dllexport) TInt CompressData();
  2479. __declspec(dllexport) void SetCompressionBookmark(TLineScanningPosition& aLineScanningPosition, TUint32* aBase, const CFbsBitmap* aFbsBitmap);
  2480. __declspec(dllexport) TInt HardwareBitmapHandle() const;
  2481. __declspec(dllexport) TBool IsCompressedInRAM() const;
  2482. __declspec(dllexport) TBool IsCompressed() const;
  2483. private:
  2484. __declspec(dllexport) void operator delete(TAny*);
  2485. void operator delete(TAny*, TAny*) {}
  2486. __declspec(dllexport) CBitwiseBitmap(RHeap* aHeap,CChunkPile* aPile);
  2487. __declspec(dllexport) ~CBitwiseBitmap();
  2488. __declspec(dllexport) void Reset();
  2489. __declspec(dllexport) TInt Construct(const TSize& aSize,TDisplayMode aDispMode,TUid aCreatorUid);
  2490. __declspec(dllexport) void ConstructL(RFs& aFs,const TDesC& aFilename,TInt32 aId,TUint aFileOffset);
  2491. __declspec(dllexport) void ConstructL(RFile& aFile,TInt32 aId,TUint aFileOffset);
  2492. __declspec(dllexport) void ConstructL(CShiftedFileStore* aFileStore,TStreamId aStreamId);
  2493. __declspec(dllexport) TInt Resize(const TSize& aSize);
  2494. private:
  2495. void GenerateLineFromCompressedTwelveBitData(TUint8* aDestBuffer, const TPoint& aPixel,TInt aLength,TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2496. void GenerateLineFromCompressedEightBitData(TUint8* aDestBuffer, const TPoint& aPixel,TInt aLength,TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2497. TUint8 GetGrayPixelEx(TInt aX,TUint32* aScanLineAddress) const;
  2498. TRgb GetRgbPixelEx(TInt aX,TUint32* aScanLineAddress) const;
  2499. void GetRgbPixelExMany(TInt aX,TUint32* aScanlinePtr,TUint32* aDest,TInt aLength) const;
  2500.     void GetRgbPixelExMany16M(TInt aX,TUint32* aScanlinePtr,TUint8* aDest,TInt aLength) const;
  2501. void GetScanLineGray2(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TBool aDither,const TPoint& aDitherOffset,TUint32* aScanlinePtr) const;
  2502. void GetScanLineGray4(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TBool aDither,const TPoint& aDitherOffset,TUint32* aScanlinePtr) const;
  2503. void GetScanLineGray16(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2504. void GetScanLineGray256(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2505. void GetScanLineColor16(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2506. void GetScanLineColor256(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2507. void GetScanLineColor4K(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2508. void GetScanLineColor64K(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2509. void GetScanLineColor16M(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2510. void GetScanLineColor16MU(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2511. void GetScanLineColorRgb(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2512. void GetScanLineExBits(TDes8& aBuf,TInt aX,TInt aLength,TUint32* aScanlinePtr) const;
  2513. void GetScanLineExBytes(TDes8& aBuf,TInt aX,TInt aLength,TUint32* aScanlinePtr) const;
  2514. void DoExternalizeDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2515. void DoExternalizeByteDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2516. void DoExternalizeTwelveBitDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2517. void DoExternalizeSixteenBitDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2518. void DoExternalizeTwentyFourBitDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2519. void DoExternalizeThirtyTwoUBitDataCompressedL(RWriteStream& aStream,TUint8* aData,TInt aSizeInBytes) const;
  2520. TInt SizeOfDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2521. TInt SizeOfByteDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2522. TInt SizeOfTwelveBitDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2523. TInt SizeOfSixteenBitDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2524. TInt SizeOfTwentyFourBitDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2525. TInt SizeOfThirtyTwoUBitDataCompressed(TUint8* aData,TInt aSizeInBytes) const;
  2526. TBool TrueColorPointerCompare(TUint8* aColorPointer,TUint8 aComponent1,TUint8 aComponent2,TUint8 aComponent3) const;
  2527. void DoInternalizeL(RReadStream& aStream,TInt aSrceSize,TUint32* aBase);
  2528. void DoInternalizeCompressedDataL(RReadStream& aStream,TInt aSrceSize,TUint32* aBase,TBitmapfileCompression aCompression);
  2529. void DoDecompressByteData(TUint8* aDestBuffer,TInt aDestSize,TUint8* aSrceBuffer,TInt aSrceSize);
  2530. void DoDecompressByteDataAltL(RReadStream& aStream,TInt aSrceSizeInBytes,TUint32* aBase);
  2531. void DoDecompressTwelveBitData(TUint8* aDestBuffer,TInt aDestSize,TUint8* aSrceBuffer,TInt aSrceSize);
  2532. void DoDecompressTwelveBitDataAltL(RReadStream& aStream,TInt aSrceSizeInBytes,TUint32* aBase);
  2533. void DoDecompressSixteenBitData(TUint8* aDestBuffer,TInt aDestSize,TUint8* aSrceBuffer,TInt aSrceSize);
  2534. void DoDecompressSixteenBitDataAltL(RReadStream& aStream,TInt aSrceSizeInBytes,TUint32* aBase);
  2535. void DoDecompressTwentyFourBitData(TUint8* aDestBuffer,TInt aDestSize,TUint8* aSrceBuffer,TInt aSrceSize);
  2536. void DoDecompressTwentyFourBitDataAltL(RReadStream& aStream,TInt aSrceSizeInBytes,TUint32* aBase);
  2537. void DoDecompressThirtyTwoUBitData(TUint8* aDestBuffer,TInt aDestSize,TUint8* aSrceBuffer,TInt aSrceSize);
  2538. void DoDecompressThirtyTwoUBitDataAltL(RReadStream& aStream,TInt aSrceSizeInBytes,TUint32* aBase);
  2539. void DoStretchScanLine(TDes8& aBuf,TInt x,TInt y,TInt aClipStrchX,TInt aClipStrchLen,TInt aStretchLength,TInt aOrgX,TInt aOrgLen,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase,TLineScanningPosition& aLineScanningPosition) const;
  2540. void DoCompressScanLine(TDes8& aBuf,TInt x,TInt y,TInt aClipStrchX,TInt aClipStrchLen,TInt aStretchLength,TInt aOrgX,TInt aOrgLen,const TPoint& aDitherOffset,TDisplayMode aDispMode,TUint32* aBase,TLineScanningPosition& aLineScanningPosition) const;
  2541. TUint32 HashTo1bpp(TUint32 aGray256,TBool aOddX,TBool aOddY) const;
  2542. TUint32 HashTo2bpp(TUint32 aGray256,TInt aDitherIndex) const;
  2543. TBool IsWordMonochrome(TUint32 aWord) const;
  2544. TUint32* DataAddress() const;
  2545. static void WhiteFill(TUint8* aData,TInt aDataSize,TDisplayMode aDispMode);
  2546. static TInt ByteWidth(TInt aPixelWidth,TDisplayMode aDispMode);
  2547. static TInt Bpp(TDisplayMode aDispMode);
  2548. static TInt IsColor(TDisplayMode aDispMode);
  2549. static TDisplayMode DisplayMode(TInt aBpp,TInt aColor);
  2550. static TBitmapfileCompression CompressionType(TInt aBpp, TInt aColor);
  2551. TInt DoGetScanLinePtr(TUint32*& aSlptr, TPoint& aPixel,TInt aLength, TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2552. void GenerateLineFromCompressedSixteenBitData(TUint8* aDestBuffer, const TPoint& aPixel,TInt aLength, TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2553. TDisplayMode InitialDisplayMode() const;
  2554. TInt SetDisplayMode(TDisplayMode aDisplayMode, TUint32* aDataAddress);
  2555. TInt DisplayModeArgCheck(TDisplayMode aDisplayMode, TUint32* aDataAddress) const;
  2556. void ChangeDisplayMode( TDisplayMode aNewDisplayMode,
  2557. TInt aScanLineWidthNew,
  2558. TUint8* aDataAddrNew,
  2559. TUint32* aDataAddress,
  2560. TInt aYStart,
  2561. TInt aYInc,
  2562. TInt aYEnd);
  2563. void UpdateBitmapProperties(TDisplayMode aNewDisplayMode);
  2564. TInt SwapWidthAndHeight(TUint32* aDataAddress);
  2565. void CopyOldData(TUint8* aDest, const TUint8* aSrc, TInt aNewByteWidth, const TSize aNewSize);
  2566. void DecompressOldData(TUint8* aDest, TInt aNewByteWidth, const TSize aNewSize, HBufC8* aScanLineBuf);
  2567. TInt ResizeConditionsCheck(const TSize& aSize, TInt aNewByteWidth, TInt& aNewBitmapSize) const;
  2568. TInt Alloc(TInt aNewBitmapSize, const TSize& aNewSize, TUint8*& aNewBuf, TInt& aNewDataOffset);
  2569. void MoveData(TUint8* aDest, TUint8* aSrc, TInt aNewByteWidth, const TSize& aNewSize, HBufC8* aScanLineBuf);
  2570. void ReinitializeHeader(const TSize& aNewSize, TInt aNewBitmapSize);
  2571. void Free(TUint8* aSrc, TBool aLargeBmp, HBufC8* aScanLineBuf);
  2572. void GenerateLineFromCompressed24BitData(TUint8* aDestBuffer, const TPoint& aPixel,TInt aLength, TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2573. void GenerateLineFromCompressed32UBitData(TUint8* aDestBuffer, const TPoint& aPixel,TInt aLength, TUint32* aBase, TLineScanningPosition& aLineScanningPosition) const;
  2574. void AdjustXCoord(TInt& aX) const;
  2575. void GetLineScanPos(TLineScanningPosition& aLineScanPos,
  2576. const TCompressionBookMark*& aComprBookMark,
  2577. const TUint8* aBase) const;
  2578. void UpdateBookMark(const TLineScanningPosition& aLineScanPos,
  2579. TCompressionBookMark* aComprBookMark,
  2580. const TUint8* aBase) const;
  2581. void GetScanLineColor16MA(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TUint32* aScanlinePtr) const;
  2582. private:
  2583. TUid iUid;
  2584. struct TSettings
  2585. {
  2586. TSettings(TDisplayMode aDisplayMode);
  2587. void SetDisplayModes(TDisplayMode aDisplayMode);
  2588. void SetCurrentDisplayMode(TDisplayMode aDisplayMode);
  2589. TDisplayMode CurrentDisplayMode() const;
  2590. TDisplayMode InitialDisplayMode() const;
  2591. void SetLargeBitmap(TBool aLargeBitmap);
  2592. TBool IsLargeBitmap() const;
  2593. TUint32 iData;
  2594. } iSettings;
  2595. RHeap* iHeap;
  2596. CChunkPile* iPile;
  2597. TInt iByteWidth;
  2598. SEpocBitmapHeader iHeader;
  2599. RChunk iLargeChunk;
  2600. TInt iDataOffset;
  2601. TBool iIsCompressedInRAM;
  2602. };
  2603. #line 22 "C:\Symbian\9.1\S60_3rd\epoc32\include\fbs.h" /* stack depth 6 */
  2604. const TUid KCFbsFontUid = { 268435518 };
  2605. const TUid KMultiBitmapRomImageUid = { 268435521 };
  2606. const TUint32 KFontBitmapServerUidValue = 0x10003a16;
  2607. const TUid KFontBitmapServerUid = { KFontBitmapServerUidValue };
  2608. __declspec(dllexport) TInt FbsStartup();
  2609. __declspec(dllexport) void DummyReserved1();
  2610. class SCharWidth
  2611. {
  2612. public:
  2613. TInt iLeftAdjust;
  2614. TInt iRightAdjust;
  2615. TInt iMove;
  2616. TInt iWidth;
  2617. };
  2618. class CFbsRalCache;
  2619. class RFbsSession : protected RSessionBase
  2620. {
  2621. friend class RClean;
  2622. friend class TestFbs;
  2623. friend class CTBitmap;
  2624. friend class CTClean;
  2625. friend class CTFbs;
  2626. friend class CFbsBitmap;
  2627. friend class CFbsBitmapAsyncStreamer;
  2628. public:
  2629. __declspec(dllexport) RFbsSession();
  2630. __declspec(dllexport) static TInt Connect();
  2631. __declspec(dllexport) static TInt Connect(RFs& aFileServer);
  2632. __declspec(dllexport) static void Disconnect();
  2633. __declspec(dllexport) static RFbsSession* GetSession();
  2634. __declspec(dllexport) void CallBack();
  2635. __declspec(dllexport) void SetCallBack(TCallBack aCallBack);
  2636. __declspec(dllexport) void ResetCallBack();
  2637. __declspec(dllexport) TInt ResourceCount();
  2638. __declspec(dllexport) TInt SendCommand(TInt aMessage,TInt aInt0=0,TInt aInt1=0,TInt aInt2=0,TInt aInt3=0) const;
  2639. TInt SendCommand(TInt aMessage, const TIpcArgs& aArgs) const;
  2640. __declspec(dllexport) TVersion Version();
  2641. __declspec(dllexport) TUint8* HeapBase() const;
  2642. __declspec(dllexport) TInt GetHeapSizes(TInt& aDefaultHeap, TInt& aSmallBmpHeap, TInt& aBigBmpChunk);
  2643. TInt SessionHandle() const { return Handle(); }
  2644. TInt AllocScanLineBuffer(TInt aSize);
  2645. HBufC8* GetScanLineBuffer();
  2646. void SetCallBackPtr(TInt* aBitmapHandle)const;
  2647. HBufC8* GetDecompressionBuffer(TInt aSize);
  2648. private:
  2649. TBool LookupBitmapInROM(const TDesC& aFilename, TAny*& aAddr);
  2650. RFs& FileServer() { return *((RFs*)iSpare); }
  2651. static TInt DoAlloc(RFbsSession*& aNewSession);
  2652. TInt DoConnect(RFs& aFileServer);
  2653. private:
  2654. TInt iConnections;
  2655. mutable TCallBack iCallBack;
  2656. RChunk iSharedChunk;
  2657. RMutex iAddressMutex;
  2658. RChunk iLargeBitmapChunk;
  2659. RFs iFileServer;
  2660. CFbsRalCache* iRomFileAddrCache;
  2661. HBufC8* iDecompressionBuffer;
  2662. HBufC8* iScanLineBuffer;
  2663. TUint32* iSpare;
  2664. };
  2665. #line 133
  2666. class CFbsFont: public CFont
  2667. {
  2668. friend class CFbsTypefaceStore;
  2669. private:
  2670. virtual TUid DoTypeUid() const { return KCFbsFontUid; }
  2671. __declspec(dllexport) virtual TInt DoHeightInPixels() const;
  2672. __declspec(dllexport) virtual TInt DoAscentInPixels() const;
  2673. __declspec(dllexport) virtual TInt DoCharWidthInPixels(TChar aChar) const;
  2674. __declspec(dllexport) virtual TInt DoTextWidthInPixels(const TDesC& aText) const;
  2675. __declspec(dllexport) virtual TInt DoBaselineOffsetInPixels() const;
  2676. __declspec(dllexport) virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels) const;
  2677. __declspec(dllexport) virtual TInt DoTextCount(const TDesC& aText,TInt aWidthInPixels,TInt& aExcessWidthInPixels) const;
  2678. __declspec(dllexport) virtual TInt DoMaxCharWidthInPixels() const;
  2679. __declspec(dllexport) virtual TInt DoMaxNormalCharWidthInPixels() const;
  2680. __declspec(dllexport) virtual TFontSpec DoFontSpecInTwips() const;
  2681. __declspec(dllexport) virtual CFont::TCharacterDataAvailability DoGetCharacterData(TUint aCode, TOpenFontCharMetrics& aMetrics,
  2682. const TUint8*& aBitmap, TSize& aBitmapSize) const;
  2683. __declspec(dllexport) virtual TInt DoExtendedFunction(TUid aFunctionId, TAny* aParam = 0 ) const;
  2684. public:
  2685. __declspec(dllexport) TBool GetFontMetrics(TOpenFontMetrics& aMetrics) const;
  2686. __declspec(dllexport) TInt TextWidthInPixels(const TDesC& aText) const;
  2687. __declspec(dllexport) void TextWidthInPixels(const TDesC& aText,SCharWidth& aCharWidth) const;
  2688. __declspec(dllexport) TInt Handle() const;
  2689. __declspec(dllexport) TCharacterMetrics CharacterMetrics(TInt aCode,const TUint8*& aBytes) const;
  2690. __declspec(dllexport) TInt RawTextWidthInPixels(const TDesC& aText) const;
  2691. __declspec(dllexport) TBool GetFaceAttrib(TOpenFontFaceAttrib& aAttrib) const;
  2692. __declspec(dllexport) TBool IsOpenFont() const;
  2693. __declspec(dllexport) TBool HasCharacter(TInt aCode) const;
  2694. protected:
  2695. __declspec(dllexport) CFbsFont();
  2696. __declspec(dllexport) ~CFbsFont();
  2697. __declspec(dllexport) CFbsFont(const CFbsFont& aFont);
  2698. __declspec(dllexport) CBitmapFont* Address() const;
  2699. __declspec(dllexport) TInt Duplicate(TInt aHandle);
  2700. __declspec(dllexport) void Reset();
  2701. protected:
  2702. RFbsSession* iFbs;
  2703. CBitmapFont* iAddressPointer;
  2704. TInt iHandle;
  2705. TInt iServerHandle;
  2706. };
  2707. class CDirectFileStore;
  2708. #line 201
  2709. class CFbsBitmap : public CBase
  2710. {
  2711. friend class TBitmapUtil;
  2712. friend class CBitwiseBitmap;
  2713. friend class CFbsBitmapAsyncStreamer;
  2714. public:
  2715. __declspec(dllexport) CFbsBitmap();
  2716. __declspec(dllexport) ~CFbsBitmap();
  2717. __declspec(dllexport) void Reset();
  2718. __declspec(dllexport) static TInt ScanLineLength(TInt aLength,TDisplayMode aDispMode);
  2719. __declspec(dllexport) TDisplayMode DisplayMode() const;
  2720. __declspec(dllexport) TDisplayMode InitialDisplayMode() const;
  2721. __declspec(dllexport) TInt SetDisplayMode(TDisplayMode aDisplayMode);
  2722. __declspec(dllexport) TInt Create(const TSize& aSizeInPixels,TDisplayMode aDispMode);
  2723. __declspec(dllexport) TInt Duplicate(TInt aHandle);
  2724. __declspec(dllexport) TBool IsRomBitmap() const;
  2725. __declspec(dllexport) void SetRomBitmapL(CBitwiseBitmap* aRomBitmapPointer,TInt& aBitmapSizeInBytes);
  2726. __declspec(dllexport) TInt Load(const TDesC& aFileName,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
  2727. __declspec(dllexport) TInt Load(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2728. __declspec(dllexport) TInt LoadAndCompress(const TDesC& aFileName,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
  2729. __declspec(dllexport) TInt LoadAndCompress(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2730. __declspec(dllexport) TInt Load(RFile& aFile,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
  2731. __declspec(dllexport) TInt Load(RFile& aFile,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2732. __declspec(dllexport) TInt LoadAndCompress(RFile& aFile,TInt32 aId=0,TBool aShareIfLoaded=ETrue);
  2733. __declspec(dllexport) TInt LoadAndCompress(RFile& aFile,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2734. __declspec(dllexport) TInt Save(const TDesC& aFilename);
  2735. __declspec(dllexport) TInt Save(RFile& aFile);
  2736. __declspec(dllexport) static void StoreL(const TDesC& aFilename,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
  2737. __declspec(dllexport) static void StoreL(RFile& aFile,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
  2738.     __declspec(dllexport) void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,TDisplayMode aDispMode) const;
  2739.     __declspec(dllexport) void SetScanLine(TDes8& aBuf,TInt aY) const;
  2740. __declspec(dllexport) void GetVerticalScanLine(TDes8& aBuf,TInt aX,TDisplayMode aDispMode) const;
  2741. __declspec(dllexport) void GetVerticalScanLine(TDes8& aBuf,TInt aX,const TPoint& aDitherOffset,TDisplayMode aDispMode) const;
  2742. __declspec(dllexport) TInt Handle() const;
  2743. __declspec(dllexport) SEpocBitmapHeader Header() const;
  2744. __declspec(dllexport) TInt HorizontalPixelsToTwips(TInt aPixels) const;
  2745. __declspec(dllexport) TInt HorizontalTwipsToPixels(TInt aTwips) const;
  2746. __declspec(dllexport) void GetPixel(TRgb& aColor,const TPoint& aPixel) const;
  2747. __declspec(dllexport) TInt Resize(const TSize& aSizeInPixels);
  2748. __declspec(dllexport) TSize SizeInPixels() const;
  2749. __declspec(dllexport) TSize SizeInTwips() const;
  2750. __declspec(dllexport) void SetSizeInTwips(const MGraphicsDeviceMap* aMap);
  2751. __declspec(dllexport) void SetSizeInTwips(const TSize& aSizeInTwips);
  2752. __declspec(dllexport) void ExternalizeL(RWriteStream& aStream) const;
  2753. __declspec(dllexport) void ExternalizeRectangleL(RWriteStream& aStream,const TRect& aRect) const;
  2754. __declspec(dllexport) void InternalizeL(RReadStream& aStream);
  2755. __declspec(dllexport) TInt Compress();
  2756. __declspec(dllexport) TInt VerticalPixelsToTwips(TInt aPixels) const;
  2757. __declspec(dllexport) TInt VerticalTwipsToPixels(TInt aTwips) const;
  2758. __declspec(dllexport) static TBool IsFileInRom(const TDesC& aFilename,TUint32*& aWord);
  2759. __declspec(dllexport) static TBool IsFileInRom(RFile& aFile,TUint32*& aWord);
  2760. __declspec(dllexport) TBool IsMonochrome() const;
  2761. __declspec(dllexport) TBool IsLargeBitmap() const;
  2762. __declspec(dllexport) void PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const;
  2763. __declspec(dllexport) void SetPalette(CPalette* aPalette);
  2764. __declspec(dllexport) TInt GetPalette(CPalette*& aPalette) const;
  2765. __declspec(dllexport) TUint32* DataAddress() const;
  2766. __declspec(dllexport) TInt CreateHardwareBitmap(const TSize& aSizeInPixels,TDisplayMode aDispMode,TUid aCreatorUid);
  2767. __declspec(dllexport) TInt HardwareBitmapHandle() const;
  2768. __declspec(dllexport) void LockHeap(TBool aAlways=EFalse) const;
  2769. __declspec(dllexport) void UnlockHeap(TBool aAlways=EFalse) const;
  2770. __declspec(dllexport) void LockHeapLC(TBool aAlways=EFalse) const;
  2771. __declspec(dllexport) static void UnlockHeap(TAny* aFbsBitmap);
  2772. __declspec(dllexport) TBool IsCompressedInRAM() const;
  2773. __declspec(dllexport) TInt SwapWidthAndHeight();
  2774. __declspec(dllexport) static HBufC8* GetDecompressionBuffer(TInt aSize);
  2775. protected:
  2776.     __declspec(dllexport) void GetScanLine(TDes8& aBuf,const TPoint& aPixel,TInt aLength,const TPoint& aDitherOffset,TDisplayMode aDispMode) const;
  2777. CBitwiseBitmap* Address() const;
  2778. void DoSaveL(RFile& aFile);
  2779. TInt DoCreate(const TSize& aSizeInPixels,TDisplayMode aDispMode,TUid aCreatorUid);
  2780. private:
  2781. TInt DoLoad(RFile& aFile,TUint32* aRomPointer,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2782. TInt DoLoadAndCompress(RFile& aFile,TUint32* aRomPointer,TInt32 aId,TBool aShareIfLoaded,TUint aFileOffset);
  2783. TBool LoadShiftedRomBmpL(const TDesC& aFileName,TInt32 aId,TUint aFileOffset);
  2784. static void DoStoreL(CDirectFileStore* aFileStore,CFbsBitmap* aBitmap,TInt aNumSources,const TDesC* aSources[],TInt32 aSourceIds[]);
  2785. protected:
  2786. RFbsSession* iFbs;
  2787. CBitwiseBitmap* iAddressPointer;
  2788. CBitwiseBitmap* iRomPointer;
  2789. TInt iHandle;
  2790. TInt iServerHandle;
  2791. };
  2792. class CDirectFileStore;
  2793. class CFbsBitmapAsyncStreamer : public CBase
  2794. {
  2795. public:
  2796. enum TMode {ELoad, ESave};
  2797. public:
  2798. __declspec(dllexport) ~CFbsBitmapAsyncStreamer();
  2799. __declspec(dllexport) static CFbsBitmapAsyncStreamer* NewL(TMode aMode);
  2800. __declspec(dllexport) TInt Load(const TDesC& aFilename,TInt32 aId,TInt& aScanLines);
  2801. __declspec(dllexport) TBool LoadScanLinesL(TInt aNumberOfScanLines,CFbsBitmap*& aBitmap);
  2802. __declspec(dllexport) TInt Save(const TDesC& aFilename,CFbsBitmap* aBitmap,TInt32& aId,TInt& aScanLines);
  2803. __declspec(dllexport) TBool SaveScanLinesL(TInt aNumberOfScanLines);
  2804. private:
  2805. CFbsBitmapAsyncStreamer(TMode aMode);
  2806. void ConstructL();
  2807. void DoLoadL(const TDesC& aFilename,TInt32 aId);
  2808. void DoSaveL(RFile& aFile);
  2809. private:
  2810. RFbsSession* iFbs;
  2811. RStoreReadStream iReadStream;
  2812. RStoreWriteStream iWriteStream;
  2813. TStreamId iId;
  2814. CDirectFileStore* iStore;
  2815. TInt iCurrentScanLine;
  2816. TUint32* iScanLineBase;
  2817. CFbsBitmap* iBitmap;
  2818. SEpocBitmapHeader iHeader;
  2819. TDisplayMode iDispMode;
  2820. TMode iMode;
  2821. };
  2822. #line 348
  2823. class TBitmapUtil
  2824. {
  2825. public:
  2826. __declspec(dllexport) void Begin(const TPoint& aPosition);
  2827. __declspec(dllexport) void Begin(const TPoint& aPosition,const TBitmapUtil& aUtil);
  2828. __declspec(dllexport) void End();
  2829. __declspec(dllexport) TBitmapUtil(CFbsBitmap* aBitmap);
  2830. __declspec(dllexport) TUint32 GetPixel() const;
  2831. __declspec(dllexport) void SetPixel(TUint32 aValue);
  2832. __declspec(dllexport) void SetPixel(const TBitmapUtil& aSource);
  2833. __declspec(dllexport) void SetPos(const TPoint& aPosition);
  2834. __declspec(dllexport) void DecXPos();
  2835. __declspec(dllexport) void DecYPos();
  2836. __declspec(dllexport) void IncXPos();
  2837. __declspec(dllexport) void IncYPos();
  2838. private:
  2839. void DoBegin(const TPoint& aPosition,const TBitmapUtil* aUtil);
  2840. private:
  2841. CFbsBitmap* iFbsBitmap;
  2842. TUint32* iWordPos;
  2843. TUint32* iMinWordPos;
  2844. TUint32* iMaxWordPos;
  2845. TInt iBpp;
  2846. TInt iPixelShift;
  2847. TInt iBitShift;
  2848. TUint32 iMask;
  2849. TInt iScanlineWordLength;
  2850. TBool iHeapLocked;
  2851. };
  2852. class TFontInfo;
  2853. class CFbsTypefaceStore : public CTypefaceStore
  2854. {
  2855. public:
  2856. __declspec(dllexport) static CFbsTypefaceStore* NewL(CGraphicsDevice* aDevice);
  2857. __declspec(dllexport) ~CFbsTypefaceStore();
  2858. __declspec(dllexport) TInt AddFile(const TDesC& aName,TInt& aId);
  2859. __declspec(dllexport) TInt InstallFile(const TDesC& aName,TInt& aId);
  2860. __declspec(dllexport) void RemoveFile(TInt aId=0);
  2861. __declspec(dllexport) virtual TInt GetNearestFontInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
  2862. __declspec(dllexport) TInt GetNearestFontInPixels(CFont*& aFont, const TFontSpec& aFontSpec);
  2863. __declspec(dllexport) virtual TInt GetNearestFontToDesignHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec);
  2864. __declspec(dllexport) TInt GetNearestFontToDesignHeightInPixels(CFont*& aFont, const TFontSpec& aFontSpec);
  2865. __declspec(dllexport) virtual TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
  2866. __declspec(dllexport) TInt GetNearestFontToMaxHeightInPixels(CFont*& aFont, const TFontSpec& aFontSpec, TInt aMaxHeight);
  2867. __declspec(dllexport) TInt GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle);
  2868. __declspec(dllexport) virtual TInt NumTypefaces() const;
  2869. __declspec(dllexport) virtual void TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const;
  2870. __declspec(dllexport) virtual TInt FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const;
  2871. __declspec(dllexport) TInt FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const;
  2872. __declspec(dllexport) TGlyphBitmapType DefaultBitmapType() const;
  2873. __declspec(dllexport) void SetDefaultBitmapType(TGlyphBitmapType aType) const;
  2874. __declspec(dllexport) void SetFontNameAliasL(const TDesC& aFontAlias,const TDesC& aFontName) const;
  2875. __declspec(dllexport) static void RemoveFontFileLocksL();
  2876. __declspec(dllexport) static void RemoveFontFileLocksL(const TDesC& aDrive, TBool aAllFonts);
  2877. __declspec(dllexport) static void RemoveFontFileLocksL(const TDesC& aFileName);
  2878. private:
  2879. CFbsTypefaceStore(CGraphicsDevice* aDevice);
  2880. TInt CreateFont(CFont*& aFont,const TFontInfo& aFontInfo);
  2881. TInt FontHeight(TInt aTypefaceIndex,TInt aHeightIndex,TInt aMessage) const;
  2882. void SetSize() const;
  2883. TInt GetNearestFontToDesignHeightInTwipsL(CFont*& aFont,const TFontSpec& aFontSpec);
  2884. private:
  2885. RFbsSession* iFbs;
  2886. CGraphicsDevice* iDevice;
  2887. CFontCache* iTwipsCache;
  2888. };
  2889. class CDitherColor256;
  2890. class CFbsColor256BitmapUtil : public CBase
  2891. {
  2892. public:
  2893. enum TDither
  2894. {
  2895. ENoDither,
  2896. EFloydSteinberg
  2897. };
  2898. public:
  2899. __declspec(dllexport) static CFbsColor256BitmapUtil* NewL(const CPalette* aPalette);
  2900. __declspec(dllexport) TInt CopyBitmap(CFbsBitmap* aColor256Destination,CFbsBitmap* aSource,TDither aDither=ENoDither);
  2901. ~CFbsColor256BitmapUtil();
  2902. private:
  2903. CFbsColor256BitmapUtil();
  2904. private:
  2905. TColor256Util* iColor256Util;
  2906. CDitherColor256* iDither;
  2907. };
  2908. #line 20 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitdev.h" /* stack depth 5 */
  2909. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitbase.h" /* stack depth 6 */
  2910. #line 14
  2911. class TSpriteBase
  2912. {
  2913. public:
  2914. virtual void Hide(const TRect& aRect,const TRegion* aRegion)=0;
  2915. virtual void Reveal(const TRect& aRect,const TRegion* aRegion)=0;
  2916. };
  2917. #line 21 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitdev.h" /* stack depth 5 */
  2918. #line 1 "C:\Symbian\9.1\S60_3rd\epoc32\include\bitstd.h" /* stack depth 6 */
  2919. #line 18
  2920. class CFbsBitGcFont : public CFbsFont
  2921. {
  2922. public:
  2923. __declspec(dllexport) CFbsBitGcFont();
  2924. __declspec(dllexport) virtual ~CFbsBitGcFont();
  2925. __declspec(dllexport) CBitmapFont* Address() const;
  2926. __declspec(dllexport) TInt Duplicate(TInt aHandle);
  2927. __declspec(dllexport) void Reset();
  2928. __declspec(dllexport) void operator=(const CFbsBitGcFont& aFont);
  2929. protected:
  2930. TBool iCopy;
  2931. };
  2932. class CFbsBitGcBitmap : public CFbsBitmap
  2933. {
  2934. public:
  2935. __declspec(dllexport) CBitwiseBitmap* Address() const;
  2936. __declspec(dllexport) void LockHeap() const;
  2937. __declspec(dllexport) void UnlockHeap() const;
  2938. };
  2939. class TEllipse
  2940. {
  2941. public:
  2942. enum TEllipseStatus
  2943. {
  2944. EInitialised,
  2945. EFirstSector,
  2946. ESecondSector,
  2947. EComplete,
  2948. ELine
  2949. };
  2950. public:
  2951. __declspec(dllexport) void Construct(const TRect& aRect);
  2952. __declspec(dllexport) TBool SingleStep(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
  2953. __declspec(dllexport) TBool NextStep(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
  2954. __declspec(dllexport) TPoint Intersection(const TRect& aRect,const TPoint& aPoint);
  2955. protected:
  2956. __declspec(dllexport) TBool Output(TPoint& aTopLeft,TPoint& aTopRight,TPoint& aBottomLeft,TPoint& aBottomRight);
  2957. protected:
  2958. TEllipseStatus iStatus;
  2959. TInt iA;
  2960. TInt iB;
  2961. TInt64 iASquared;
  2962. TInt64 iBSquared;
  2963. TInt64 iASquBSqu;
  2964. TInt iX;
  2965. TInt iY;
  2966. TInt iXAdj;
  2967. TInt iYAdj;
  2968. TPoint iOffset;
  2969. TInt64 iD1;
  2970. TInt64 iD2;
  2971. };
  2972. class CPolygonFiller : public CBase
  2973. {
  2974. public:
  2975. enum TUsage
  2976. {
  2977. EGetAllPixelRunsSequentially,
  2978. EGetPixelRunsSequentiallyForSpecifiedScanLines
  2979. };
  2980. public:
  2981. __declspec(dllexport) CPolygonFiller();
  2982. __declspec(dllexport) ~CPolygonFiller();
  2983. __declspec(dllexport) void Construct(const CArrayFix<TPoint> * aPointArray,CGraphicsContext::TFillRule aFillRule,TUsage aUsage=EGetAllPixelRunsSequentially);
  2984. __declspec(dllexport) void Construct(const TPoint* aPointList,TInt aNumPoints, CGraphicsContext::TFillRule aFillRule, TUsage aUsage=EGetAllPixelRunsSequentially);
  2985. __declspec(dllexport) void Reset();
  2986. __declspec(dllexport) void GetNextPixelRun(TBool& aExists, TInt& aScanLine, TInt& aStart, TInt& aEnd);
  2987. __declspec(dllexport) void GetNextPixelRunOnSpecifiedScanLine(TBool& aExists, TInt aScanLine, TInt& aStart, TInt& aEnd);
  2988. private: