| 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/src/fxfa/app/xfa_ffcheckbutton.h" | 7 #include "xfa/fxfa/app/xfa_ffcheckbutton.h" |
| 8 | 8 |
| 9 #include "xfa/fxfa/app/xfa_ffapp.h" |
| 10 #include "xfa/fxfa/app/xfa_ffdoc.h" |
| 11 #include "xfa/fxfa/app/xfa_ffdocview.h" |
| 12 #include "xfa/fxfa/app/xfa_ffexclgroup.h" |
| 13 #include "xfa/fxfa/app/xfa_fffield.h" |
| 14 #include "xfa/fxfa/app/xfa_ffpageview.h" |
| 15 #include "xfa/fxfa/app/xfa_ffwidget.h" |
| 9 #include "xfa/include/fwl/core/fwl_widgetmgr.h" | 16 #include "xfa/include/fwl/core/fwl_widgetmgr.h" |
| 10 #include "xfa/include/fwl/lightwidget/checkbox.h" | 17 #include "xfa/include/fwl/lightwidget/checkbox.h" |
| 11 #include "xfa/src/fxfa/app/xfa_ffapp.h" | |
| 12 #include "xfa/src/fxfa/app/xfa_ffdoc.h" | |
| 13 #include "xfa/src/fxfa/app/xfa_ffdocview.h" | |
| 14 #include "xfa/src/fxfa/app/xfa_ffexclgroup.h" | |
| 15 #include "xfa/src/fxfa/app/xfa_fffield.h" | |
| 16 #include "xfa/src/fxfa/app/xfa_ffpageview.h" | |
| 17 #include "xfa/src/fxfa/app/xfa_ffwidget.h" | |
| 18 | 18 |
| 19 CXFA_FFCheckButton::CXFA_FFCheckButton(CXFA_FFPageView* pPageView, | 19 CXFA_FFCheckButton::CXFA_FFCheckButton(CXFA_FFPageView* pPageView, |
| 20 CXFA_WidgetAcc* pDataAcc) | 20 CXFA_WidgetAcc* pDataAcc) |
| 21 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) { | 21 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) { |
| 22 m_rtCheckBox.Set(0, 0, 0, 0); | 22 m_rtCheckBox.Set(0, 0, 0, 0); |
| 23 } | 23 } |
| 24 CXFA_FFCheckButton::~CXFA_FFCheckButton() {} | 24 CXFA_FFCheckButton::~CXFA_FFCheckButton() {} |
| 25 FX_BOOL CXFA_FFCheckButton::LoadWidget() { | 25 FX_BOOL CXFA_FFCheckButton::LoadWidget() { |
| 26 CFWL_CheckBox* pCheckBox = CFWL_CheckBox::Create(); | 26 CFWL_CheckBox* pCheckBox = CFWL_CheckBox::Create(); |
| 27 pCheckBox->Initialize(); | 27 pCheckBox->Initialize(); |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 break; | 326 break; |
| 327 } | 327 } |
| 328 default: {} | 328 default: {} |
| 329 } | 329 } |
| 330 return m_pOldDelegate->OnProcessEvent(pEvent); | 330 return m_pOldDelegate->OnProcessEvent(pEvent); |
| 331 } | 331 } |
| 332 FWL_ERR CXFA_FFCheckButton::OnDrawWidget(CFX_Graphics* pGraphics, | 332 FWL_ERR CXFA_FFCheckButton::OnDrawWidget(CFX_Graphics* pGraphics, |
| 333 const CFX_Matrix* pMatrix) { | 333 const CFX_Matrix* pMatrix) { |
| 334 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); | 334 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); |
| 335 } | 335 } |
| OLD | NEW |