Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: xfa/fwl/basewidget/fwl_scrollbarimp.cpp

Issue 1921853006: More FWL interface cleanup. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698