| 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 12 matching lines...) Expand all Loading... |
| 23 void SetThemeData(FX_DWORD dwID); | 23 void SetThemeData(FX_DWORD dwID); |
| 24 void SetTopLineColor(FX_DWORD *pData); | 24 void SetTopLineColor(FX_DWORD *pData); |
| 25 void SetLeftLineColor(FX_DWORD *pData); | 25 void SetLeftLineColor(FX_DWORD *pData); |
| 26 void SetRightLineColor(FX_DWORD *pData); | 26 void SetRightLineColor(FX_DWORD *pData); |
| 27 void SetBottomLineColor(FX_DWORD *pData); | 27 void SetBottomLineColor(FX_DWORD *pData); |
| 28 void SetBackgroudColor(FX_DWORD *pData); | 28 void SetBackgroudColor(FX_DWORD *pData); |
| 29 void SetCaptionColor(FX_DWORD *pData); | 29 void SetCaptionColor(FX_DWORD *pData); |
| 30 void SetCornerColor(FX_DWORD *pData); | 30 void SetCornerColor(FX_DWORD *pData); |
| 31 FX_INT32 GetColorID(FX_DWORD dwStates); | 31 FX_INT32 GetColorID(FX_DWORD dwStates); |
| 32 | 32 |
| 33 struct PBThemeData : CFX_Object { | 33 struct PBThemeData { |
| 34 public: | |
| 35 FX_ARGB clrBorder[5]; | 34 FX_ARGB clrBorder[5]; |
| 36 FX_ARGB clrStart[5]; | 35 FX_ARGB clrStart[5]; |
| 37 FX_ARGB clrEnd[5]; | 36 FX_ARGB clrEnd[5]; |
| 38 FX_ARGB clrFill[5]; | 37 FX_ARGB clrFill[5]; |
| 39 } *m_pThemeData; | 38 } *m_pThemeData; |
| 40 }; | 39 }; |
| 41 #endif | 40 #endif |
| OLD | NEW |