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 #include "xfa/src/fxfa/app/xfa_ffpushbutton.h" | 7 #include "xfa/fxfa/app/xfa_ffpushbutton.h" |
8 | 8 |
| 9 #include "xfa/fxfa/app/xfa_ffapp.h" |
| 10 #include "xfa/fxfa/app/xfa_fffield.h" |
| 11 #include "xfa/fxfa/app/xfa_ffpageview.h" |
| 12 #include "xfa/fxfa/app/xfa_ffwidget.h" |
| 13 #include "xfa/fxfa/app/xfa_ffwidgetacc.h" |
| 14 #include "xfa/fxfa/app/xfa_textlayout.h" |
9 #include "xfa/include/fwl/core/fwl_widgetmgr.h" | 15 #include "xfa/include/fwl/core/fwl_widgetmgr.h" |
10 #include "xfa/include/fwl/lightwidget/pushbutton.h" | 16 #include "xfa/include/fwl/lightwidget/pushbutton.h" |
11 #include "xfa/src/fxfa/app/xfa_ffapp.h" | |
12 #include "xfa/src/fxfa/app/xfa_fffield.h" | |
13 #include "xfa/src/fxfa/app/xfa_ffpageview.h" | |
14 #include "xfa/src/fxfa/app/xfa_ffwidget.h" | |
15 #include "xfa/src/fxfa/app/xfa_ffwidgetacc.h" | |
16 #include "xfa/src/fxfa/app/xfa_textlayout.h" | |
17 | 17 |
18 CXFA_FFPushButton::CXFA_FFPushButton(CXFA_FFPageView* pPageView, | 18 CXFA_FFPushButton::CXFA_FFPushButton(CXFA_FFPageView* pPageView, |
19 CXFA_WidgetAcc* pDataAcc) | 19 CXFA_WidgetAcc* pDataAcc) |
20 : CXFA_FFField(pPageView, pDataAcc), | 20 : CXFA_FFField(pPageView, pDataAcc), |
21 m_pRolloverTextLayout(NULL), | 21 m_pRolloverTextLayout(NULL), |
22 m_pDownTextLayout(NULL), | 22 m_pDownTextLayout(NULL), |
23 m_pDownProvider(NULL), | 23 m_pDownProvider(NULL), |
24 m_pRollProvider(NULL), | 24 m_pRollProvider(NULL), |
25 m_pOldDelegate(NULL) {} | 25 m_pOldDelegate(NULL) {} |
26 CXFA_FFPushButton::~CXFA_FFPushButton() { | 26 CXFA_FFPushButton::~CXFA_FFPushButton() { |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 path.Create(); | 240 path.Create(); |
241 CFX_RectF rect; | 241 CFX_RectF rect; |
242 m_pNormalWidget->GetWidgetRect(rect); | 242 m_pNormalWidget->GetWidgetRect(rect); |
243 path.AddRectangle(0, 0, rect.width, rect.height); | 243 path.AddRectangle(0, 0, rect.width, rect.height); |
244 pGraphics->StrokePath(&path, (CFX_Matrix*)pMatrix); | 244 pGraphics->StrokePath(&path, (CFX_Matrix*)pMatrix); |
245 } | 245 } |
246 } else if (m_pNormalWidget->GetStylesEx() & XFA_FWL_PSBSTYLEEXT_HilitePush) { | 246 } else if (m_pNormalWidget->GetStylesEx() & XFA_FWL_PSBSTYLEEXT_HilitePush) { |
247 } | 247 } |
248 return FWL_ERR_Succeeded; | 248 return FWL_ERR_Succeeded; |
249 } | 249 } |
OLD | NEW |