| 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_PUSHBUTTONTP_H | 7 #ifndef _FWL_PUSHBUTTONTP_H |
| 8 #define _FWL_PUSHBUTTONTP_H | 8 #define _FWL_PUSHBUTTONTP_H |
| 9 class CFWL_WidgetTP; | 9 class CFWL_WidgetTP; |
| 10 class CFWL_PushButtonTP; | 10 class CFWL_PushButtonTP; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 int32_t GetColorID(FX_DWORD dwStates); | 33 int32_t GetColorID(FX_DWORD dwStates); |
| 34 | 34 |
| 35 struct PBThemeData { | 35 struct PBThemeData { |
| 36 FX_ARGB clrBorder[5]; | 36 FX_ARGB clrBorder[5]; |
| 37 FX_ARGB clrStart[5]; | 37 FX_ARGB clrStart[5]; |
| 38 FX_ARGB clrEnd[5]; | 38 FX_ARGB clrEnd[5]; |
| 39 FX_ARGB clrFill[5]; | 39 FX_ARGB clrFill[5]; |
| 40 } * m_pThemeData; | 40 } * m_pThemeData; |
| 41 }; | 41 }; |
| 42 #endif | 42 #endif |
| OLD | NEW |