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

Symbian

开发平台:

C/C++

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