2018-04-20 12:58:07 +02:00
|
|
|
#ifndef slic3r_Preferences_hpp_
|
|
|
|
|
#define slic3r_Preferences_hpp_
|
|
|
|
|
|
2018-02-23 14:55:27 +01:00
|
|
|
#include "GUI.hpp"
|
|
|
|
|
|
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
|
class ConfigOptionsGroup;
|
|
|
|
|
|
|
|
|
|
class PreferencesDialog : public wxDialog
|
|
|
|
|
{
|
|
|
|
|
std::map<std::string, std::string> m_values;
|
|
|
|
|
std::shared_ptr<ConfigOptionsGroup> m_optgroup;
|
|
|
|
|
public:
|
2018-10-02 13:23:38 +02:00
|
|
|
PreferencesDialog(wxWindow* parent);
|
2018-10-31 12:56:08 +01:00
|
|
|
~PreferencesDialog() {}
|
2018-02-23 14:55:27 +01:00
|
|
|
|
|
|
|
|
void build();
|
|
|
|
|
void accept();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
|
} // Slic3r
|
|
|
|
|
|
2018-04-20 12:58:07 +02:00
|
|
|
|
|
|
|
|
#endif /* slic3r_Preferences_hpp_ */
|