• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 The PDFium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #ifndef FXBARCODE_BC_WRITER_H_
8 #define FXBARCODE_BC_WRITER_H_
9 
10 #include "core/fxge/dib/fx_dib.h"
11 #include "fxbarcode/BC_Library.h"
12 
13 class CBC_Writer {
14  public:
15   CBC_Writer();
16   virtual ~CBC_Writer();
17 
18   bool SetModuleHeight(int32_t moduleHeight);
19   bool SetModuleWidth(int32_t moduleWidth);
20   void SetHeight(int32_t height);
21   void SetWidth(int32_t width);
22 
23   virtual void SetTextLocation(BC_TEXT_LOC location);
24   virtual bool SetWideNarrowRatio(int8_t ratio);
25   virtual bool SetStartChar(char start);
26   virtual bool SetEndChar(char end);
27   virtual bool SetErrorCorrectionLevel(int32_t level);
28 
29  protected:
30   static const FX_ARGB kBarColor = 0xff000000;
31   static const FX_ARGB kBackgroundColor = 0xffffffff;
32 
33   int32_t m_ModuleHeight = 1;
34   int32_t m_ModuleWidth = 1;
35   int32_t m_Height = 320;
36   int32_t m_Width = 640;
37 };
38 
39 #endif  // FXBARCODE_BC_WRITER_H_
40