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

Side by Side Diff: fpdfsdk/cpdfsdk_widget.cpp

Issue 2385423004: Rename fpdfsdk/fpdfxfa files to match contents (Closed)
Patch Set: 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/cpdfsdk_pageview.cpp ('k') | fpdfsdk/cpdfsdk_widgethandler.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 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 #include "fpdfsdk/cpdfsdk_widget.h" 7 #include "fpdfsdk/cpdfsdk_widget.h"
8 8
9 #include <memory> 9 #include <memory>
10 10
(...skipping 13 matching lines...) Expand all
24 #include "fpdfsdk/cpdfsdk_interform.h" 24 #include "fpdfsdk/cpdfsdk_interform.h"
25 #include "fpdfsdk/cpdfsdk_pageview.h" 25 #include "fpdfsdk/cpdfsdk_pageview.h"
26 #include "fpdfsdk/formfiller/cba_fontmap.h" 26 #include "fpdfsdk/formfiller/cba_fontmap.h"
27 #include "fpdfsdk/fsdk_actionhandler.h" 27 #include "fpdfsdk/fsdk_actionhandler.h"
28 #include "fpdfsdk/fsdk_define.h" 28 #include "fpdfsdk/fsdk_define.h"
29 #include "fpdfsdk/fxedit/fxet_edit.h" 29 #include "fpdfsdk/fxedit/fxet_edit.h"
30 #include "fpdfsdk/pdfwindow/PWL_Edit.h" 30 #include "fpdfsdk/pdfwindow/PWL_Edit.h"
31 #include "fpdfsdk/pdfwindow/PWL_Utils.h" 31 #include "fpdfsdk/pdfwindow/PWL_Utils.h"
32 32
33 #ifdef PDF_ENABLE_XFA 33 #ifdef PDF_ENABLE_XFA
34 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" 34 #include "fpdfsdk/fpdfxfa/cpdfxfa_document.h"
35 #include "xfa/fxfa/cxfa_eventparam.h" 35 #include "xfa/fxfa/cxfa_eventparam.h"
36 #include "xfa/fxfa/fxfa_widget.h" 36 #include "xfa/fxfa/fxfa_widget.h"
37 #include "xfa/fxfa/xfa_ffdocview.h" 37 #include "xfa/fxfa/xfa_ffdocview.h"
38 #include "xfa/fxfa/xfa_ffwidget.h" 38 #include "xfa/fxfa/xfa_ffwidget.h"
39 #include "xfa/fxfa/xfa_ffwidgethandler.h" 39 #include "xfa/fxfa/xfa_ffwidgethandler.h"
40 #endif // PDF_ENABLE_XFA 40 #endif // PDF_ENABLE_XFA
41 41
42 namespace { 42 namespace {
43 43
44 // Convert a FX_ARGB to a FX_COLORREF. 44 // Convert a FX_ARGB to a FX_COLORREF.
(...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1947 return FALSE; 1947 return FALSE;
1948 1948
1949 if (!IsVisible()) 1949 if (!IsVisible())
1950 return FALSE; 1950 return FALSE;
1951 1951
1952 if ((GetFieldFlags() & FIELDFLAG_READONLY) == FIELDFLAG_READONLY) 1952 if ((GetFieldFlags() & FIELDFLAG_READONLY) == FIELDFLAG_READONLY)
1953 return FALSE; 1953 return FALSE;
1954 1954
1955 return TRUE; 1955 return TRUE;
1956 } 1956 }
OLDNEW
« no previous file with comments | « fpdfsdk/cpdfsdk_pageview.cpp ('k') | fpdfsdk/cpdfsdk_widgethandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698