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

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

Issue 2333413003: Rename CPDFDoc_Environment to CPDFSDK_Environment (Closed)
Patch Set: Review feedback Created 4 years, 3 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/formfiller/cffl_iformfiller.h » ('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 "core/fxge/include/cfx_renderdevice.h" 10 #include "core/fxge/include/cfx_renderdevice.h"
11 #include "fpdfsdk/formfiller/cba_fontmap.h" 11 #include "fpdfsdk/formfiller/cba_fontmap.h"
12 #include "fpdfsdk/include/cpdfdoc_environment.h"
13 #include "fpdfsdk/include/cpdfsdk_document.h" 12 #include "fpdfsdk/include/cpdfsdk_document.h"
13 #include "fpdfsdk/include/cpdfsdk_environment.h"
14 #include "fpdfsdk/include/cpdfsdk_pageview.h" 14 #include "fpdfsdk/include/cpdfsdk_pageview.h"
15 #include "fpdfsdk/include/cpdfsdk_widget.h" 15 #include "fpdfsdk/include/cpdfsdk_widget.h"
16 #include "fpdfsdk/include/fsdk_common.h" 16 #include "fpdfsdk/include/fsdk_common.h"
17 #include "fpdfsdk/pdfwindow/PWL_Utils.h" 17 #include "fpdfsdk/pdfwindow/PWL_Utils.h"
18 18
19 #define GetRed(rgb) ((uint8_t)(rgb)) 19 #define GetRed(rgb) ((uint8_t)(rgb))
20 #define GetGreen(rgb) ((uint8_t)(((uint16_t)(rgb)) >> 8)) 20 #define GetGreen(rgb) ((uint8_t)(((uint16_t)(rgb)) >> 8))
21 #define GetBlue(rgb) ((uint8_t)((rgb) >> 16)) 21 #define GetBlue(rgb) ((uint8_t)((rgb) >> 16))
22 22
23 #define FFL_HINT_ELAPSE 800 23 #define FFL_HINT_ELAPSE 800
24 24
25 CFFL_FormFiller::CFFL_FormFiller(CPDFDoc_Environment* pApp, 25 CFFL_FormFiller::CFFL_FormFiller(CPDFSDK_Environment* pApp,
26 CPDFSDK_Annot* pAnnot) 26 CPDFSDK_Annot* pAnnot)
27 : m_pApp(pApp), m_pAnnot(pAnnot), m_bValid(FALSE) { 27 : m_pApp(pApp), m_pAnnot(pAnnot), m_bValid(FALSE) {
28 m_pWidget = static_cast<CPDFSDK_Widget*>(pAnnot); 28 m_pWidget = static_cast<CPDFSDK_Widget*>(pAnnot);
29 } 29 }
30 30
31 CFFL_FormFiller::~CFFL_FormFiller() { 31 CFFL_FormFiller::~CFFL_FormFiller() {
32 DestroyWindows(); 32 DestroyWindows();
33 } 33 }
34 34
35 void CFFL_FormFiller::DestroyWindows() { 35 void CFFL_FormFiller::DestroyWindows() {
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 } 611 }
612 612
613 void CFFL_FormFiller::InvalidateRect(double left, 613 void CFFL_FormFiller::InvalidateRect(double left,
614 double top, 614 double top,
615 double right, 615 double right,
616 double bottom) { 616 double bottom) {
617 UnderlyingPageType* pPage = m_pWidget->GetUnderlyingPage(); 617 UnderlyingPageType* pPage = m_pWidget->GetUnderlyingPage();
618 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom); 618 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom);
619 } 619 }
620 620
621 CFFL_Button::CFFL_Button(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pWidget) 621 CFFL_Button::CFFL_Button(CPDFSDK_Environment* pApp, CPDFSDK_Annot* pWidget)
622 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {} 622 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {}
623 623
624 CFFL_Button::~CFFL_Button() {} 624 CFFL_Button::~CFFL_Button() {}
625 625
626 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView, 626 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView,
627 CPDFSDK_Annot* pAnnot) { 627 CPDFSDK_Annot* pAnnot) {
628 m_bMouseIn = TRUE; 628 m_bMouseIn = TRUE;
629 FX_RECT rect = GetViewBBox(pPageView, pAnnot); 629 FX_RECT rect = GetViewBBox(pPageView, pAnnot);
630 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); 630 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom);
631 } 631 }
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr); 711 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr);
712 } 712 }
713 } 713 }
714 714
715 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, 715 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView,
716 CPDFSDK_Annot* pAnnot, 716 CPDFSDK_Annot* pAnnot,
717 CFX_RenderDevice* pDevice, 717 CFX_RenderDevice* pDevice,
718 CFX_Matrix* pUser2Device) { 718 CFX_Matrix* pUser2Device) {
719 OnDraw(pPageView, pAnnot, pDevice, pUser2Device); 719 OnDraw(pPageView, pAnnot, pDevice, pUser2Device);
720 } 720 }
OLDNEW
« no previous file with comments | « fpdfsdk/formfiller/cffl_formfiller.h ('k') | fpdfsdk/formfiller/cffl_iformfiller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698