mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-15 22:01:28 +08: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
522 B
C++
24 lines
522 B
C++
|
|
#ifndef _WX_ERRORMSGSTATTEXT_H_
|
|
#define _WX_ERRORMSGSTATTEXT_H_
|
|
|
|
#include <wx/panel.h>
|
|
#include "wx/stattext.h"
|
|
|
|
class WXDLLIMPEXP_CORE ErrorMsgStaticText : public wxPanel
|
|
{
|
|
public:
|
|
wxString m_msg;
|
|
ErrorMsgStaticText();
|
|
ErrorMsgStaticText(wxWindow *parent,
|
|
wxWindowID id = wxID_ANY,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxSize(0,0));
|
|
|
|
void paintEvent(wxPaintEvent &evt);
|
|
|
|
void SetLabel(wxString msg){m_msg = msg;};
|
|
|
|
};
|
|
#endif
|