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

Symbian

开发平台:

C/C++

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