Added SimplificationDialog

This commit is contained in:
YuSanka 2021-07-09 09:10:03 +02:00
parent d243282d32
commit 6f9f4f78b7
9 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#ifndef slic3r_SimplificationDialog_hpp_
#define slic3r_SimplificationDialog_hpp_
#include "GUI_Utils.hpp"
namespace Slic3r {
namespace GUI {
class SimplificationDialog : public DPIDialog
{
void OnOK(wxEvent& event);
public:
SimplificationDialog(wxWindow* parent);
~SimplificationDialog();
protected:
void on_dpi_changed(const wxRect& suggested_rect) override;
};
} // namespace GUI
} // namespace Slic3r
#endif //slic3r_SimplificationDialog_hpp_