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

Side by Side Diff: xfa/src/fxbarcode/BC_Writer.cpp

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
« no previous file with comments | « xfa/src/fxbarcode/BC_Writer.h ('k') | xfa/src/fxbarcode/barcode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "barcode.h" 7 #include "barcode.h"
8 #include "include/BC_Writer.h" 8 #include "BC_Writer.h"
9 CBC_Writer::CBC_Writer() 9 CBC_Writer::CBC_Writer()
10 { 10 {
11 m_CharEncoding = 0; 11 m_CharEncoding = 0;
12 m_ModuleHeight = 1; 12 m_ModuleHeight = 1;
13 m_ModuleWidth = 1; 13 m_ModuleWidth = 1;
14 m_Height = 320; 14 m_Height = 320;
15 m_Width = 640; 15 m_Width = 640;
16 m_colorSpace = FXDIB_Argb; 16 m_colorSpace = FXDIB_Argb;
17 m_barColor = 0xff000000; 17 m_barColor = 0xff000000;
18 m_backgroundColor = 0xffffffff; 18 m_backgroundColor = 0xffffffff;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(FX_INT32 width, FX_INT32 height) 62 CFX_DIBitmap* CBC_Writer::CreateDIBitmap(FX_INT32 width, FX_INT32 height)
63 { 63 {
64 CFX_DIBitmap *pDIBitmap = NULL; 64 CFX_DIBitmap *pDIBitmap = NULL;
65 pDIBitmap = FX_NEW CFX_DIBitmap; 65 pDIBitmap = FX_NEW CFX_DIBitmap;
66 if(pDIBitmap != NULL) { 66 if(pDIBitmap != NULL) {
67 pDIBitmap->Create(width, height, m_colorSpace); 67 pDIBitmap->Create(width, height, m_colorSpace);
68 } 68 }
69 return pDIBitmap; 69 return pDIBitmap;
70 } 70 }
OLDNEW
« no previous file with comments | « xfa/src/fxbarcode/BC_Writer.h ('k') | xfa/src/fxbarcode/barcode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698