mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Add the full source of BambuStudio
using version 1.0.10
This commit is contained in:
parent
30bcadab3e
commit
1555904bef
3771 changed files with 1251328 additions and 0 deletions
33
src/slic3r/GUI/AuxiliaryDialog.hpp
Normal file
33
src/slic3r/GUI/AuxiliaryDialog.hpp
Normal file
|
@ -0,0 +1,33 @@
|
|||
#ifndef slic3r_GUI_AuxiliaryDialog_hpp_
|
||||
#define slic3r_GUI_AuxiliaryDialog_hpp_
|
||||
|
||||
#include <wx/wx.h>
|
||||
#include <wx/intl.h>
|
||||
#include <wx/collpane.h>
|
||||
|
||||
#include "GUI_Utils.hpp"
|
||||
#include "wxExtensions.hpp"
|
||||
|
||||
class AuxiliaryList;
|
||||
|
||||
namespace Slic3r {
|
||||
namespace GUI {
|
||||
|
||||
class AuxiliaryDialog : public DPIDialog
|
||||
{
|
||||
public:
|
||||
AuxiliaryDialog(wxWindow * parent);
|
||||
|
||||
AuxiliaryList * aux_list() { return m_aux_list; }
|
||||
|
||||
protected:
|
||||
void on_dpi_changed(const wxRect& suggested_rect) override;
|
||||
|
||||
private:
|
||||
AuxiliaryList * m_aux_list;
|
||||
};
|
||||
|
||||
} // namespace GUI
|
||||
} // namespace Slic3r
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue