OLD | NEW |
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 "xfa/fwl/basewidget/fwl_pictureboximp.h" | 7 #include "xfa/fwl/basewidget/fwl_pictureboximp.h" |
8 | 8 |
9 #include "xfa/fwl/core/fwl_noteimp.h" | 9 #include "xfa/fwl/core/fwl_noteimp.h" |
10 #include "xfa/fwl/core/fwl_targetimp.h" | 10 #include "xfa/fwl/core/fwl_targetimp.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 m_bButton(FALSE) { | 33 m_bButton(FALSE) { |
34 m_rtClient.Reset(); | 34 m_rtClient.Reset(); |
35 m_rtImage.Reset(); | 35 m_rtImage.Reset(); |
36 m_matrix.SetIdentity(); | 36 m_matrix.SetIdentity(); |
37 } | 37 } |
38 CFWL_PictureBoxImp::~CFWL_PictureBoxImp() {} | 38 CFWL_PictureBoxImp::~CFWL_PictureBoxImp() {} |
39 FWL_ERR CFWL_PictureBoxImp::GetClassName(CFX_WideString& wsClass) const { | 39 FWL_ERR CFWL_PictureBoxImp::GetClassName(CFX_WideString& wsClass) const { |
40 wsClass = FWL_CLASS_PictureBox; | 40 wsClass = FWL_CLASS_PictureBox; |
41 return FWL_ERR_Succeeded; | 41 return FWL_ERR_Succeeded; |
42 } | 42 } |
43 FX_DWORD CFWL_PictureBoxImp::GetClassID() const { | 43 uint32_t CFWL_PictureBoxImp::GetClassID() const { |
44 return FWL_CLASSHASH_PictureBox; | 44 return FWL_CLASSHASH_PictureBox; |
45 } | 45 } |
46 FWL_ERR CFWL_PictureBoxImp::Initialize() { | 46 FWL_ERR CFWL_PictureBoxImp::Initialize() { |
47 if (CFWL_WidgetImp::Initialize() != FWL_ERR_Succeeded) | 47 if (CFWL_WidgetImp::Initialize() != FWL_ERR_Succeeded) |
48 return FWL_ERR_Indefinite; | 48 return FWL_ERR_Indefinite; |
49 m_pDelegate = new CFWL_PictureBoxImpDelegate(this); | 49 m_pDelegate = new CFWL_PictureBoxImpDelegate(this); |
50 return FWL_ERR_Succeeded; | 50 return FWL_ERR_Succeeded; |
51 } | 51 } |
52 FWL_ERR CFWL_PictureBoxImp::Finalize() { | 52 FWL_ERR CFWL_PictureBoxImp::Finalize() { |
53 delete m_pDelegate; | 53 delete m_pDelegate; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 } | 142 } |
143 return FALSE; | 143 return FALSE; |
144 } | 144 } |
145 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate( | 145 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate( |
146 CFWL_PictureBoxImp* pOwner) | 146 CFWL_PictureBoxImp* pOwner) |
147 : m_pOwner(pOwner) {} | 147 : m_pOwner(pOwner) {} |
148 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, | 148 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, |
149 const CFX_Matrix* pMatrix) { | 149 const CFX_Matrix* pMatrix) { |
150 return m_pOwner->DrawWidget(pGraphics, pMatrix); | 150 return m_pOwner->DrawWidget(pGraphics, pMatrix); |
151 } | 151 } |
OLD | NEW |