mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-02 22:50:41 +08:00
20 lines
489 B
C++
20 lines
489 B
C++
#include "Dialogs/PresetEditor.hpp"
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
PrinterEditor::PrinterEditor(wxWindow* parent, t_config_option_keys options) :
|
|
PresetEditor(parent, options) {
|
|
|
|
this->config = Slic3r::Config::new_from_defaults(this->my_options());
|
|
this->_update_tree();
|
|
this->load_presets();
|
|
this->_update();
|
|
this->_build();
|
|
}
|
|
|
|
void PrinterEditor::_update(const std::string& opt_key) {
|
|
}
|
|
|
|
void PrinterEditor::_build() {
|
|
}
|
|
}} // namespace Slic3r::GUI
|