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/fwl/basewidget/fwl_spinbuttonimp.h" | 7 #include "xfa/fwl/basewidget/fwl_spinbuttonimp.h" |
8 | 8 |
9 #include "xfa/fwl/basewidget/ifwl_spinbutton.h" | 9 #include "xfa/fwl/basewidget/ifwl_spinbutton.h" |
10 #include "xfa/fwl/core/cfwl_message.h" | 10 #include "xfa/fwl/core/cfwl_message.h" |
11 #include "xfa/fwl/core/cfwl_themebackground.h" | 11 #include "xfa/fwl/core/cfwl_themebackground.h" |
12 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" | 12 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" |
13 #include "xfa/fwl/core/fwl_noteimp.h" | 13 #include "xfa/fwl/core/fwl_noteimp.h" |
14 #include "xfa/fwl/core/fwl_targetimp.h" | |
15 #include "xfa/fwl/core/fwl_widgetimp.h" | 14 #include "xfa/fwl/core/fwl_widgetimp.h" |
16 #include "xfa/fwl/core/ifwl_themeprovider.h" | 15 #include "xfa/fwl/core/ifwl_themeprovider.h" |
17 #include "xfa/fwl/core/ifwl_themeprovider.h" | 16 #include "xfa/fwl/core/ifwl_themeprovider.h" |
18 #include "xfa/fwl/core/ifwl_timer.h" | 17 #include "xfa/fwl/core/ifwl_timer.h" |
19 | 18 |
20 #define FWL_SPN_MinWidth 18 | 19 #define FWL_SPN_MinWidth 18 |
21 #define FWL_SPN_MinHeight 32 | 20 #define FWL_SPN_MinHeight 32 |
22 #define FWL_SPIN_Elapse 200 | 21 #define FWL_SPIN_Elapse 200 |
23 | 22 |
24 // static | 23 // static |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 if (!bUpEnable && !bDownEnable) { | 429 if (!bUpEnable && !bDownEnable) { |
431 return; | 430 return; |
432 } | 431 } |
433 CFWL_EvtSpbClick wmPosChanged; | 432 CFWL_EvtSpbClick wmPosChanged; |
434 wmPosChanged.m_pSrcTarget = m_pOwner->m_pInterface; | 433 wmPosChanged.m_pSrcTarget = m_pOwner->m_pInterface; |
435 wmPosChanged.m_bUp = bUpEnable; | 434 wmPosChanged.m_bUp = bUpEnable; |
436 m_pOwner->DispatchEvent(&wmPosChanged); | 435 m_pOwner->DispatchEvent(&wmPosChanged); |
437 m_pOwner->Repaint(bUpEnable ? &m_pOwner->m_rtUpButton | 436 m_pOwner->Repaint(bUpEnable ? &m_pOwner->m_rtUpButton |
438 : &m_pOwner->m_rtDnButton); | 437 : &m_pOwner->m_rtDnButton); |
439 } | 438 } |
OLD | NEW |