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

Side by Side Diff: xfa/fwl/basewidget/fwl_barcodeimp.h

Issue 1890443002: Remove IFX_Barcode. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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.gyp ('k') | xfa/fwl/basewidget/fwl_barcodeimp.cpp » ('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 #ifndef XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_ 7 #ifndef XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_
8 #define XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_ 8 #define XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_
9 9
10 #include "xfa/fwl/basewidget/fwl_editimp.h" 10 #include "xfa/fwl/basewidget/fwl_editimp.h"
11 #include "xfa/fwl/basewidget/ifwl_barcode.h" 11 #include "xfa/fwl/basewidget/ifwl_barcode.h"
12 #include "xfa/fwl/basewidget/ifwl_scrollbar.h" 12 #include "xfa/fwl/basewidget/ifwl_scrollbar.h"
13 #include "xfa/fwl/basewidget/ifx_barcode.h"
14 13
15 class CFWL_WidgetImpProperties; 14 class CFWL_WidgetImpProperties;
16 class CFWL_BarcodeImpDelegate; 15 class CFWL_BarcodeImpDelegate;
16 class CFX_Barcode;
17 class IFWL_Widget; 17 class IFWL_Widget;
18 18
19 #define XFA_BCS_NeedUpdate 0x0001 19 #define XFA_BCS_NeedUpdate 0x0001
20 #define XFA_BCS_EncodeSuccess 0x0002 20 #define XFA_BCS_EncodeSuccess 0x0002
21 21
22 class CFWL_BarcodeImp : public CFWL_EditImp { 22 class CFWL_BarcodeImp : public CFWL_EditImp {
23 public: 23 public:
24 CFWL_BarcodeImp(const CFWL_WidgetImpProperties& properties, 24 CFWL_BarcodeImp(const CFWL_WidgetImpProperties& properties,
25 IFWL_Widget* pOuter); 25 IFWL_Widget* pOuter);
26 virtual ~CFWL_BarcodeImp(); 26 ~CFWL_BarcodeImp() override;
27 virtual FWL_ERR GetClassName(CFX_WideString& wsClass) const; 27
28 virtual uint32_t GetClassID() const; 28 FWL_ERR GetClassName(CFX_WideString& wsClass) const override;
29 virtual FWL_ERR Initialize(); 29 uint32_t GetClassID() const override;
30 virtual FWL_ERR Finalize(); 30 FWL_ERR Initialize() override;
31 virtual FWL_ERR Update(); 31 FWL_ERR Finalize() override;
32 virtual FWL_ERR DrawWidget(CFX_Graphics* pGraphics, 32 FWL_ERR Update() override;
33 const CFX_Matrix* pMatrix = NULL); 33 FWL_ERR DrawWidget(CFX_Graphics* pGraphics,
34 virtual FWL_ERR SetText(const CFX_WideString& wsText); 34 const CFX_Matrix* pMatrix = nullptr) override;
35 virtual void SetType(BC_TYPE type); 35 FWL_ERR SetText(const CFX_WideString& wsText) override;
36 void SetType(BC_TYPE type);
36 FX_BOOL IsProtectedType(); 37 FX_BOOL IsProtectedType();
37 38
38 protected: 39 protected:
40 friend class CFWL_BarcodeImpDelegate;
41
39 void GenerateBarcodeImageCache(); 42 void GenerateBarcodeImageCache();
40 void CreateBarcodeEngine(); 43 void CreateBarcodeEngine();
41 void ReleaseBarcodeEngine(); 44 void ReleaseBarcodeEngine();
42 IFX_Barcode* m_pBarcodeEngine; 45
46 CFX_Barcode* m_pBarcodeEngine;
43 uint32_t m_dwStatus; 47 uint32_t m_dwStatus;
44 BC_TYPE m_type; 48 BC_TYPE m_type;
45 friend class CFWL_BarcodeImpDelegate;
46 }; 49 };
47 50
48 class CFWL_BarcodeImpDelegate : public CFWL_EditImpDelegate { 51 class CFWL_BarcodeImpDelegate : public CFWL_EditImpDelegate {
49 public: 52 public:
50 CFWL_BarcodeImpDelegate(CFWL_BarcodeImp* pOwner); 53 CFWL_BarcodeImpDelegate(CFWL_BarcodeImp* pOwner);
51 FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override; 54 FWL_ERR OnProcessEvent(CFWL_Event* pEvent) override;
52 }; 55 };
53 56
54 #endif // XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_ 57 #endif // XFA_FWL_BASEWIDGET_FWL_BARCODEIMP_H_
OLDNEW
« no previous file with comments | « xfa.gyp ('k') | xfa/fwl/basewidget/fwl_barcodeimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698