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/fwl/src/basewidget/fwl_spinbuttonimp.h" | 7 #include "xfa/src/fwl/basewidget/fwl_spinbuttonimp.h" |
8 | 8 |
9 #include "xfa/include/fwl/basewidget/fwl_spinbutton.h" | 9 #include "xfa/include/fwl/basewidget/fwl_spinbutton.h" |
10 #include "xfa/include/fwl/core/fwl_theme.h" | 10 #include "xfa/include/fwl/core/fwl_theme.h" |
11 #include "xfa/include/fwl/core/fwl_timer.h" | 11 #include "xfa/include/fwl/core/fwl_timer.h" |
12 #include "xfa/src/fwl/src/core/fwl_noteimp.h" | 12 #include "xfa/src/fwl/core/fwl_noteimp.h" |
13 #include "xfa/src/fwl/src/core/fwl_targetimp.h" | 13 #include "xfa/src/fwl/core/fwl_targetimp.h" |
14 #include "xfa/src/fwl/src/core/fwl_widgetimp.h" | 14 #include "xfa/src/fwl/core/fwl_widgetimp.h" |
15 | 15 |
16 #define FWL_SPN_MinWidth 18 | 16 #define FWL_SPN_MinWidth 18 |
17 #define FWL_SPN_MinHeight 32 | 17 #define FWL_SPN_MinHeight 32 |
18 #define FWL_SPIN_Elapse 200 | 18 #define FWL_SPIN_Elapse 200 |
19 | 19 |
20 // static | 20 // static |
21 IFWL_SpinButton* IFWL_SpinButton::Create( | 21 IFWL_SpinButton* IFWL_SpinButton::Create( |
22 const CFWL_WidgetImpProperties& properties, | 22 const CFWL_WidgetImpProperties& properties, |
23 IFWL_Widget* pOuter) { | 23 IFWL_Widget* pOuter) { |
24 IFWL_SpinButton* pSpinButton = new IFWL_SpinButton; | 24 IFWL_SpinButton* pSpinButton = new IFWL_SpinButton; |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 if (!bUpEnable && !bDownEnable) { | 420 if (!bUpEnable && !bDownEnable) { |
421 return; | 421 return; |
422 } | 422 } |
423 CFWL_EvtSpbClick wmPosChanged; | 423 CFWL_EvtSpbClick wmPosChanged; |
424 wmPosChanged.m_pSrcTarget = m_pOwner->m_pInterface; | 424 wmPosChanged.m_pSrcTarget = m_pOwner->m_pInterface; |
425 wmPosChanged.m_bUp = bUpEnable; | 425 wmPosChanged.m_bUp = bUpEnable; |
426 m_pOwner->DispatchEvent(&wmPosChanged); | 426 m_pOwner->DispatchEvent(&wmPosChanged); |
427 m_pOwner->Repaint(bUpEnable ? &m_pOwner->m_rtUpButton | 427 m_pOwner->Repaint(bUpEnable ? &m_pOwner->m_rtUpButton |
428 : &m_pOwner->m_rtDnButton); | 428 : &m_pOwner->m_rtDnButton); |
429 } | 429 } |
OLD | NEW |