diff options
author | jaepark <jaepark@google.com> | 2016-08-29 17:15:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-29 17:15:08 -0700 |
commit | 35512aa7e4acc3ceb9c6aef5d61eebfb4ae802af (patch) | |
tree | 18ad1447ba8a7d06f304e1418616d919eadbbf8c /fpdfsdk/include/cpdfsdk_annothandlermgr.h | |
parent | 07f5fd57682700bcbba20f01d52a806676fd02ff (diff) | |
download | pdfium-35512aa7e4acc3ceb9c6aef5d61eebfb4ae802af.tar.xz |
Display content of the annotation when mouse hover.
Each annotation has its contents, and users should be able to see the
contents. In this patch, PDFium creates a Popup annotation for each
annotation and stores the author and the content. When a user mouse
hover on the annotation, PDFium draws the corresponding Popup annotation
and displays the content.
Also, roll DEPS for testing/corpus to 5867fa6.
BUG=62625
Review-Url: https://codereview.chromium.org/2273893002
Diffstat (limited to 'fpdfsdk/include/cpdfsdk_annothandlermgr.h')
-rw-r--r-- | fpdfsdk/include/cpdfsdk_annothandlermgr.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/fpdfsdk/include/cpdfsdk_annothandlermgr.h b/fpdfsdk/include/cpdfsdk_annothandlermgr.h index 2d09326e68..2ff35f83be 100644 --- a/fpdfsdk/include/cpdfsdk_annothandlermgr.h +++ b/fpdfsdk/include/cpdfsdk_annothandlermgr.h @@ -18,10 +18,13 @@ class CFX_RenderDevice; class CPDF_Annot; class CPDFDoc_Environment; class CPDFSDK_Annot; +class CPDFSDK_BAAnnotHandler; +class CPDFSDK_BFAnnotHandler; class CPDFSDK_PageView; class IPDFSDK_AnnotHandler; #ifdef PDF_ENABLE_XFA +class CPDFSDK_XFAAnnotHandler; class CXFA_FFWidget; #endif // PDF_ENABLE_XFA @@ -30,9 +33,6 @@ class CPDFSDK_AnnotHandlerMgr { explicit CPDFSDK_AnnotHandlerMgr(CPDFDoc_Environment* pApp); virtual ~CPDFSDK_AnnotHandlerMgr(); - void RegisterAnnotHandler(IPDFSDK_AnnotHandler* pAnnotHandler); - void UnRegisterAnnotHandler(IPDFSDK_AnnotHandler* pAnnotHandler); - virtual CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView); #ifdef PDF_ENABLE_XFA @@ -112,8 +112,12 @@ class CPDFSDK_AnnotHandlerMgr { IPDFSDK_AnnotHandler* GetAnnotHandler(const CFX_ByteString& sType) const; CPDFSDK_Annot* GetNextAnnot(CPDFSDK_Annot* pSDKAnnot, FX_BOOL bNext); - std::map<CFX_ByteString, std::unique_ptr<IPDFSDK_AnnotHandler>> - m_mapType2Handler; + std::unique_ptr<CPDFSDK_BAAnnotHandler> m_pBAAnnotHandler; + std::unique_ptr<CPDFSDK_BFAnnotHandler> m_pBFAnnotHandler; +#ifdef PDF_ENABLE_XFA + std::unique_ptr<CPDFSDK_XFAAnnotHandler> m_pXFAAnnotHandler; +#endif // PDF_ENABLE_XFA + CPDFDoc_Environment* m_pApp; }; |