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_SRC_FWL_SRC_BASEWIDGET_FXMATH_BARCODEIMP_H_ | 7 #ifndef XFA_SRC_FWL_BASEWIDGET_FXMATH_BARCODEIMP_H_ |
8 #define XFA_SRC_FWL_SRC_BASEWIDGET_FXMATH_BARCODEIMP_H_ | 8 #define XFA_SRC_FWL_BASEWIDGET_FXMATH_BARCODEIMP_H_ |
9 | 9 |
10 #include "xfa/include/fwl/basewidget/fxmath_barcode.h" | 10 #include "xfa/include/fwl/basewidget/fxmath_barcode.h" |
11 | 11 |
12 class CFX_Barcode : public IFX_Barcode { | 12 class CFX_Barcode : public IFX_Barcode { |
13 public: | 13 public: |
14 CFX_Barcode(); | 14 CFX_Barcode(); |
15 ~CFX_Barcode(); | 15 ~CFX_Barcode(); |
16 FX_BOOL Crreate(BC_TYPE type); | 16 FX_BOOL Crreate(BC_TYPE type); |
17 virtual void Release(); | 17 virtual void Release(); |
18 virtual BC_TYPE GetType(); | 18 virtual BC_TYPE GetType(); |
(...skipping 27 matching lines...) Expand all Loading... |
46 virtual FX_BOOL SetStartChar(FX_CHAR start); | 46 virtual FX_BOOL SetStartChar(FX_CHAR start); |
47 virtual FX_BOOL SetEndChar(FX_CHAR end); | 47 virtual FX_BOOL SetEndChar(FX_CHAR end); |
48 virtual FX_BOOL SetVersion(int32_t version); | 48 virtual FX_BOOL SetVersion(int32_t version); |
49 virtual FX_BOOL SetErrorCorrectionLevel(int32_t level); | 49 virtual FX_BOOL SetErrorCorrectionLevel(int32_t level); |
50 virtual FX_BOOL SetTruncated(FX_BOOL truncated); | 50 virtual FX_BOOL SetTruncated(FX_BOOL truncated); |
51 | 51 |
52 protected: | 52 protected: |
53 CBC_CodeBase* m_pBCEngine; | 53 CBC_CodeBase* m_pBCEngine; |
54 }; | 54 }; |
55 | 55 |
56 #endif // XFA_SRC_FWL_SRC_BASEWIDGET_FXMATH_BARCODEIMP_H_ | 56 #endif // XFA_SRC_FWL_BASEWIDGET_FXMATH_BARCODEIMP_H_ |
OLD | NEW |