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

Side by Side Diff: fpdfsdk/fxedit/fxet_list.h

Issue 2375963006: Move fpdfsdk/fxedit/include to fpdfsdk/fxedit (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/fxet_edit.cpp ('k') | fpdfsdk/fxedit/fxet_list.cpp » ('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 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_FXEDIT_INCLUDE_FXET_LIST_H_ 7 #ifndef FPDFSDK_FXEDIT_FXET_LIST_H_
8 #define FPDFSDK_FXEDIT_INCLUDE_FXET_LIST_H_ 8 #define FPDFSDK_FXEDIT_FXET_LIST_H_
9 9
10 #include "core/fxcrt/fx_coordinates.h" 10 #include "core/fxcrt/fx_coordinates.h"
11 #include "fpdfsdk/fxedit/include/fx_edit.h" 11 #include "fpdfsdk/fxedit/fx_edit.h"
12 12
13 class CFX_Edit; 13 class CFX_Edit;
14 class CFX_Edit_Iterator; 14 class CFX_Edit_Iterator;
15 class CPWL_List_Notify; 15 class CPWL_List_Notify;
16 16
17 class CLST_Rect : public CFX_FloatRect { 17 class CLST_Rect : public CFX_FloatRect {
18 public: 18 public:
19 CLST_Rect() { left = top = right = bottom = 0.0f; } 19 CLST_Rect() { left = top = right = bottom = 0.0f; }
20 20
21 CLST_Rect(FX_FLOAT other_left, 21 CLST_Rect(FX_FLOAT other_left,
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 int32_t m_nSelItem; // for single 294 int32_t m_nSelItem; // for single
295 int32_t m_nFootIndex; // for multiple 295 int32_t m_nFootIndex; // for multiple
296 FX_BOOL m_bCtrlSel; // for multiple 296 FX_BOOL m_bCtrlSel; // for multiple
297 int32_t m_nCaretIndex; // for multiple 297 int32_t m_nCaretIndex; // for multiple
298 CLST_ArrayTemplate<CFX_ListItem*> m_aListItems; 298 CLST_ArrayTemplate<CFX_ListItem*> m_aListItems;
299 FX_FLOAT m_fFontSize; 299 FX_FLOAT m_fFontSize;
300 IPVT_FontMap* m_pFontMap; 300 IPVT_FontMap* m_pFontMap;
301 FX_BOOL m_bMultiple; 301 FX_BOOL m_bMultiple;
302 }; 302 };
303 303
304 #endif // FPDFSDK_FXEDIT_INCLUDE_FXET_LIST_H_ 304 #endif // FPDFSDK_FXEDIT_FXET_LIST_H_
OLDNEW
« no previous file with comments | « fpdfsdk/fxedit/fxet_edit.cpp ('k') | fpdfsdk/fxedit/fxet_list.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698