| 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/fxfa/include/xfa_ffpageview.h" | 7 #include "xfa/fxfa/include/xfa_ffpageview.h" |
| 8 | 8 |
| 9 #include "xfa/fde/fde_render.h" | 9 #include "xfa/fde/fde_render.h" |
| 10 #include "xfa/fxfa/app/xfa_ffcheckbutton.h" | 10 #include "xfa/fxfa/app/xfa_ffcheckbutton.h" |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 CXFA_LayoutItem* pLayoutItem) { | 425 CXFA_LayoutItem* pLayoutItem) { |
| 426 if (CXFA_FFWidget* pWidget = XFA_GetWidgetFromLayoutItem(pLayoutItem)) { | 426 if (CXFA_FFWidget* pWidget = XFA_GetWidgetFromLayoutItem(pLayoutItem)) { |
| 427 if (!pWidget->IsLoaded() && | 427 if (!pWidget->IsLoaded() && |
| 428 (pWidget->GetStatus() & XFA_WidgetStatus_Visible)) { | 428 (pWidget->GetStatus() & XFA_WidgetStatus_Visible)) { |
| 429 pWidget->LoadWidget(); | 429 pWidget->LoadWidget(); |
| 430 } | 430 } |
| 431 return pWidget; | 431 return pWidget; |
| 432 } | 432 } |
| 433 return NULL; | 433 return NULL; |
| 434 } | 434 } |
| 435 |
| 436 CXFA_TabParam::CXFA_TabParam() : m_pWidget(NULL) {} |
| 437 |
| 438 CXFA_TabParam::~CXFA_TabParam() {} |
| OLD | NEW |