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 | 7 |
8 #include "../../include/formfiller/FFL_FormFiller.h" | 8 #include "../../include/formfiller/FFL_FormFiller.h" |
9 #include "../../include/formfiller/FFL_Notify.h" | 9 #include "../../include/formfiller/FFL_Notify.h" |
10 #include "../../include/formfiller/FFL_CBA_Fontmap.h" | 10 #include "../../include/formfiller/FFL_CBA_Fontmap.h" |
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 | 621 |
622 FX_BOOL CFFL_FormFiller::IsDataChanged(CPDFSDK_PageView* pPageView) | 622 FX_BOOL CFFL_FormFiller::IsDataChanged(CPDFSDK_PageView* pPageView) |
623 { | 623 { |
624 return FALSE; | 624 return FALSE; |
625 } | 625 } |
626 | 626 |
627 void CFFL_FormFiller::SaveData(CPDFSDK_PageView* pPageView) | 627 void CFFL_FormFiller::SaveData(CPDFSDK_PageView* pPageView) |
628 { | 628 { |
629 } | 629 } |
630 | 630 |
631 void CFFL_FormFiller::GetKeyStrokeData(CPDFSDK_PageView* pPageView, FFL_KeyStrok
eData& data) | |
632 { | |
633 } | |
634 | |
635 FX_BOOL CFFL_FormFiller::IsFieldFull(CPDFSDK_PageView* pPageView) | 631 FX_BOOL CFFL_FormFiller::IsFieldFull(CPDFSDK_PageView* pPageView) |
636 { | 632 { |
637 return FALSE; | 633 return FALSE; |
638 } | 634 } |
639 | 635 |
640 void CFFL_FormFiller::SetChangeMark() | 636 void CFFL_FormFiller::SetChangeMark() |
641 { | 637 { |
642 m_pApp->FFI_OnChange(); | 638 m_pApp->FFI_OnChange(); |
643 } | 639 } |
644 | 640 |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, NULL)
; | 825 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, NULL)
; |
830 } | 826 } |
831 | 827 |
832 | 828 |
833 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAn
not, | 829 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAn
not, |
834 CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2D
evice, | 830 CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2D
evice, |
835 FX_DWORD dwFlags) | 831 FX_DWORD dwFlags) |
836 { | 832 { |
837 OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags); | 833 OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags); |
838 } | 834 } |
OLD | NEW |