mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-23 21:05:31 -07:00
25 lines
471 B
C++
25 lines
471 B
C++
#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_
|