Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: xfa/fxbarcode/oned/BC_OneDimWriter.h

Issue 2223213002: Refactor fx_ge part 3 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/fxge/include/fx_ge.h" 10 #include "core/fxge/include/cfx_renderdevice.h"
11 #include "xfa/fxbarcode/BC_Writer.h" 11 #include "xfa/fxbarcode/BC_Writer.h"
12 #include "xfa/fxbarcode/include/BC_Library.h" 12 #include "xfa/fxbarcode/include/BC_Library.h"
13 13
14 class CBC_CommonBitMatrix; 14 class CBC_CommonBitMatrix;
15 class CFX_Font; 15 class CFX_Font;
16 class CFX_RenderDevice; 16 class CFX_RenderDevice;
17 17
18 class CBC_OneDimWriter : public CBC_Writer { 18 class CBC_OneDimWriter : public CBC_Writer {
19 public: 19 public:
20 CBC_OneDimWriter(); 20 CBC_OneDimWriter();
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 int32_t m_iContentLen; 107 int32_t m_iContentLen;
108 FX_BOOL m_bLeftPadding; 108 FX_BOOL m_bLeftPadding;
109 FX_BOOL m_bRightPadding; 109 FX_BOOL m_bRightPadding;
110 CBC_CommonBitMatrix* m_output; 110 CBC_CommonBitMatrix* m_output;
111 int32_t m_barWidth; 111 int32_t m_barWidth;
112 int32_t m_multiple; 112 int32_t m_multiple;
113 FX_FLOAT m_outputHScale; 113 FX_FLOAT m_outputHScale;
114 }; 114 };
115 115
116 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_ 116 #endif // XFA_FXBARCODE_ONED_BC_ONEDIMWRITER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698