2022-07-15 15:37:19 +00:00
|
|
|
#ifndef slic3r_GUI_AmsMappingPopup_hpp_
|
|
|
|
#define slic3r_GUI_AmsMappingPopup_hpp_
|
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/intl.h>
|
|
|
|
#include <wx/collpane.h>
|
|
|
|
#include <wx/dataview.h>
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
|
|
|
#include <wx/dataview.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#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/hyperlink.h>
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/popupwin.h>
|
|
|
|
#include <wx/spinctrl.h>
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/wrapsizer.h>
|
|
|
|
|
|
|
|
#include "GUI_Utils.hpp"
|
|
|
|
#include "wxExtensions.hpp"
|
|
|
|
#include "DeviceManager.hpp"
|
|
|
|
#include "Plater.hpp"
|
|
|
|
#include "BBLStatusBar.hpp"
|
|
|
|
#include "BBLStatusBarSend.hpp"
|
|
|
|
#include "Widgets/Label.hpp"
|
|
|
|
#include "Widgets/Button.hpp"
|
|
|
|
#include "Widgets/CheckBox.hpp"
|
|
|
|
#include "Widgets/ComboBox.hpp"
|
|
|
|
#include "Widgets/ScrolledWindow.hpp"
|
2023-02-13 06:06:39 +00:00
|
|
|
#include "Widgets/PopupWindow.hpp"
|
2022-07-15 15:37:19 +00:00
|
|
|
#include <wx/simplebook.h>
|
|
|
|
#include <wx/hashmap.h>
|
|
|
|
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
|
2022-07-22 09:46:10 +00:00
|
|
|
#define MATERIAL_ITEM_SIZE wxSize(FromDIP(64), FromDIP(34))
|
|
|
|
#define MATERIAL_ITEM_REAL_SIZE wxSize(FromDIP(62), FromDIP(32))
|
2023-02-16 11:56:40 +00:00
|
|
|
#define MAPPING_ITEM_REAL_SIZE wxSize(FromDIP(48), FromDIP(45))
|
2022-07-15 15:37:19 +00:00
|
|
|
#define AMS_TOTAL_COUNT 4
|
|
|
|
|
|
|
|
enum TrayType {
|
|
|
|
NORMAL,
|
|
|
|
THIRD,
|
|
|
|
EMPTY
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TrayData
|
|
|
|
{
|
|
|
|
TrayType type;
|
|
|
|
int id;
|
|
|
|
std::string name;
|
2022-08-04 09:56:40 +00:00
|
|
|
std::string filament_type;
|
2022-07-15 15:37:19 +00:00
|
|
|
wxColour colour;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MaterialItem: public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MaterialItem(wxWindow *parent,wxColour mcolour, wxString mname);
|
|
|
|
~MaterialItem();
|
|
|
|
|
2023-04-03 08:44:31 +00:00
|
|
|
wxPanel* m_main_panel;
|
2022-07-15 15:37:19 +00:00
|
|
|
wxColour m_material_coloul;
|
|
|
|
wxString m_material_name;
|
|
|
|
|
|
|
|
wxColour m_ams_coloul;
|
|
|
|
wxString m_ams_name;
|
|
|
|
|
2022-12-10 05:39:47 +00:00
|
|
|
ScalableBitmap m_arraw_bitmap_gray;
|
|
|
|
ScalableBitmap m_arraw_bitmap_white;
|
|
|
|
|
2022-07-15 15:37:19 +00:00
|
|
|
bool m_selected {false};
|
|
|
|
bool m_warning{false};
|
|
|
|
|
|
|
|
void msw_rescale();
|
|
|
|
void set_ams_info(wxColour col, wxString txt);
|
|
|
|
|
|
|
|
void on_normal();
|
|
|
|
void on_selected();
|
|
|
|
void on_warning();
|
|
|
|
|
|
|
|
void on_left_down(wxMouseEvent &evt);
|
|
|
|
void paintEvent(wxPaintEvent &evt);
|
|
|
|
void render(wxDC &dc);
|
|
|
|
void doRender(wxDC &dc);
|
|
|
|
};
|
|
|
|
|
2022-07-19 13:31:27 +00:00
|
|
|
class MappingItem : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MappingItem(wxWindow *parent);
|
|
|
|
~MappingItem();
|
|
|
|
|
2023-02-11 03:23:03 +00:00
|
|
|
void update_data(TrayData data);
|
|
|
|
void send_event(int fliament_id);
|
|
|
|
void set_tray_index(wxString t_index) {m_tray_index = t_index;};
|
|
|
|
|
|
|
|
wxString m_tray_index;
|
2022-07-19 13:31:27 +00:00
|
|
|
wxColour m_coloul;
|
|
|
|
wxString m_name;
|
|
|
|
TrayData m_tray_data;
|
2022-08-02 09:37:08 +00:00
|
|
|
bool m_unmatch{false};
|
2022-07-19 13:31:27 +00:00
|
|
|
|
|
|
|
void msw_rescale();
|
|
|
|
void paintEvent(wxPaintEvent &evt);
|
|
|
|
void render(wxDC &dc);
|
2022-08-02 09:37:08 +00:00
|
|
|
void set_data(wxColour colour, wxString name, TrayData data, bool unmatch = false);
|
2022-07-19 13:31:27 +00:00
|
|
|
void doRender(wxDC &dc);
|
|
|
|
};
|
2022-07-15 15:37:19 +00:00
|
|
|
|
2023-02-23 12:39:15 +00:00
|
|
|
class MappingContainer : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxBitmap ams_mapping_item_container;
|
|
|
|
MappingContainer(wxWindow* parent);
|
|
|
|
~MappingContainer();
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
void render(wxDC& dc);
|
|
|
|
void doRender(wxDC& dc);
|
|
|
|
};
|
|
|
|
|
2023-02-13 06:06:39 +00:00
|
|
|
class AmsMapingPopup : public PopupWindow
|
2022-07-15 15:37:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsMapingPopup(wxWindow *parent);
|
2022-08-04 10:52:10 +00:00
|
|
|
~AmsMapingPopup(){};
|
2022-07-15 15:37:19 +00:00
|
|
|
|
2022-08-02 09:37:08 +00:00
|
|
|
wxStaticText * m_warning_text{nullptr};
|
2022-07-15 15:37:19 +00:00
|
|
|
std::vector<std::string> m_materials_list;
|
2023-02-11 03:23:03 +00:00
|
|
|
std::vector<wxBoxSizer*> m_amsmapping_container_sizer_list;
|
|
|
|
std::vector<wxWindow*> m_amsmapping_container_list;
|
2022-07-19 13:31:27 +00:00
|
|
|
std::vector<MappingItem*> m_mapping_item_list;
|
2022-07-22 09:46:10 +00:00
|
|
|
|
2022-08-02 09:37:08 +00:00
|
|
|
bool m_has_unmatch_filament {false};
|
2022-07-22 09:46:10 +00:00
|
|
|
int m_current_filament_id;
|
2022-07-15 15:37:19 +00:00
|
|
|
std::string m_tag_material;
|
2022-07-22 09:46:10 +00:00
|
|
|
wxBoxSizer *m_sizer_main{nullptr};
|
2022-08-02 09:37:08 +00:00
|
|
|
wxBoxSizer *m_sizer_list{nullptr};
|
2023-04-07 09:43:37 +00:00
|
|
|
wxWindow *m_parent_item{nullptr};
|
2022-07-15 15:37:19 +00:00
|
|
|
|
2023-04-07 09:43:37 +00:00
|
|
|
wxString format_text(wxString &m_msg);
|
2022-07-15 15:37:19 +00:00
|
|
|
void update_materials_list(std::vector<std::string> list);
|
|
|
|
void set_tag_texture(std::string texture);
|
|
|
|
void update_ams_data(std::map<std::string, Ams *> amsList);
|
2023-02-11 03:23:03 +00:00
|
|
|
void add_ams_mapping(std::vector<TrayData> tray_data, wxWindow* container, wxBoxSizer* sizer);
|
2022-07-22 09:46:10 +00:00
|
|
|
void set_current_filament_id(int id){m_current_filament_id = id;};
|
|
|
|
int get_current_filament_id(){return m_current_filament_id;};
|
2022-07-19 13:31:27 +00:00
|
|
|
bool is_match_material(std::string material);
|
|
|
|
void on_left_down(wxMouseEvent &evt);
|
2022-07-15 15:37:19 +00:00
|
|
|
virtual void OnDismiss() wxOVERRIDE;
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent &event) wxOVERRIDE;
|
2022-11-17 09:58:51 +00:00
|
|
|
void paintEvent(wxPaintEvent &evt);
|
2023-04-07 09:43:37 +00:00
|
|
|
void set_parent_item(wxWindow* item) {m_parent_item = item;};
|
2022-11-17 09:58:51 +00:00
|
|
|
std::vector<TrayData> parse_ams_mapping(std::map<std::string, Ams*> amsList);
|
2022-07-15 15:37:19 +00:00
|
|
|
};
|
|
|
|
|
2023-02-13 06:06:39 +00:00
|
|
|
class AmsMapingTipPopup : public PopupWindow
|
2022-08-31 07:55:48 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsMapingTipPopup(wxWindow *parent);
|
|
|
|
~AmsMapingTipPopup(){};
|
|
|
|
void paintEvent(wxPaintEvent &evt);
|
|
|
|
|
|
|
|
virtual void OnDismiss() wxOVERRIDE;
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent &event) wxOVERRIDE;
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxPanel * m_panel_enable_ams;
|
|
|
|
wxStaticText * m_title_enable_ams;
|
|
|
|
wxStaticText * m_tip_enable_ams;
|
|
|
|
wxPanel * m_split_lines;
|
|
|
|
wxPanel * m_panel_disable_ams;
|
|
|
|
wxStaticText * m_title_disable_ams;
|
|
|
|
wxStaticText * m_tip_disable_ams;
|
|
|
|
};
|
|
|
|
|
2023-02-13 06:06:39 +00:00
|
|
|
class AmsHumidityTipPopup : public PopupWindow
|
2023-01-09 15:02:48 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsHumidityTipPopup(wxWindow* parent);
|
|
|
|
~AmsHumidityTipPopup() {};
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
|
|
|
|
virtual void OnDismiss() wxOVERRIDE;
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent& event) wxOVERRIDE;
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxStaticBitmap* m_img;
|
|
|
|
Label* m_staticText1;
|
|
|
|
Label* m_staticText2;
|
|
|
|
Label* m_staticText3;
|
|
|
|
Label* m_staticText4;
|
|
|
|
Label* m_staticText_note;
|
|
|
|
Button* m_button_confirm;
|
|
|
|
};
|
|
|
|
|
2023-02-13 06:06:39 +00:00
|
|
|
class AmsTutorialPopup : public PopupWindow
|
2022-11-16 13:13:10 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Label* text_title;
|
|
|
|
wxStaticBitmap* img_top;
|
|
|
|
wxStaticBitmap* arrows_top;
|
|
|
|
wxStaticText* tip_top;
|
|
|
|
wxStaticBitmap* arrows_bottom;
|
|
|
|
wxStaticText* tip_bottom;
|
|
|
|
wxStaticBitmap* img_middle;
|
|
|
|
wxStaticText* tip_middle;
|
|
|
|
wxStaticBitmap* img_botton;
|
|
|
|
|
|
|
|
AmsTutorialPopup(wxWindow* parent);
|
|
|
|
~AmsTutorialPopup() {};
|
|
|
|
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
virtual void OnDismiss() wxOVERRIDE;
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent& event) wxOVERRIDE;
|
|
|
|
};
|
|
|
|
|
2022-08-31 07:55:48 +00:00
|
|
|
|
2023-02-13 06:06:39 +00:00
|
|
|
class AmsIntroducePopup : public PopupWindow
|
2022-11-22 09:54:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool is_enable_ams = {false};
|
|
|
|
Label* m_staticText_top;
|
|
|
|
Label* m_staticText_bottom;
|
|
|
|
wxStaticBitmap* m_img_enable_ams;
|
|
|
|
wxStaticBitmap* m_img_disable_ams;
|
|
|
|
|
|
|
|
AmsIntroducePopup(wxWindow* parent);
|
|
|
|
~AmsIntroducePopup() {};
|
|
|
|
|
|
|
|
void set_mode(bool enable_ams);
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
virtual void OnDismiss() wxOVERRIDE;
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent& event) wxOVERRIDE;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-03-24 08:08:20 +00:00
|
|
|
class AmsReplaceMaterialDialog : public DPIDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsReplaceMaterialDialog(wxWindow* parent);
|
|
|
|
~AmsReplaceMaterialDialog() {};
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxWindow* create_split_line(wxString gname, wxColour col, wxString material, std::vector<bool> status_list);
|
|
|
|
void create();
|
|
|
|
void update_machine_obj(MachineObject* obj);
|
|
|
|
void on_left_down(wxMouseEvent& evt);
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
void on_dpi_changed(const wxRect &suggested_rect) override;
|
|
|
|
std::vector<bool> GetStatus(unsigned int status);
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxBoxSizer* m_main_sizer{nullptr};
|
|
|
|
wxBoxSizer* m_groups_sizer{nullptr};
|
|
|
|
|
|
|
|
MachineObject* m_obj{nullptr};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
enum RMTYPE {
|
|
|
|
RMTYPE_NORMAL = 0,
|
|
|
|
RMTYPE_VIRTUAL = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
class AmsRMItem : public wxWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsRMItem(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
|
|
|
|
~AmsRMItem() {};
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_color(wxColour col) {m_color = col;};
|
|
|
|
void set_type(RMTYPE type) {m_type = type;};
|
|
|
|
void set_index(std::string index) {m_index = index;};
|
|
|
|
void set_focus(bool focus) {m_focus = focus;};
|
|
|
|
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
void render(wxDC& dc);
|
|
|
|
void doRender(wxDC& dc);
|
|
|
|
|
|
|
|
private:
|
|
|
|
RMTYPE m_type;
|
|
|
|
wxColour m_color;
|
|
|
|
std::string m_index;
|
|
|
|
bool m_focus = false;
|
|
|
|
bool m_selected = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
class AmsRMArrow : public wxWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AmsRMArrow(wxWindow* parent);
|
|
|
|
~AmsRMArrow() {};
|
|
|
|
|
|
|
|
public:
|
|
|
|
void paintEvent(wxPaintEvent& evt);
|
|
|
|
void render(wxDC& dc);
|
|
|
|
void doRender(wxDC& dc);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ScalableBitmap m_bitmap_left;
|
|
|
|
ScalableBitmap m_bitmap_right;
|
|
|
|
ScalableBitmap m_bitmap_down;
|
|
|
|
};
|
|
|
|
|
2022-07-15 15:37:19 +00:00
|
|
|
wxDECLARE_EVENT(EVT_SET_FINISH_MAPPING, wxCommandEvent);
|
|
|
|
|
|
|
|
}} // namespace Slic3r::GUI
|
|
|
|
|
|
|
|
#endif
|