mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06: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_
|