| Index: xfa/include/fwl/basewidget/fwl_barcode.h
|
| diff --git a/xfa/include/fwl/basewidget/fwl_barcode.h b/xfa/include/fwl/basewidget/fwl_barcode.h
|
| index b55630f4e2cdaeea2b25616b4741dace33009e59..2b3654d7b2a2a27b7c63ffeb5f400f6580d24678 100644
|
| --- a/xfa/include/fwl/basewidget/fwl_barcode.h
|
| +++ b/xfa/include/fwl/basewidget/fwl_barcode.h
|
| @@ -1,60 +1,60 @@
|
| -// Copyright 2014 PDFium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
| -
|
| -#ifndef _FWL_BARCODE_H
|
| -#define _FWL_BARCODE_H
|
| -#include "fwl_edit.h"
|
| -class CFWL_WidgetImpProperties;
|
| -class IFWL_Widget;
|
| -class IFWL_BarcodeDP;
|
| -class IFWL_Barcode;
|
| -#define FWL_CLASS_Barcode L"FWL_BARCODE"
|
| -#define FWL_CLASSHASH_Barcode 366886968
|
| -#define FWL_BCDATTRIBUTE_CHARENCODING (1L << 0)
|
| -#define FWL_BCDATTRIBUTE_MODULEHEIGHT (1L << 1)
|
| -#define FWL_BCDATTRIBUTE_MODULEWIDTH (1L << 2)
|
| -#define FWL_BCDATTRIBUTE_DATALENGTH (1L << 3)
|
| -#define FWL_BCDATTRIBUTE_CALCHECKSUM (1L << 4)
|
| -#define FWL_BCDATTRIBUTE_PRINTCHECKSUM (1L << 5)
|
| -#define FWL_BCDATTRIBUTE_TEXTLOCATION (1L << 6)
|
| -#define FWL_BCDATTRIBUTE_WIDENARROWRATIO (1L << 7)
|
| -#define FWL_BCDATTRIBUTE_STARTCHAR (1L << 8)
|
| -#define FWL_BCDATTRIBUTE_ENDCHAR (1L << 9)
|
| -#define FWL_BCDATTRIBUTE_VERSION (1L << 10)
|
| -#define FWL_BCDATTRIBUTE_ECLEVEL (1L << 11)
|
| -#define FWL_BCDATTRIBUTE_TRUNCATED (1L << 12)
|
| -#define FWL_PART_BCD_Border 1
|
| -#define FWL_PART_BCD_Edge 2
|
| -#define FWL_PART_BCD_Background 3
|
| -#define FWL_BCUPDATECMD_Data FWL_WGTUPDATECMD_User
|
| -class IFWL_BarcodeDP : public IFWL_EditDP {
|
| - public:
|
| - virtual BC_CHAR_ENCODING GetCharEncoding() = 0;
|
| - virtual int32_t GetModuleHeight() = 0;
|
| - virtual int32_t GetModuleWidth() = 0;
|
| - virtual int32_t GetDataLength() = 0;
|
| - virtual int32_t GetCalChecksum() = 0;
|
| - virtual FX_BOOL GetPrintChecksum() = 0;
|
| - virtual BC_TEXT_LOC GetTextLocation() = 0;
|
| - virtual int32_t GetWideNarrowRatio() = 0;
|
| - virtual FX_CHAR GetStartChar() = 0;
|
| - virtual FX_CHAR GetEndChar() = 0;
|
| - virtual int32_t GetVersion() = 0;
|
| - virtual int32_t GetErrorCorrectionLevel() = 0;
|
| - virtual FX_BOOL GetTruncated() = 0;
|
| - virtual FX_DWORD GetBarcodeAttributeMask() = 0;
|
| -};
|
| -
|
| -class IFWL_Barcode : public IFWL_Edit {
|
| - public:
|
| - static IFWL_Barcode* Create(const CFWL_WidgetImpProperties& properties);
|
| - void SetType(BC_TYPE type);
|
| - FX_BOOL IsProtectedType();
|
| -
|
| - protected:
|
| - IFWL_Barcode();
|
| -};
|
| -#endif
|
| +// Copyright 2014 PDFium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
| +
|
| +#ifndef _FWL_BARCODE_H
|
| +#define _FWL_BARCODE_H
|
| +#include "fwl_edit.h"
|
| +class CFWL_WidgetImpProperties;
|
| +class IFWL_Widget;
|
| +class IFWL_BarcodeDP;
|
| +class IFWL_Barcode;
|
| +#define FWL_CLASS_Barcode L"FWL_BARCODE"
|
| +#define FWL_CLASSHASH_Barcode 366886968
|
| +#define FWL_BCDATTRIBUTE_CHARENCODING (1L << 0)
|
| +#define FWL_BCDATTRIBUTE_MODULEHEIGHT (1L << 1)
|
| +#define FWL_BCDATTRIBUTE_MODULEWIDTH (1L << 2)
|
| +#define FWL_BCDATTRIBUTE_DATALENGTH (1L << 3)
|
| +#define FWL_BCDATTRIBUTE_CALCHECKSUM (1L << 4)
|
| +#define FWL_BCDATTRIBUTE_PRINTCHECKSUM (1L << 5)
|
| +#define FWL_BCDATTRIBUTE_TEXTLOCATION (1L << 6)
|
| +#define FWL_BCDATTRIBUTE_WIDENARROWRATIO (1L << 7)
|
| +#define FWL_BCDATTRIBUTE_STARTCHAR (1L << 8)
|
| +#define FWL_BCDATTRIBUTE_ENDCHAR (1L << 9)
|
| +#define FWL_BCDATTRIBUTE_VERSION (1L << 10)
|
| +#define FWL_BCDATTRIBUTE_ECLEVEL (1L << 11)
|
| +#define FWL_BCDATTRIBUTE_TRUNCATED (1L << 12)
|
| +#define FWL_PART_BCD_Border 1
|
| +#define FWL_PART_BCD_Edge 2
|
| +#define FWL_PART_BCD_Background 3
|
| +#define FWL_BCUPDATECMD_Data FWL_WGTUPDATECMD_User
|
| +class IFWL_BarcodeDP : public IFWL_EditDP {
|
| + public:
|
| + virtual BC_CHAR_ENCODING GetCharEncoding() = 0;
|
| + virtual int32_t GetModuleHeight() = 0;
|
| + virtual int32_t GetModuleWidth() = 0;
|
| + virtual int32_t GetDataLength() = 0;
|
| + virtual int32_t GetCalChecksum() = 0;
|
| + virtual FX_BOOL GetPrintChecksum() = 0;
|
| + virtual BC_TEXT_LOC GetTextLocation() = 0;
|
| + virtual int32_t GetWideNarrowRatio() = 0;
|
| + virtual FX_CHAR GetStartChar() = 0;
|
| + virtual FX_CHAR GetEndChar() = 0;
|
| + virtual int32_t GetVersion() = 0;
|
| + virtual int32_t GetErrorCorrectionLevel() = 0;
|
| + virtual FX_BOOL GetTruncated() = 0;
|
| + virtual FX_DWORD GetBarcodeAttributeMask() = 0;
|
| +};
|
| +
|
| +class IFWL_Barcode : public IFWL_Edit {
|
| + public:
|
| + static IFWL_Barcode* Create(const CFWL_WidgetImpProperties& properties);
|
| + void SetType(BC_TYPE type);
|
| + FX_BOOL IsProtectedType();
|
| +
|
| + protected:
|
| + IFWL_Barcode();
|
| +};
|
| +#endif
|
|
|