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 XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ | 7 #ifndef XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ |
8 #define XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ | 8 #define XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ |
9 | 9 |
10 #include "core/include/fxge/fx_ge.h" | 10 #include "core/include/fxge/fx_ge.h" |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 int32_t startColor, | 102 int32_t startColor, |
103 int32_t& e); | 103 int32_t& e); |
104 FX_WCHAR Upper(FX_WCHAR ch); | 104 FX_WCHAR Upper(FX_WCHAR ch); |
105 | 105 |
106 FX_BOOL m_bPrintChecksum; | 106 FX_BOOL m_bPrintChecksum; |
107 int32_t m_iDataLenth; | 107 int32_t m_iDataLenth; |
108 FX_BOOL m_bCalcChecksum; | 108 FX_BOOL m_bCalcChecksum; |
109 CFX_Font* m_pFont; | 109 CFX_Font* m_pFont; |
110 FX_FLOAT m_fFontSize; | 110 FX_FLOAT m_fFontSize; |
111 int32_t m_iFontStyle; | 111 int32_t m_iFontStyle; |
112 FX_DWORD m_fontColor; | 112 uint32_t m_fontColor; |
113 BC_TEXT_LOC m_locTextLoc; | 113 BC_TEXT_LOC m_locTextLoc; |
114 int32_t m_iContentLen; | 114 int32_t m_iContentLen; |
115 FX_BOOL m_bLeftPadding; | 115 FX_BOOL m_bLeftPadding; |
116 FX_BOOL m_bRightPadding; | 116 FX_BOOL m_bRightPadding; |
117 CBC_CommonBitMatrix* m_output; | 117 CBC_CommonBitMatrix* m_output; |
118 int32_t m_barWidth; | 118 int32_t m_barWidth; |
119 int32_t m_multiple; | 119 int32_t m_multiple; |
120 FX_FLOAT m_outputHScale; | 120 FX_FLOAT m_outputHScale; |
121 }; | 121 }; |
122 | 122 |
123 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ | 123 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ |
OLD | NEW |