#include <wx/webview_chromium.h>
A factory class for creating wxWebViewChromium backend.
By default, wxWebViewFactoryChromium is not registered in wxWebView, developer should register the factory class in wxWebView before using.
Public Member Functions | |
virtual wxWebView * | Create () |
Function to create a new wxWebView with two-step creation, wxWebView::Create should be called on the returned object. | |
virtual wxWebView * | Create (wxWindow *parent, wxWindowID id, const wxString &url=wxWebViewDefaultURLStr, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString &name=wxWebViewNameStr) |
Function to create a new wxWebView with parameters. | |
Additional Inherited Members | |
Protected Member Functions inherited from wxObject | |
void | AllocExclusive () |
Ensure that this object's data is not shared with any other object. | |
virtual wxObjectRefData * | CreateRefData () const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. | |
virtual wxObjectRefData * | CloneRefData (const wxObjectRefData *data) const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. | |
Protected Attributes inherited from wxObject | |
wxObjectRefData * | m_refData |
Pointer to an object which is the object's reference-counted data. | |
|
virtual |
Function to create a new wxWebView with two-step creation, wxWebView::Create should be called on the returned object.
Implements wxWebViewFactory.
|
virtual |
Function to create a new wxWebView with parameters.
parent | Parent window for the control |
id | ID of this control |
url | Initial URL to load |
pos | Position of the control |
size | Size of the control |
style | Window style. For generic window styles, please see wxWindow. |
name | Window name. |
Implements wxWebViewFactory.