mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00

* A *lot* of import fixes for flatpak Aside, thank you @hadess for the majority of these fixes. You are the base point for a lot of issues fixed during the creation of this flatpak. * Use slic3r::load_string_file Boost 1.84 removed `boost::fs::load_string_file` so use the func located in Utils.hpp
24 lines
492 B
C++
24 lines
492 B
C++
#ifndef slic3r_MonitorPage_hpp_
|
|
#define slic3r_MonitorPage_hpp_
|
|
|
|
#include <wx/panel.h>
|
|
#include <wx/sizer.h>
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
class MonitorPage : public wxPanel
|
|
{
|
|
private:
|
|
wxBoxSizer* m_main_sizer;
|
|
wxBoxSizer* m_content_sizer;
|
|
public:
|
|
MonitorPage(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxTAB_TRAVERSAL);
|
|
~MonitorPage();
|
|
void msw_rescale() {}
|
|
};
|
|
|
|
|
|
}
|
|
}
|
|
#endif
|