5ff8ae955b
+ Code refactoring: DoubleSlider is extracted from wxExtensions
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#ifndef slic3r_GUI_ExtruderSequenceDialog_hpp_
|
|
#define slic3r_GUI_ExtruderSequenceDialog_hpp_
|
|
|
|
#include "GUI_Utils.hpp"
|
|
#include "DoubleSlider.hpp"
|
|
|
|
class wxTextCtrl;
|
|
class wxFlexGridSizer;
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// ExtruderSequenceDialog: a node inside ObjectDataViewModel
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class ExtruderSequenceDialog: public DPIDialog
|
|
{
|
|
ScalableBitmap m_bmp_del;
|
|
ScalableBitmap m_bmp_add;
|
|
DoubleSlider::ExtrudersSequence m_sequence;
|
|
|
|
wxTextCtrl* m_interval_by_layers {nullptr};
|
|
wxTextCtrl* m_interval_by_mm {nullptr};
|
|
|
|
wxFlexGridSizer* m_intervals_grid_sizer {nullptr};
|
|
wxFlexGridSizer* m_extruders_grid_sizer {nullptr};
|
|
public:
|
|
ExtruderSequenceDialog(const DoubleSlider::ExtrudersSequence& sequence);
|
|
|
|
~ExtruderSequenceDialog() {}
|
|
|
|
DoubleSlider::ExtrudersSequence GetValue() { return m_sequence; }
|
|
|
|
protected:
|
|
void apply_extruder_sequence();
|
|
void on_dpi_changed(const wxRect& suggested_rect) override;
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif // slic3r_GUI_ExtruderSequenceDialog_hpp_
|