19 lines
404 B
C++
19 lines
404 B
C++
#ifndef slic3r_GUI_WebView_hpp_
|
|
#define slic3r_GUI_WebView_hpp_
|
|
|
|
#include <wx/webview.h>
|
|
|
|
class WebView
|
|
{
|
|
public:
|
|
static wxWebView *CreateWebView(wxWindow *parent, wxString const &url);
|
|
|
|
static void LoadUrl(wxWebView * webView, wxString const &url);
|
|
|
|
static bool RunScript(wxWebView * webView, wxString const & msg);
|
|
|
|
static void RecreateAll();
|
|
};
|
|
|
|
#endif // !slic3r_GUI_WebView_hpp_
|