Files
OrcaSlicer-KX/src/slic3r/GUI/ModelMall.hpp
tao wang 752e00694a FIX:fixed some mall issues
1. The size of the window is scaled to 0.75
2. Add an interface to close publishing pages
3. The host chooses not to judge caching anymore

Change-Id: I8db73a94203ba427059d5121659dfdcd8d4c1940
2022-12-15 04:33:48 -05:00

69 lines
1.7 KiB
C++

#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 * 0.75), FromDIP(1040 * 0.75))
#define MODEL_MALL_PAGE_CONTROL_SIZE wxSize(FromDIP(1400 * 0.75), FromDIP(40 * 0.75))
#define MODEL_MALL_PAGE_WEB_SIZE wxSize(FromDIP(1400 * 0.75), FromDIP(1000 * 0.75))
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);
void on_refresh(wxMouseEvent& evt);
public:
wxPanel* m_web_control_panel{nullptr};
wxWebView* m_browser{nullptr};
wxString m_url;
};
}} // namespace Slic3r::GUI
#endif