OLD | NEW |
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 _FXFA_FORMFILLER_WIDGET_IMP_H | 7 #ifndef _FXFA_FORMFILLER_WIDGET_IMP_H |
8 #define _FXFA_FORMFILLER_WIDGET_IMP_H | 8 #define _FXFA_FORMFILLER_WIDGET_IMP_H |
9 | 9 |
10 #include "../../../../include/fxfa/fxfa.h" | 10 #include "xfa/include/fxfa/fxfa.h" |
11 | 11 |
12 class CXFA_FFPageView; | 12 class CXFA_FFPageView; |
13 class CXFA_FFDocView; | 13 class CXFA_FFDocView; |
14 class CXFA_FFDoc; | 14 class CXFA_FFDoc; |
15 class CXFA_FFApp; | 15 class CXFA_FFApp; |
16 | 16 |
17 #define XFA_GOTO_POSITION_IF_FAIL(arg, pos) \ | 17 #define XFA_GOTO_POSITION_IF_FAIL(arg, pos) \ |
18 { \ | 18 { \ |
19 if (!(arg)) \ | 19 if (!(arg)) \ |
20 goto pos; \ | 20 goto pos; \ |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 CXFA_FFWidget* XFA_GetWidgetFromLayoutItem(CXFA_LayoutItem* pLayoutItem); | 177 CXFA_FFWidget* XFA_GetWidgetFromLayoutItem(CXFA_LayoutItem* pLayoutItem); |
178 FX_BOOL XFA_IsCreateWidget(XFA_ELEMENT iType); | 178 FX_BOOL XFA_IsCreateWidget(XFA_ELEMENT iType); |
179 #define XFA_DRAWBOX_ForceRound 1 | 179 #define XFA_DRAWBOX_ForceRound 1 |
180 #define XFA_DRAWBOX_Lowered3D 2 | 180 #define XFA_DRAWBOX_Lowered3D 2 |
181 void XFA_DrawBox(CXFA_Box box, | 181 void XFA_DrawBox(CXFA_Box box, |
182 CFX_Graphics* pGS, | 182 CFX_Graphics* pGS, |
183 const CFX_RectF& rtWidget, | 183 const CFX_RectF& rtWidget, |
184 CFX_Matrix* pMatrix, | 184 CFX_Matrix* pMatrix, |
185 FX_DWORD dwFlags = 0); | 185 FX_DWORD dwFlags = 0); |
186 #endif | 186 #endif |
OLD | NEW |