mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-01 20:40:41 -07:00
* step import dialog * update * update * drop file dialog * Update UnsavedChangesDialog.cpp * update * fix focus * Update CreatePresetsDialog.cpp * improve usage of return button * fix first button not getting hover effects * update * update * improve button styles * update button events * update button events * update button events * remove Raise()
53 lines
No EOL
1.5 KiB
C++
53 lines
No EOL
1.5 KiB
C++
#ifndef _STEP_MESH_DIALOG_H_
|
|
#define _STEP_MESH_DIALOG_H_
|
|
|
|
#include <thread>
|
|
#include "GUI_App.hpp"
|
|
#include "GUI_Utils.hpp"
|
|
#include "libslic3r/Format/STEP.hpp"
|
|
#include "Widgets/Button.hpp"
|
|
class Button;
|
|
|
|
class StepMeshDialog : public Slic3r::GUI::DPIDialog
|
|
{
|
|
public:
|
|
StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double linear_init, double angle_init);
|
|
~StepMeshDialog() override;
|
|
void on_dpi_changed(const wxRect& suggested_rect) override;
|
|
inline double get_linear_defletion() {
|
|
double value;
|
|
if (m_linear_last.ToDouble(&value)) {
|
|
return value;
|
|
}else {
|
|
return m_last_linear;
|
|
}
|
|
}
|
|
inline double get_angle_defletion() {
|
|
double value;
|
|
if (m_angle_last.ToDouble(&value)) {
|
|
return value;
|
|
} else {
|
|
return m_last_angle;
|
|
}
|
|
}
|
|
inline bool get_split_compound_value() {
|
|
return m_split_compound_checkbox->GetValue();
|
|
}
|
|
private:
|
|
Slic3r::Step& m_file;
|
|
wxCheckBox* m_checkbox = nullptr;
|
|
wxCheckBox* m_split_compound_checkbox = nullptr;
|
|
wxString m_linear_last;
|
|
wxString m_angle_last;
|
|
wxStaticText* mesh_face_number_text;
|
|
double m_last_linear = 0.003;
|
|
double m_last_angle = 0.5;
|
|
unsigned int m_mesh_number = 0;
|
|
boost::thread* m_task {nullptr};
|
|
bool validate_number_range(const wxString& value, double min, double max);
|
|
void update_mesh_number_text();
|
|
void on_task_done(wxCommandEvent& event);
|
|
void stop_task();
|
|
};
|
|
|
|
#endif // _STEP_MESH_DIALOG_H_
|