mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-17 11:47:54 -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
36
src/slic3r/GUI/ParamsDialog.hpp
Normal file
36
src/slic3r/GUI/ParamsDialog.hpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef slic3r_GUI_ParamsDialog_hpp_
|
||||
#define slic3r_GUI_ParamsDialog_hpp_
|
||||
|
||||
#include <wx/wx.h>
|
||||
#include <wx/intl.h>
|
||||
#include <wx/collpane.h>
|
||||
|
||||
#include "GUI_Utils.hpp"
|
||||
#include "wxExtensions.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
namespace GUI {
|
||||
|
||||
class ParamsPanel;
|
||||
|
||||
class ParamsDialog : public DPIDialog
|
||||
{
|
||||
public:
|
||||
ParamsDialog(wxWindow * parent);
|
||||
|
||||
ParamsPanel * panel() { return m_panel; }
|
||||
|
||||
void Popup();
|
||||
|
||||
protected:
|
||||
void on_dpi_changed(const wxRect& suggested_rect) override;
|
||||
|
||||
private:
|
||||
ParamsPanel * m_panel;
|
||||
wxWindowDisabler *m_winDisabler = nullptr;
|
||||
};
|
||||
|
||||
} // namespace GUI
|
||||
} // namespace Slic3r
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue