OrcaSlicer/src/slic3r/GUI/MonitorPage.hpp
Aidan 951fc8e98a
A *lot* of import fixes for flatpak (#3909)
* 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
2024-01-31 11:23:29 +00:00

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