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 "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), m_ptOldPos(0, 0) { | 27 : m_pApp(pApp), m_pAnnot(pAnnot), m_bValid(FALSE), m_ptOldPos(0, 0) { |
28 m_pWidget = (CPDFSDK_Widget*)pAnnot; | 28 m_pWidget = (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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 } | 615 } |
616 | 616 |
617 void CFFL_FormFiller::InvalidateRect(double left, | 617 void CFFL_FormFiller::InvalidateRect(double left, |
618 double top, | 618 double top, |
619 double right, | 619 double right, |
620 double bottom) { | 620 double bottom) { |
621 UnderlyingPageType* pPage = m_pWidget->GetUnderlyingPage(); | 621 UnderlyingPageType* pPage = m_pWidget->GetUnderlyingPage(); |
622 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom); | 622 m_pApp->FFI_Invalidate(pPage, left, top, right, bottom); |
623 } | 623 } |
624 | 624 |
625 CFFL_Button::CFFL_Button(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pWidget) | 625 CFFL_Button::CFFL_Button(CPDFSDK_Environment* pApp, CPDFSDK_Annot* pWidget) |
626 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {} | 626 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {} |
627 | 627 |
628 CFFL_Button::~CFFL_Button() {} | 628 CFFL_Button::~CFFL_Button() {} |
629 | 629 |
630 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView, | 630 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView, |
631 CPDFSDK_Annot* pAnnot) { | 631 CPDFSDK_Annot* pAnnot) { |
632 m_bMouseIn = TRUE; | 632 m_bMouseIn = TRUE; |
633 FX_RECT rect = GetViewBBox(pPageView, pAnnot); | 633 FX_RECT rect = GetViewBBox(pPageView, pAnnot); |
634 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); | 634 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); |
635 } | 635 } |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr); | 715 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr); |
716 } | 716 } |
717 } | 717 } |
718 | 718 |
719 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, | 719 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, |
720 CPDFSDK_Annot* pAnnot, | 720 CPDFSDK_Annot* pAnnot, |
721 CFX_RenderDevice* pDevice, | 721 CFX_RenderDevice* pDevice, |
722 CFX_Matrix* pUser2Device) { | 722 CFX_Matrix* pUser2Device) { |
723 OnDraw(pPageView, pAnnot, pDevice, pUser2Device); | 723 OnDraw(pPageView, pAnnot, pDevice, pUser2Device); |
724 } | 724 } |
OLD | NEW |