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

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

Issue 2374383003: Move core/fpdfdoc/include to core/fpdfdoc (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/fxedit/include/fxet_edit.h ('k') | fpdfsdk/include/cpdfsdk_annot.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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_CBA_ANNOTITERATOR_H_ 7 #ifndef FPDFSDK_INCLUDE_CBA_ANNOTITERATOR_H_
8 #define FPDFSDK_INCLUDE_CBA_ANNOTITERATOR_H_ 8 #define FPDFSDK_INCLUDE_CBA_ANNOTITERATOR_H_
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "core/fpdfdoc/include/cpdf_annot.h" 12 #include "core/fpdfdoc/cpdf_annot.h"
13 #include "core/fxcrt/include/fx_coordinates.h" 13 #include "core/fxcrt/include/fx_coordinates.h"
14 #include "core/fxcrt/include/fx_string.h" 14 #include "core/fxcrt/include/fx_string.h"
15 15
16 class CPDFSDK_Annot; 16 class CPDFSDK_Annot;
17 class CPDFSDK_PageView; 17 class CPDFSDK_PageView;
18 18
19 class CBA_AnnotIterator { 19 class CBA_AnnotIterator {
20 public: 20 public:
21 enum TabOrder { STRUCTURE = 0, ROW, COLUMN }; 21 enum TabOrder { STRUCTURE = 0, ROW, COLUMN };
22 22
(...skipping 16 matching lines...) Expand all
39 static bool CompareByTopDescending(const CPDFSDK_Annot* p1, 39 static bool CompareByTopDescending(const CPDFSDK_Annot* p1,
40 const CPDFSDK_Annot* p2); 40 const CPDFSDK_Annot* p2);
41 41
42 TabOrder m_eTabOrder; 42 TabOrder m_eTabOrder;
43 CPDFSDK_PageView* m_pPageView; 43 CPDFSDK_PageView* m_pPageView;
44 CPDF_Annot::Subtype m_nAnnotSubtype; 44 CPDF_Annot::Subtype m_nAnnotSubtype;
45 std::vector<CPDFSDK_Annot*> m_Annots; 45 std::vector<CPDFSDK_Annot*> m_Annots;
46 }; 46 };
47 47
48 #endif // FPDFSDK_INCLUDE_CBA_ANNOTITERATOR_H_ 48 #endif // FPDFSDK_INCLUDE_CBA_ANNOTITERATOR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/fxedit/include/fxet_edit.h ('k') | fpdfsdk/include/cpdfsdk_annot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698