| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef _BC_ONEDIMWRITER_H_ | 7 #ifndef _BC_ONEDIMWRITER_H_ |
| 8 #define _BC_ONEDIMWRITER_H_ | 8 #define _BC_ONEDIMWRITER_H_ |
| 9 class CBC_Writer; | 9 class CBC_Writer; |
| 10 class CBC_CommonBitMatrix; | 10 class CBC_CommonBitMatrix; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 FX_INT32 m_multiple; | 61 FX_INT32 m_multiple; |
| 62 FX_FLOAT m_outputHScale; | 62 FX_FLOAT m_outputHScale; |
| 63 void CalcTextInfo(const CFX_ByteString &text, FXTEXT_
CHARPOS *charPos, CFX_Font *cFont, FX_FLOAT geWidth, FX_INT32 fontSize, FX_FLOAT
&charsLen); | 63 void CalcTextInfo(const CFX_ByteString &text, FXTEXT_
CHARPOS *charPos, CFX_Font *cFont, FX_FLOAT geWidth, FX_INT32 fontSize, FX_FLOAT
&charsLen); |
| 64 virtual void ShowChars(FX_WSTR contents, CFX_DIBitmap *pOutBitmap, CF
X_RenderDevice *device, const CFX_Matrix* matrix, FX_INT32 barWidth, FX_INT32 mu
ltiple, FX_INT32 &e); | 64 virtual void ShowChars(FX_WSTR contents, CFX_DIBitmap *pOutBitmap, CF
X_RenderDevice *device, const CFX_Matrix* matrix, FX_INT32 barWidth, FX_INT32 mu
ltiple, FX_INT32 &e); |
| 65 virtual void ShowBitmapChars(CFX_DIBitmap *pOutBitmap, const CFX_Byte
String str, FX_FLOAT geWidth, FXTEXT_CHARPOS* pCharPos, FX_FLOAT locX, FX_FLOAT
locY, FX_INT32 barWidth); | 65 virtual void ShowBitmapChars(CFX_DIBitmap *pOutBitmap, const CFX_Byte
String str, FX_FLOAT geWidth, FXTEXT_CHARPOS* pCharPos, FX_FLOAT locX, FX_FLOAT
locY, FX_INT32 barWidth); |
| 66 virtual void ShowDeviceChars(CFX_RenderDevice *device, const CFX_Matrix*
matrix, const CFX_ByteString str, FX_FLOAT geWidth, FXTEXT_CHARPOS* pCharPos, FX
_FLOAT locX, FX_FLOAT locY, FX_INT32 barWidth); | 66 virtual void ShowDeviceChars(CFX_RenderDevice *device, const CFX_Matrix*
matrix, const CFX_ByteString str, FX_FLOAT geWidth, FXTEXT_CHARPOS* pCharPos, FX
_FLOAT locX, FX_FLOAT locY, FX_INT32 barWidth); |
| 67 FX_INT32 AppendPattern(FX_BYTE* target, FX_INT32 pos, const FX_IN
T32* pattern, FX_INT32 patternLength, FX_INT32 startColor, FX_INT32 &e); | 67 FX_INT32 AppendPattern(FX_BYTE* target, FX_INT32 pos, const FX_IN
T32* pattern, FX_INT32 patternLength, FX_INT32 startColor, FX_INT32 &e); |
| 68 FX_WCHAR Upper(FX_WCHAR ch); | 68 FX_WCHAR Upper(FX_WCHAR ch); |
| 69 }; | 69 }; |
| 70 #endif | 70 #endif |
| OLD | NEW |