PrusaSlicer-NonPlainar/src/slic3r/GUI/ConfigWizard_private.hpp

399 lines
11 KiB
C++
Raw Normal View History

2018-03-13 11:39:57 +00:00
#ifndef slic3r_ConfigWizard_private_hpp_
#define slic3r_ConfigWizard_private_hpp_
#include "ConfigWizard.hpp"
#include <vector>
#include <set>
#include <unordered_map>
2019-01-30 14:22:17 +00:00
#include <functional>
#include <boost/filesystem.hpp>
2018-03-13 11:39:57 +00:00
#include <wx/sizer.h>
#include <wx/panel.h>
#include <wx/button.h>
2018-04-05 14:10:44 +00:00
#include <wx/choice.h>
#include <wx/spinctrl.h>
2019-01-30 14:22:17 +00:00
#include <wx/textctrl.h>
#include <wx/listbox.h>
#include <wx/checklst.h>
2018-03-13 11:39:57 +00:00
2018-04-05 14:10:44 +00:00
#include "libslic3r/PrintConfig.hpp"
#include "slic3r/Utils/PresetUpdater.hpp"
#include "AppConfig.hpp"
#include "Preset.hpp"
2018-04-05 14:10:44 +00:00
#include "BedShapeDialog.hpp"
namespace fs = boost::filesystem;
2018-03-13 11:39:57 +00:00
namespace Slic3r {
namespace GUI {
enum {
2019-01-30 14:22:17 +00:00
WRAP_WIDTH = 500,
MODEL_MIN_WRAP = 150,
DIALOG_MARGIN = 15,
INDEX_MARGIN = 40,
BTN_SPACING = 10,
INDENT_SPACING = 30,
VERTICAL_SPACING = 10,
MAX_COLS = 4,
ROW_SPACING = 75,
2018-03-13 11:39:57 +00:00
};
enum Technology {
// Bitflag equivalent of PrinterTechnology
T_FFF = 0x1,
T_SLA = 0x2,
T_Any = ~0,
};
2019-01-30 14:22:17 +00:00
typedef std::function<bool(const VendorProfile::PrinterModel&)> ModelFilter;
struct PrinterPicker: wxPanel
{
2019-01-30 14:22:17 +00:00
struct Checkbox : wxCheckBox
{
Checkbox(wxWindow *parent, const wxString &label, const std::string &model, const std::string &variant) :
wxCheckBox(parent, wxID_ANY, label),
model(model),
variant(variant)
{}
std::string model;
std::string variant;
};
const std::string vendor_id;
std::vector<Checkbox*> cboxes;
std::vector<Checkbox*> cboxes_alt;
PrinterPicker(wxWindow *parent, const VendorProfile &vendor, wxString title, size_t max_cols, const AppConfig &appconfig, const ModelFilter &filter);
PrinterPicker(wxWindow *parent, const VendorProfile &vendor, wxString title, size_t max_cols, const AppConfig &appconfig);
2019-01-30 14:22:17 +00:00
void select_all(bool select, bool alternates = false);
2019-01-30 14:22:17 +00:00
void select_one(size_t i, bool select);
bool any_selected() const;
int get_width() const { return width; }
const std::vector<int>& get_button_indexes() { return m_button_indexes; }
private:
int width;
std::vector<int> m_button_indexes;
void on_checkbox(const Checkbox *cbox, bool checked);
};
2018-03-13 11:39:57 +00:00
struct ConfigWizardPage: wxPanel
{
2019-01-30 14:22:17 +00:00
ConfigWizard *parent;
const wxString shortname;
wxBoxSizer *content;
const unsigned indent;
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
ConfigWizardPage(ConfigWizard *parent, wxString title, wxString shortname, unsigned indent = 0);
virtual ~ConfigWizardPage();
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
template<class T>
void append(T *thing, int proportion = 0, int flag = wxEXPAND|wxTOP|wxBOTTOM, int border = 10)
{
content->Add(thing, proportion, flag, border);
}
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
void append_text(wxString text);
void append_spacer(int space);
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
ConfigWizard::priv *wizard_p() const { return parent->p.get(); }
2019-01-30 14:22:17 +00:00
virtual void apply_custom_config(DynamicPrintConfig &config) {}
};
2019-01-30 14:22:17 +00:00
struct PageWelcome: ConfigWizardPage
{
wxCheckBox *cbox_reset;
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
PageWelcome(ConfigWizard *parent);
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
bool reset_user_profile() const { return cbox_reset != nullptr ? cbox_reset->GetValue() : false; }
2018-03-13 11:39:57 +00:00
};
2019-01-30 14:22:17 +00:00
struct PagePrinters: ConfigWizardPage
2018-03-13 11:39:57 +00:00
{
2019-01-30 14:22:17 +00:00
std::vector<PrinterPicker *> printer_pickers;
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
PagePrinters(ConfigWizard *parent, wxString title, wxString shortname, const VendorProfile &vendor, unsigned indent, Technology technology);
void select_all(bool select, bool alternates = false);
int get_width() const;
bool any_selected() const;
};
struct Materials
{
Technology technology;
std::vector<Preset> presets;
std::set<std::string> types;
Materials(Technology technology) : technology(technology) {}
const std::string& appconfig_section() const;
const std::string& get_type(Preset &preset) const;
const std::string& get_vendor(Preset &preset) const;
template<class F> void filter_presets(const std::string &type, const std::string &vendor, F cb) {
for (Preset &preset : presets) {
if ((type.empty() || get_type(preset) == type) && (vendor.empty() || get_vendor(preset) == vendor)) {
cb(preset);
}
}
}
static const std::string UNKNOWN;
static const std::string& get_filament_type(const Preset &preset);
static const std::string& get_filament_vendor(const Preset &preset);
static const std::string& get_material_type(Preset &preset);
static const std::string& get_material_vendor(const Preset &preset);
};
// Here we extend wxListBox and wxCheckListBox
// to make the client data API much easier to use.
template<class T, class D> struct DataList : public T
{
DataList(wxWindow *parent) : T(parent, wxID_ANY) {}
int append(const std::string &label, const D *data) {
void *ptr = reinterpret_cast<void*>(const_cast<D*>(data));
return this->Append(from_u8(label), ptr);
}
int append(const wxString &label, const D *data) {
void *ptr = reinterpret_cast<void*>(const_cast<D*>(data));
return this->Append(label, ptr);
}
const D& get_data(int n) {
return *reinterpret_cast<const D*>(this->GetClientData(n));
}
int find(const D &data) {
for (int i = 0; i < this->GetCount(); i++) {
if (get_data(i) == data) { return i; }
}
return wxNOT_FOUND;
}
};
typedef DataList<wxListBox, std::string> StringList;
typedef DataList<wxCheckListBox, Preset> PresetList;
struct PageMaterials: ConfigWizardPage
{
Materials *materials;
StringList *list_l1, *list_l2;
PresetList *list_l3;
int sel1_prev, sel2_prev;
PageMaterials(ConfigWizard *parent, Materials *materials, wxString title, wxString shortname, wxString list1name);
void update_lists(int sel1, int sel2);
void select_material(int i);
void select_all(bool select);
static const std::string EMPTY;
2019-01-30 14:22:17 +00:00
};
struct PageCustom: ConfigWizardPage
{
PageCustom(ConfigWizard *parent);
bool custom_wanted() const { return cb_custom->GetValue(); }
std::string profile_name() const { return into_u8(tc_profile_name->GetValue()); }
private:
2019-02-07 14:55:47 +00:00
static const char* default_profile_name;
2019-01-30 14:22:17 +00:00
wxCheckBox *cb_custom;
wxTextCtrl *tc_profile_name;
2019-02-07 14:55:47 +00:00
wxString profile_name_prev;
2018-03-13 11:39:57 +00:00
};
struct PageUpdate: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
bool version_check;
bool preset_update;
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
PageUpdate(ConfigWizard *parent);
2018-03-13 11:39:57 +00:00
};
struct PageVendors: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
std::vector<PrinterPicker*> pickers;
2019-01-30 14:22:17 +00:00
PageVendors(ConfigWizard *parent);
2019-01-30 14:22:17 +00:00
void on_vendor_pick(size_t i);
2018-03-13 11:39:57 +00:00
};
struct PageFirmware: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
const ConfigOptionDef &gcode_opt;
wxChoice *gcode_picker;
2018-04-05 14:10:44 +00:00
2019-01-30 14:22:17 +00:00
PageFirmware(ConfigWizard *parent);
virtual void apply_custom_config(DynamicPrintConfig &config);
2018-03-13 11:39:57 +00:00
};
struct PageBedShape: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
BedShapePanel *shape_panel;
2018-04-05 14:10:44 +00:00
2019-01-30 14:22:17 +00:00
PageBedShape(ConfigWizard *parent);
virtual void apply_custom_config(DynamicPrintConfig &config);
2018-03-13 11:39:57 +00:00
};
struct PageDiameters: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
wxSpinCtrlDouble *spin_nozzle;
wxSpinCtrlDouble *spin_filam;
2018-04-05 14:10:44 +00:00
2019-01-30 14:22:17 +00:00
PageDiameters(ConfigWizard *parent);
virtual void apply_custom_config(DynamicPrintConfig &config);
2018-03-13 11:39:57 +00:00
};
struct PageTemperatures: ConfigWizardPage
{
2019-01-30 14:22:17 +00:00
wxSpinCtrlDouble *spin_extr;
wxSpinCtrlDouble *spin_bed;
2018-04-05 14:10:44 +00:00
2019-01-30 14:22:17 +00:00
PageTemperatures(ConfigWizard *parent);
virtual void apply_custom_config(DynamicPrintConfig &config);
2018-03-13 11:39:57 +00:00
};
class ConfigWizardIndex: public wxPanel
{
public:
2019-01-30 14:22:17 +00:00
ConfigWizardIndex(wxWindow *parent);
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
void add_page(ConfigWizardPage *page);
void add_label(wxString label, unsigned indent = 0);
size_t active_item() const { return item_active; }
ConfigWizardPage* active_page() const;
bool active_is_last() const { return item_active < items.size() && item_active == last_page; }
void go_prev();
void go_next();
void go_to(size_t i);
void go_to(ConfigWizardPage *page);
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
void clear();
void msw_rescale();
2018-03-13 11:39:57 +00:00
int em() const { return em_w; }
2019-01-30 14:22:17 +00:00
private:
struct Item
{
wxString label;
unsigned indent;
ConfigWizardPage *page; // nullptr page => label-only item
bool operator==(ConfigWizardPage *page) const { return this->page == page; }
};
int em_w;
2019-01-30 14:22:17 +00:00
int em_h;
ScalableBitmap bg;
ScalableBitmap bullet_black;
ScalableBitmap bullet_blue;
ScalableBitmap bullet_white;
wxStaticBitmap* logo;
2019-01-30 14:22:17 +00:00
std::vector<Item> items;
size_t item_active;
ssize_t item_hover;
size_t last_page;
int item_height() const { return std::max(bullet_black.bmp().GetSize().GetHeight(), em_w) + em_w; }
2019-01-30 14:22:17 +00:00
void on_paint(wxPaintEvent &evt);
void on_mouse_move(wxMouseEvent &evt);
2018-03-13 11:39:57 +00:00
};
2019-01-30 14:22:17 +00:00
wxDEFINE_EVENT(EVT_INDEX_PAGE, wxCommandEvent);
2018-03-13 11:39:57 +00:00
struct ConfigWizard::priv
{
2019-01-30 14:22:17 +00:00
ConfigWizard *q;
ConfigWizard::RunReason run_reason = RR_USER;
AppConfig appconfig_new; // Backing for vendor/model/variant and material selections in the GUI
2019-01-30 14:22:17 +00:00
std::unordered_map<std::string, VendorProfile> vendors;
Materials filaments; // Holds available filament presets and their types & vendors
Materials sla_materials; // Ditto for SLA materials
std::unordered_map<std::string, std::string> vendors_rsrc; // List of bundles to install from resources
std::unique_ptr<DynamicPrintConfig> custom_config; // Backing for custom printer definition
bool any_sla_selected; // Used to decide whether to display SLA Materials page
2019-01-30 14:22:17 +00:00
wxScrolledWindow *hscroll = nullptr;
wxBoxSizer *hscroll_sizer = nullptr;
wxBoxSizer *btnsizer = nullptr;
ConfigWizardPage *page_current = nullptr;
ConfigWizardIndex *index = nullptr;
wxButton *btn_sel_all = nullptr;
2019-01-30 14:22:17 +00:00
wxButton *btn_prev = nullptr;
wxButton *btn_next = nullptr;
wxButton *btn_finish = nullptr;
wxButton *btn_cancel = nullptr;
PageWelcome *page_welcome = nullptr;
PagePrinters *page_fff = nullptr;
PagePrinters *page_msla = nullptr;
PageMaterials *page_filaments = nullptr;
PageMaterials *page_sla_materials = nullptr;
2019-01-30 14:22:17 +00:00
PageCustom *page_custom = nullptr;
PageUpdate *page_update = nullptr;
PageVendors *page_vendors = nullptr; // XXX: ?
// Custom setup pages
PageFirmware *page_firmware = nullptr;
PageBedShape *page_bed = nullptr;
PageDiameters *page_diams = nullptr;
PageTemperatures *page_temps = nullptr;
priv(ConfigWizard *q)
: q(q)
, filaments(T_FFF)
, sla_materials(T_SLA)
, any_sla_selected(false)
{}
2019-01-30 14:22:17 +00:00
void load_pages();
void init_dialog_size();
2019-01-30 14:22:17 +00:00
bool check_first_variant() const;
void load_vendors();
void add_page(ConfigWizardPage *page);
void enable_next(bool enable);
void set_start_page(ConfigWizard::StartPage start_page);
2019-01-30 14:22:17 +00:00
void on_custom_setup();
void on_printer_pick(PagePrinters *page);
2019-01-30 14:22:17 +00:00
void apply_config(AppConfig *app_config, PresetBundle *preset_bundle, const PresetUpdater *updater);
int em() const { return index->em(); }
2018-03-13 11:39:57 +00:00
};
}
}
#endif