mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-16 00:42:44 +00:00
JIRA: [STUDIO-13609] Change-Id: I591de7033360b9570600006cfbce2148a8d031d5 (cherry picked from commit e9c774be8f4c89b8dafa14ef56913612fb68bd0c)
83 lines
1.8 KiB
C++
83 lines
1.8 KiB
C++
#ifndef slic3r_HMSPanel_hpp_
|
|
#define slic3r_HMSPanel_hpp_
|
|
|
|
#include <wx/panel.h>
|
|
#include <wx/textctrl.h>
|
|
#include <slic3r/GUI/Widgets/Button.hpp>
|
|
#include <slic3r/GUI/DeviceManager.hpp>
|
|
#include <slic3r/GUI/Widgets/ScrolledWindow.hpp>
|
|
#include <slic3r/GUI/StatusPanel.hpp>
|
|
#include <wx/html/htmlwin.h>
|
|
|
|
#include "DeviceCore/DevHMS.h"
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
class HMSNotifyItem : public wxPanel
|
|
{
|
|
DevHMSItem & m_hms_item;
|
|
std::string m_url;
|
|
std::string dev_id;
|
|
std::string long_error_code;
|
|
|
|
wxPanel * m_panel_hms;
|
|
wxStaticBitmap *m_bitmap_notify;
|
|
wxStaticBitmap *m_bitmap_arrow;
|
|
wxStaticText * m_hms_content;
|
|
wxHtmlWindow * m_html;
|
|
wxPanel * m_staticline;
|
|
|
|
wxBitmap m_img_notify_lv1;
|
|
wxBitmap m_img_notify_lv2;
|
|
wxBitmap m_img_notify_lv3;
|
|
wxBitmap m_img_arrow;
|
|
|
|
void init_bitmaps();
|
|
wxBitmap & get_notify_bitmap();
|
|
|
|
public:
|
|
HMSNotifyItem(const std::string& dev_id, wxWindow *parent, DevHMSItem& item);
|
|
~HMSNotifyItem();
|
|
|
|
void msw_rescale() {}
|
|
};
|
|
|
|
|
|
class HMSPanel : public wxPanel
|
|
{
|
|
protected:
|
|
wxScrolledWindow *m_scrolledWindow;
|
|
wxBoxSizer * m_top_sizer;
|
|
|
|
int last_status;
|
|
|
|
void append_hms_panel(const std::string& dev_id, DevHMSItem &item);
|
|
void delete_hms_panels();
|
|
|
|
|
|
public:
|
|
HMSPanel(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxTAB_TRAVERSAL);
|
|
~HMSPanel();
|
|
|
|
void msw_rescale() {}
|
|
|
|
bool Show(bool show = true) override;
|
|
|
|
void update(MachineObject *obj_);
|
|
|
|
void show_status(int status);
|
|
|
|
void clear_hms_tag();
|
|
|
|
MachineObject *obj { nullptr };
|
|
std::map<std::string, DevHMSItem> temp_hms_list;
|
|
};
|
|
|
|
wxDECLARE_EVENT(EVT_ALREADY_READ_HMS, wxCommandEvent);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|