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

Side by Side Diff: xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMatrix.h

Issue 842043002: Organize barcode codes into modules. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: rebase Created 5 years, 11 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
(Empty)
1 // Copyright 2014 PDFium Authors. All rights reserved.
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 _BC_BARCODEMATRIX_H_
8 #define _BC_BARCODEMATRIX_H_
9 class CBC_BarcodeRow;
10 class CBC_BarcodeMatrix;
11 class CBC_BarcodeMatrix : public CFX_Object
12 {
13 public:
14 CBC_BarcodeMatrix();
15 CBC_BarcodeMatrix(FX_INT32 height, FX_INT32 width);
16 virtual ~CBC_BarcodeMatrix();
17 void set(FX_INT32 x, FX_INT32 y, FX_BYTE value);
18 void setMatrix(FX_INT32 x, FX_INT32 y, FX_BOOL black);
19 void startRow();
20 CBC_BarcodeRow* getCurrentRow();
21 CFX_ByteArray& getMatrix();
22 CFX_ByteArray& getScaledMatrix(FX_INT32 scale);
23 CFX_ByteArray& getScaledMatrix(FX_INT32 xScale, FX_INT32 yScale);
24 FX_INT32 getWidth();
25 FX_INT32 getHeight();
26 private:
27 CFX_PtrArray m_matrix;
28 CFX_ByteArray m_matrixOut;
29 FX_INT32 m_currentRow;
30 FX_INT32 m_height;
31 FX_INT32 m_width;
32 FX_INT32 m_outWidth;
33 FX_INT32 m_outHeight;
34 };
35 #endif
OLDNEW
« no previous file with comments | « xfa/src/fxbarcode/src/include/BC_PDF417.h ('k') | xfa/src/fxbarcode/src/include/BC_PDF417BarcodeMetadata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698