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 #ifndef _FWL_SCROLLBARTP_H | 7 #ifndef _FWL_SCROLLBARTP_H |
8 #define _FWL_SCROLLBARTP_H | 8 #define _FWL_SCROLLBARTP_H |
9 class CFWL_WidgetTP; | 9 class CFWL_WidgetTP; |
10 class CFWL_ScrollBarTP; | 10 class CFWL_ScrollBarTP; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 struct SBThemeData { | 46 struct SBThemeData { |
47 FX_ARGB clrPawColorLight[4]; | 47 FX_ARGB clrPawColorLight[4]; |
48 FX_ARGB clrPawColorDark[4]; | 48 FX_ARGB clrPawColorDark[4]; |
49 FX_ARGB clrBtnBK[4][2]; | 49 FX_ARGB clrBtnBK[4][2]; |
50 FX_ARGB clrBtnBorder[4]; | 50 FX_ARGB clrBtnBorder[4]; |
51 FX_ARGB clrTrackBKStart; | 51 FX_ARGB clrTrackBKStart; |
52 FX_ARGB clrTrackBKEnd; | 52 FX_ARGB clrTrackBKEnd; |
53 } * m_pThemeData; | 53 } * m_pThemeData; |
54 }; | 54 }; |
55 #endif | 55 #endif |
OLD | NEW |