2018-03-13 11:39:57 +00:00
|
|
|
#ifndef slic3r_ConfigWizard_hpp_
|
|
|
|
#define slic3r_ConfigWizard_hpp_
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class PresetBundle;
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigWizard: public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
2018-03-29 15:54:43 +00:00
|
|
|
// ConfigWizard(wxWindow *parent, const PresetBundle &bundle);
|
|
|
|
ConfigWizard(wxWindow *parent);
|
2018-03-13 11:39:57 +00:00
|
|
|
ConfigWizard(ConfigWizard &&) = delete;
|
|
|
|
ConfigWizard(const ConfigWizard &) = delete;
|
|
|
|
ConfigWizard &operator=(ConfigWizard &&) = delete;
|
|
|
|
ConfigWizard &operator=(const ConfigWizard &) = delete;
|
|
|
|
~ConfigWizard();
|
|
|
|
|
2018-03-29 15:54:43 +00:00
|
|
|
static void run(wxWindow *parent, PresetBundle *preset_bundle);
|
2018-03-13 11:39:57 +00:00
|
|
|
private:
|
|
|
|
struct priv;
|
|
|
|
std::unique_ptr<priv> p;
|
|
|
|
|
|
|
|
friend class ConfigWizardPage;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|