OLD | NEW |
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/include/cpdfsdk_xfawidgethandler.h" | 7 #include "fpdfsdk/cpdfsdk_xfawidgethandler.h" |
8 | 8 |
9 #include "core/fpdfdoc/cpdf_interform.h" | 9 #include "core/fpdfdoc/cpdf_interform.h" |
| 10 #include "fpdfsdk/cpdfsdk_annot.h" |
| 11 #include "fpdfsdk/cpdfsdk_document.h" |
| 12 #include "fpdfsdk/cpdfsdk_environment.h" |
| 13 #include "fpdfsdk/cpdfsdk_interform.h" |
| 14 #include "fpdfsdk/cpdfsdk_pageview.h" |
| 15 #include "fpdfsdk/cpdfsdk_xfawidget.h" |
10 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" | 16 #include "fpdfsdk/fpdfxfa/fpdfxfa_doc.h" |
11 #include "fpdfsdk/include/cpdfsdk_annot.h" | |
12 #include "fpdfsdk/include/cpdfsdk_document.h" | |
13 #include "fpdfsdk/include/cpdfsdk_environment.h" | |
14 #include "fpdfsdk/include/cpdfsdk_interform.h" | |
15 #include "fpdfsdk/include/cpdfsdk_pageview.h" | |
16 #include "fpdfsdk/include/cpdfsdk_xfawidget.h" | |
17 #include "xfa/fwl/core/include/fwl_widgethit.h" | 17 #include "xfa/fwl/core/include/fwl_widgethit.h" |
18 #include "xfa/fxfa/include/fxfa_basic.h" | 18 #include "xfa/fxfa/include/fxfa_basic.h" |
19 #include "xfa/fxfa/include/xfa_ffdocview.h" | 19 #include "xfa/fxfa/include/xfa_ffdocview.h" |
20 #include "xfa/fxfa/include/xfa_ffpageview.h" | 20 #include "xfa/fxfa/include/xfa_ffpageview.h" |
21 #include "xfa/fxfa/include/xfa_ffwidget.h" | 21 #include "xfa/fxfa/include/xfa_ffwidget.h" |
22 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" | 22 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" |
23 #include "xfa/fxgraphics/include/cfx_graphics.h" | 23 #include "xfa/fxgraphics/include/cfx_graphics.h" |
24 | 24 |
25 CPDFSDK_XFAWidgetHandler::CPDFSDK_XFAWidgetHandler(CPDFSDK_Environment* pEnv) | 25 CPDFSDK_XFAWidgetHandler::CPDFSDK_XFAWidgetHandler(CPDFSDK_Environment* pEnv) |
26 : m_pEnv(pEnv) {} | 26 : m_pEnv(pEnv) {} |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 dwFWLFlag |= FWL_KEYFLAG_MButton; | 378 dwFWLFlag |= FWL_KEYFLAG_MButton; |
379 if (dwFlag & FWL_EVENTFLAG_RightButtonDown) | 379 if (dwFlag & FWL_EVENTFLAG_RightButtonDown) |
380 dwFWLFlag |= FWL_KEYFLAG_RButton; | 380 dwFWLFlag |= FWL_KEYFLAG_RButton; |
381 if (dwFlag & FWL_EVENTFLAG_ShiftKey) | 381 if (dwFlag & FWL_EVENTFLAG_ShiftKey) |
382 dwFWLFlag |= FWL_KEYFLAG_Shift; | 382 dwFWLFlag |= FWL_KEYFLAG_Shift; |
383 if (dwFlag & FWL_EVENTFLAG_AltKey) | 383 if (dwFlag & FWL_EVENTFLAG_AltKey) |
384 dwFWLFlag |= FWL_KEYFLAG_Alt; | 384 dwFWLFlag |= FWL_KEYFLAG_Alt; |
385 | 385 |
386 return dwFWLFlag; | 386 return dwFWLFlag; |
387 } | 387 } |
OLD | NEW |