mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-27 00:24:00 -06:00
Added SimplificationDialog
This commit is contained in:
parent
d243282d32
commit
6f9f4f78b7
9 changed files with 181 additions and 0 deletions
25
src/slic3r/GUI/SimplificationDialog.hpp
Normal file
25
src/slic3r/GUI/SimplificationDialog.hpp
Normal 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_
|
Loading…
Add table
Add a link
Reference in a new issue