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_scrollbarimp.h" | 7 #include "xfa/fwl/basewidget/fwl_scrollbarimp.h" |
8 | 8 |
9 #include "xfa/fwl/basewidget/ifwl_scrollbar.h" | 9 #include "xfa/fwl/basewidget/ifwl_scrollbar.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_themepart.h" | 12 #include "xfa/fwl/core/cfwl_themepart.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 | 16 |
18 #define FWL_SCROLLBAR_Elapse 500 | 17 #define FWL_SCROLLBAR_Elapse 500 |
19 #define FWL_SCROLLBAR_MinThumb 5 | 18 #define FWL_SCROLLBAR_MinThumb 5 |
20 | 19 |
21 // static | 20 // static |
22 IFWL_ScrollBar* IFWL_ScrollBar::Create( | 21 IFWL_ScrollBar* IFWL_ScrollBar::Create( |
23 const CFWL_WidgetImpProperties& properties, | 22 const CFWL_WidgetImpProperties& properties, |
24 IFWL_Widget* pOuter) { | 23 IFWL_Widget* pOuter) { |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 } | 805 } |
807 void CFWL_ScrollBarImpDelegate::DoMouseHover(int32_t iItem, | 806 void CFWL_ScrollBarImpDelegate::DoMouseHover(int32_t iItem, |
808 const CFX_RectF& rtItem, | 807 const CFX_RectF& rtItem, |
809 int32_t& iState) { | 808 int32_t& iState) { |
810 if (iState == CFWL_PartState_Hovered) { | 809 if (iState == CFWL_PartState_Hovered) { |
811 return; | 810 return; |
812 } | 811 } |
813 iState = CFWL_PartState_Hovered; | 812 iState = CFWL_PartState_Hovered; |
814 m_pOwner->Repaint(&rtItem); | 813 m_pOwner->Repaint(&rtItem); |
815 } | 814 } |
OLD | NEW |