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

57 lines
1.3 KiB
C++
Raw Normal View History

2018-03-13 11:39:57 +00:00
#ifndef slic3r_ConfigWizard_hpp_
#define slic3r_ConfigWizard_hpp_
#include <memory>
#include <wx/dialog.h>
#include "GUI_Utils.hpp"
2018-03-13 11:39:57 +00:00
namespace Slic3r {
class PresetBundle;
class PresetUpdater;
2018-03-13 11:39:57 +00:00
namespace GUI {
class ConfigWizard: public DPIDialog
2018-03-13 11:39:57 +00:00
{
public:
2019-01-30 14:22:17 +00:00
// Why is the Wizard run
enum RunReason {
RR_DATA_EMPTY, // No or empty datadir
RR_DATA_LEGACY, // Pre-updating datadir
RR_DATA_INCOMPAT, // Incompatible datadir - Slic3r downgrade situation
RR_USER, // User requested the Wizard from the menus
};
ConfigWizard(wxWindow *parent, RunReason run_reason);
ConfigWizard(ConfigWizard &&) = delete;
ConfigWizard(const ConfigWizard &) = delete;
ConfigWizard &operator=(ConfigWizard &&) = delete;
ConfigWizard &operator=(const ConfigWizard &) = delete;
~ConfigWizard();
// Run the Wizard. Return whether it was completed.
bool run(PresetBundle *preset_bundle, const PresetUpdater *updater);
static const wxString& name(const bool from_menu = false);
protected:
void on_dpi_changed(const wxRect &suggested_rect) override ;
2018-03-13 11:39:57 +00:00
private:
2019-01-30 14:22:17 +00:00
struct priv;
std::unique_ptr<priv> p;
2018-03-13 11:39:57 +00:00
2019-01-30 14:22:17 +00:00
friend struct ConfigWizardPage;
2018-03-13 11:39:57 +00:00
};
}
}
#endif