OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 |
| 7 #ifndef XFA_FWL_CORE_IFWL_CUSTOM_H_ |
| 8 #define XFA_FWL_CORE_IFWL_CUSTOM_H_ |
| 9 |
| 10 #include "xfa/fwl/core/fwl_error.h" |
| 11 #include "xfa/fwl/core/ifwl_widget.h" |
| 12 |
| 13 class IFWL_Proxy; |
| 14 |
| 15 class IFWL_Custom : public IFWL_Widget { |
| 16 public: |
| 17 static IFWL_Custom* Create(const CFWL_WidgetImpProperties& properties, |
| 18 IFWL_Widget* pOuter); |
| 19 |
| 20 FWL_ERR SetProxy(IFWL_Proxy* pProxy); |
| 21 |
| 22 protected: |
| 23 IFWL_Custom(); |
| 24 }; |
| 25 |
| 26 #endif // XFA_FWL_CORE_IFWL_CUSTOM_H_ |
OLD | NEW |