mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-01 13:12:38 -06:00
Change-Id: Ie723d8994dddcaeb21299837a0e34d8c15b698ed (cherry picked from commit 05d3a1c20a6f4a817dd098c2b121539863257a66)
16 lines
372 B
C++
16 lines
372 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);
|
|
};
|
|
|
|
#endif // !slic3r_GUI_WebView_hpp_
|