| 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_GRID_IMP_H | 7 #ifndef _FWL_GRID_IMP_H |
| 8 #define _FWL_GRID_IMP_H | 8 #define _FWL_GRID_IMP_H |
| 9 class CFWL_Content; | 9 class CFWL_Content; |
| 10 class IFWL_Widget; | 10 class IFWL_Widget; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 public: | 183 public: |
| 184 CFWL_GridImpDelegate(CFWL_GridImp* pOwner); | 184 CFWL_GridImpDelegate(CFWL_GridImp* pOwner); |
| 185 int32_t OnProcessMessage(CFWL_Message* pMessage) override; | 185 int32_t OnProcessMessage(CFWL_Message* pMessage) override; |
| 186 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics, | 186 FWL_ERR OnDrawWidget(CFX_Graphics* pGraphics, |
| 187 const CFX_Matrix* pMatrix = NULL) override; | 187 const CFX_Matrix* pMatrix = NULL) override; |
| 188 | 188 |
| 189 protected: | 189 protected: |
| 190 CFWL_GridImp* m_pOwner; | 190 CFWL_GridImp* m_pOwner; |
| 191 }; | 191 }; |
| 192 #endif | 192 #endif |
| OLD | NEW |