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

Side by Side Diff: fpdfsdk/formfiller/cffl_formfiller.cpp

Issue 1923093002: Remove IFX_SystemHandler. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 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 | « fpdfsdk/formfiller/cffl_formfiller.h ('k') | fpdfsdk/fsdk_mgr.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 #include "fpdfsdk/formfiller/cffl_formfiller.h" 7 #include "fpdfsdk/formfiller/cffl_formfiller.h"
8 8
9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" 9 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
10 #include "fpdfsdk/formfiller/cba_fontmap.h" 10 #include "fpdfsdk/formfiller/cba_fontmap.h"
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 596
597 void CFFL_FormFiller::RestoreState(CPDFSDK_PageView* pPageView) {} 597 void CFFL_FormFiller::RestoreState(CPDFSDK_PageView* pPageView) {}
598 598
599 CPWL_Wnd* CFFL_FormFiller::ResetPDFWindow(CPDFSDK_PageView* pPageView, 599 CPWL_Wnd* CFFL_FormFiller::ResetPDFWindow(CPDFSDK_PageView* pPageView,
600 FX_BOOL bRestoreValue) { 600 FX_BOOL bRestoreValue) {
601 return GetPDFWindow(pPageView, FALSE); 601 return GetPDFWindow(pPageView, FALSE);
602 } 602 }
603 603
604 void CFFL_FormFiller::TimerProc() {} 604 void CFFL_FormFiller::TimerProc() {}
605 605
606 IFX_SystemHandler* CFFL_FormFiller::GetSystemHandler() const { 606 CFX_SystemHandler* CFFL_FormFiller::GetSystemHandler() const {
607 return m_pApp->GetSysHandler(); 607 return m_pApp->GetSysHandler();
608 } 608 }
609 609
610 void CFFL_FormFiller::EscapeFiller(CPDFSDK_PageView* pPageView, 610 void CFFL_FormFiller::EscapeFiller(CPDFSDK_PageView* pPageView,
611 FX_BOOL bDestroyPDFWindow) { 611 FX_BOOL bDestroyPDFWindow) {
612 m_bValid = FALSE; 612 m_bValid = FALSE;
613 613
614 FX_RECT rcRect = GetViewBBox(pPageView, m_pWidget); 614 FX_RECT rcRect = GetViewBBox(pPageView, m_pWidget);
615 InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom); 615 InvalidateRect(rcRect.left, rcRect.top, rcRect.right, rcRect.bottom);
616 616
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 } 719 }
720 } 720 }
721 721
722 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, 722 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView,
723 CPDFSDK_Annot* pAnnot, 723 CPDFSDK_Annot* pAnnot,
724 CFX_RenderDevice* pDevice, 724 CFX_RenderDevice* pDevice,
725 CFX_Matrix* pUser2Device, 725 CFX_Matrix* pUser2Device,
726 uint32_t dwFlags) { 726 uint32_t dwFlags) {
727 OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags); 727 OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags);
728 } 728 }
OLDNEW
« no previous file with comments | « fpdfsdk/formfiller/cffl_formfiller.h ('k') | fpdfsdk/fsdk_mgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698