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

Side by Side Diff: fpdfsdk/include/fsdk_mgr.h

Issue 2273893002: Display content of the annotation when mouse hover. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Removing useless comments. 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
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 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_ 7 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_
8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ 8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_
9 9
10 #include <map> 10 #include <map>
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 613
614 private: 614 private:
615 int GetPageIndexForStaticPDF() const; 615 int GetPageIndexForStaticPDF() const;
616 616
617 CFX_Matrix m_curMatrix; 617 CFX_Matrix m_curMatrix;
618 UnderlyingPageType* const m_page; 618 UnderlyingPageType* const m_page;
619 std::unique_ptr<CPDF_AnnotList> m_pAnnotList; 619 std::unique_ptr<CPDF_AnnotList> m_pAnnotList;
620 std::vector<CPDFSDK_Annot*> m_fxAnnotArray; 620 std::vector<CPDFSDK_Annot*> m_fxAnnotArray;
621 CPDFSDK_Document* const m_pSDKDoc; 621 CPDFSDK_Document* const m_pSDKDoc;
622 #ifdef PDF_ENABLE_XFA 622 #ifdef PDF_ENABLE_XFA
623 CPDFSDK_Annot* m_CaptureWidget; 623 CPDFSDK_Annot* m_CaptureWidget;
dsinclair 2016/08/24 14:00:21 This appears to live in both sides of the #ifdef c
jaepark 2016/08/24 18:37:49 Done.
624 #else // PDF_ENABLE_XFA 624 #else // PDF_ENABLE_XFA
625 CPDFSDK_Widget* m_CaptureWidget; 625 CPDFSDK_Annot* m_CaptureWidget;
626 FX_BOOL m_bTakeOverPage; 626 FX_BOOL m_bTakeOverPage;
627 #endif // PDF_ENABLE_XFA 627 #endif // PDF_ENABLE_XFA
628 FX_BOOL m_bEnterWidget; 628 FX_BOOL m_bEnterWidget;
629 FX_BOOL m_bExitWidget; 629 FX_BOOL m_bExitWidget;
630 FX_BOOL m_bOnWidget; 630 FX_BOOL m_bOnWidget;
631 FX_BOOL m_bValid; 631 FX_BOOL m_bValid;
632 FX_BOOL m_bLocked; 632 FX_BOOL m_bLocked;
633 }; 633 };
634 634
635 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ 635 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698