| 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/page/cpdf_page.h" | 9 #include "core/fpdfapi/page/cpdf_page.h" |
| 10 #include "core/fxge/cfx_renderdevice.h" | 10 #include "core/fxge/cfx_renderdevice.h" |
| 11 #include "fpdfsdk/cpdfsdk_document.h" | 11 #include "fpdfsdk/cpdfsdk_document.h" |
| 12 #include "fpdfsdk/cpdfsdk_environment.h" | 12 #include "fpdfsdk/cpdfsdk_formfillenvironment.h" |
| 13 #include "fpdfsdk/cpdfsdk_pageview.h" | 13 #include "fpdfsdk/cpdfsdk_pageview.h" |
| 14 #include "fpdfsdk/cpdfsdk_widget.h" | 14 #include "fpdfsdk/cpdfsdk_widget.h" |
| 15 #include "fpdfsdk/formfiller/cba_fontmap.h" | 15 #include "fpdfsdk/formfiller/cba_fontmap.h" |
| 16 #include "fpdfsdk/fsdk_common.h" | 16 #include "fpdfsdk/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(CPDFSDK_Environment* pEnv, | 25 CFFL_FormFiller::CFFL_FormFiller(CPDFSDK_FormFillEnvironment* pEnv, |
| 26 CPDFSDK_Annot* pAnnot) | 26 CPDFSDK_Annot* pAnnot) |
| 27 : m_pEnv(pEnv), m_pAnnot(pAnnot), m_bValid(FALSE) { | 27 : m_pEnv(pEnv), 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 Loading... |
| 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_pEnv->Invalidate(pPage, left, top, right, bottom); | 618 m_pEnv->Invalidate(pPage, left, top, right, bottom); |
| 619 } | 619 } |
| 620 | 620 |
| 621 CFFL_Button::CFFL_Button(CPDFSDK_Environment* pApp, CPDFSDK_Annot* pWidget) | 621 CFFL_Button::CFFL_Button(CPDFSDK_FormFillEnvironment* pApp, |
| 622 CPDFSDK_Annot* pWidget) |
| 622 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {} | 623 : CFFL_FormFiller(pApp, pWidget), m_bMouseIn(FALSE), m_bMouseDown(FALSE) {} |
| 623 | 624 |
| 624 CFFL_Button::~CFFL_Button() {} | 625 CFFL_Button::~CFFL_Button() {} |
| 625 | 626 |
| 626 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView, | 627 void CFFL_Button::OnMouseEnter(CPDFSDK_PageView* pPageView, |
| 627 CPDFSDK_Annot* pAnnot) { | 628 CPDFSDK_Annot* pAnnot) { |
| 628 m_bMouseIn = TRUE; | 629 m_bMouseIn = TRUE; |
| 629 FX_RECT rect = GetViewBBox(pPageView, pAnnot); | 630 FX_RECT rect = GetViewBBox(pPageView, pAnnot); |
| 630 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); | 631 InvalidateRect(rect.left, rect.top, rect.right, rect.bottom); |
| 631 } | 632 } |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr); | 712 pWidget->DrawAppearance(pDevice, pUser2Device, CPDF_Annot::Normal, nullptr); |
| 712 } | 713 } |
| 713 } | 714 } |
| 714 | 715 |
| 715 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, | 716 void CFFL_Button::OnDrawDeactive(CPDFSDK_PageView* pPageView, |
| 716 CPDFSDK_Annot* pAnnot, | 717 CPDFSDK_Annot* pAnnot, |
| 717 CFX_RenderDevice* pDevice, | 718 CFX_RenderDevice* pDevice, |
| 718 CFX_Matrix* pUser2Device) { | 719 CFX_Matrix* pUser2Device) { |
| 719 OnDraw(pPageView, pAnnot, pDevice, pUser2Device); | 720 OnDraw(pPageView, pAnnot, pDevice, pUser2Device); |
| 720 } | 721 } |
| OLD | NEW |