| 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 XFA_FWL_CORE_IFWL_WIDGET_H_ | 7 #ifndef XFA_FWL_CORE_IFWL_WIDGET_H_ |
| 8 #define XFA_FWL_CORE_IFWL_WIDGET_H_ | 8 #define XFA_FWL_CORE_IFWL_WIDGET_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/fwl_error.h" | 10 #include "core/fxcrt/include/fx_basic.h" |
| 11 #include "core/fxcrt/include/fx_coordinates.h" | 11 #include "core/fxcrt/include/fx_coordinates.h" |
| 12 #include "core/fxcrt/include/fx_system.h" | 12 #include "core/fxcrt/include/fx_system.h" |
| 13 #include "core/fxcrt/include/fx_basic.h" | 13 #include "xfa/fwl/core/fwl_error.h" |
| 14 #include "xfa/fwl/core/ifwl_target.h" | 14 #include "xfa/fwl/core/ifwl_target.h" |
| 15 | 15 |
| 16 class CFX_Graphics; | 16 class CFX_Graphics; |
| 17 class IFWL_DataProvider; | 17 class IFWL_DataProvider; |
| 18 class IFWL_Form; | 18 class IFWL_Form; |
| 19 class IFWL_NoteThread; | 19 class IFWL_Thread; |
| 20 class IFWL_ThemeProvider; | 20 class IFWL_ThemeProvider; |
| 21 class IFWL_WidgetDelegate; | 21 class IFWL_WidgetDelegate; |
| 22 | 22 |
| 23 class IFWL_Widget : public IFWL_Target { | 23 class IFWL_Widget : public IFWL_Target { |
| 24 public: | 24 public: |
| 25 FWL_ERR GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE); | 25 FWL_ERR GetWidgetRect(CFX_RectF& rect, FX_BOOL bAutoSize = FALSE); |
| 26 FWL_ERR GetGlobalRect(CFX_RectF& rect); | 26 FWL_ERR GetGlobalRect(CFX_RectF& rect); |
| 27 FWL_ERR SetWidgetRect(const CFX_RectF& rect); | 27 FWL_ERR SetWidgetRect(const CFX_RectF& rect); |
| 28 FWL_ERR GetClientRect(CFX_RectF& rect); | 28 FWL_ERR GetClientRect(CFX_RectF& rect); |
| 29 IFWL_Widget* GetParent(); | 29 IFWL_Widget* GetParent(); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 47 uint32_t HitTest(FX_FLOAT fx, FX_FLOAT fy); | 47 uint32_t HitTest(FX_FLOAT fx, FX_FLOAT fy); |
| 48 FWL_ERR TransformTo(IFWL_Widget* pWidget, FX_FLOAT& fx, FX_FLOAT& fy); | 48 FWL_ERR TransformTo(IFWL_Widget* pWidget, FX_FLOAT& fx, FX_FLOAT& fy); |
| 49 FWL_ERR TransformTo(IFWL_Widget* pWidget, CFX_RectF& rt); | 49 FWL_ERR TransformTo(IFWL_Widget* pWidget, CFX_RectF& rt); |
| 50 FWL_ERR GetMatrix(CFX_Matrix& matrix, FX_BOOL bGlobal = FALSE); | 50 FWL_ERR GetMatrix(CFX_Matrix& matrix, FX_BOOL bGlobal = FALSE); |
| 51 FWL_ERR SetMatrix(const CFX_Matrix& matrix); | 51 FWL_ERR SetMatrix(const CFX_Matrix& matrix); |
| 52 FWL_ERR DrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix = NULL); | 52 FWL_ERR DrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix = NULL); |
| 53 IFWL_ThemeProvider* GetThemeProvider(); | 53 IFWL_ThemeProvider* GetThemeProvider(); |
| 54 FWL_ERR SetThemeProvider(IFWL_ThemeProvider* pThemeProvider); | 54 FWL_ERR SetThemeProvider(IFWL_ThemeProvider* pThemeProvider); |
| 55 FWL_ERR SetDataProvider(IFWL_DataProvider* pDataProvider); | 55 FWL_ERR SetDataProvider(IFWL_DataProvider* pDataProvider); |
| 56 IFWL_WidgetDelegate* SetDelegate(IFWL_WidgetDelegate* pDelegate); | 56 IFWL_WidgetDelegate* SetDelegate(IFWL_WidgetDelegate* pDelegate); |
| 57 IFWL_NoteThread* GetOwnerThread() const; | 57 IFWL_Thread* GetOwnerThread() const; |
| 58 CFX_SizeF GetOffsetFromParent(IFWL_Widget* pParent); | 58 CFX_SizeF GetOffsetFromParent(IFWL_Widget* pParent); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 #endif // XFA_FWL_CORE_IFWL_WIDGET_H_ | 61 #endif // XFA_FWL_CORE_IFWL_WIDGET_H_ |
| OLD | NEW |