mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
NEW:add model mall system
Change-Id: Iccfe460cd7bfd11d91cdd7eddf142a8590e3c5b0
This commit is contained in:
parent
35edf03eca
commit
407d1faf0d
16 changed files with 630 additions and 21 deletions
66
src/slic3r/GUI/ModelMall.hpp
Normal file
66
src/slic3r/GUI/ModelMall.hpp
Normal file
|
@ -0,0 +1,66 @@
|
|||
#ifndef slic3r_ModelMall_hpp_
|
||||
#define slic3r_ModelMall_hpp_
|
||||
|
||||
#include "I18N.hpp"
|
||||
|
||||
#include <wx/font.h>
|
||||
#include <wx/colour.h>
|
||||
#include <wx/settings.h>
|
||||
#include <wx/string.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/stattext.h>
|
||||
#include <wx/gauge.h>
|
||||
#include <wx/button.h>
|
||||
#include <wx/bitmap.h>
|
||||
#include <wx/image.h>
|
||||
#include <wx/icon.h>
|
||||
#include <wx/dialog.h>
|
||||
|
||||
#if wxUSE_WEBVIEW_IE
|
||||
#include "wx/msw/webview_ie.h"
|
||||
#endif
|
||||
#if wxUSE_WEBVIEW_EDGE
|
||||
#include "wx/msw/webview_edge.h"
|
||||
#endif
|
||||
|
||||
#include "Widgets/WebView.hpp"
|
||||
#include "wx/webviewarchivehandler.h"
|
||||
#include "wx/webviewfshandler.h"
|
||||
|
||||
#include <curl/curl.h>
|
||||
#include <wx/webrequest.h>
|
||||
#include "wxExtensions.hpp"
|
||||
#include "Plater.hpp"
|
||||
#include "Widgets/StepCtrl.hpp"
|
||||
#include "Widgets/Button.hpp"
|
||||
|
||||
|
||||
#define MODEL_MALL_PAGE_SIZE wxSize(FromDIP(1400), FromDIP(1040))
|
||||
#define MODEL_MALL_PAGE_CONTROL_SIZE wxSize(FromDIP(1400), FromDIP(40))
|
||||
#define MODEL_MALL_PAGE_WEB_SIZE wxSize(FromDIP(1400), FromDIP(1000))
|
||||
|
||||
namespace Slic3r { namespace GUI {
|
||||
|
||||
class ModelMallDialog : public DPIDialog
|
||||
{
|
||||
public:
|
||||
ModelMallDialog(Plater* plater = nullptr);
|
||||
~ModelMallDialog();
|
||||
|
||||
void OnScriptMessage(wxWebViewEvent& evt);
|
||||
void on_dpi_changed(const wxRect& suggested_rect) override;
|
||||
void on_show(wxShowEvent& event);
|
||||
void on_back(wxMouseEvent& evt);
|
||||
void on_forward(wxMouseEvent& evt);
|
||||
void go_to_url(wxString url);
|
||||
void show_control(bool show);
|
||||
void go_to_mall(wxString url);
|
||||
void go_to_publish(wxString url);
|
||||
public:
|
||||
wxPanel* m_web_control_panel{nullptr};
|
||||
wxWebView* m_browser{nullptr};
|
||||
};
|
||||
|
||||
}} // namespace Slic3r::GUI
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue