mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
NEW: add calibration options
add calibration option of xcam_cali, bed_leveling and vibration. Change-Id: I63dc47e08ac89554f0e45db35eecd72be484647d Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
parent
73242280ef
commit
3a9397307d
4 changed files with 94 additions and 13 deletions
|
@ -30,11 +30,21 @@
|
|||
#include "Widgets/Label.hpp"
|
||||
#include "Widgets/Button.hpp"
|
||||
#include "Widgets/StepCtrl.hpp"
|
||||
#include "Widgets/CheckBox.hpp"
|
||||
|
||||
namespace Slic3r { namespace GUI {
|
||||
|
||||
class CalibrationDialog : public DPIDialog
|
||||
{
|
||||
private:
|
||||
std::map<std::string, ::CheckBox*> m_checkbox_list;
|
||||
|
||||
wxWindow* select_xcam_cali { nullptr };
|
||||
wxWindow* select_bed_leveling { nullptr };
|
||||
wxWindow* select_vibration { nullptr };
|
||||
|
||||
wxWindow* create_check_option(wxString title, wxWindow *parent, wxString tooltip, std::string param);
|
||||
|
||||
public:
|
||||
CalibrationDialog(Plater *plater = nullptr);
|
||||
~CalibrationDialog();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue