2022-07-22 08:43:08 +00:00
|
|
|
|
2022-08-29 07:31:54 +00:00
|
|
|
#ifndef _WX_ERRORMSGSTATTEXT_H_
|
|
|
|
#define _WX_ERRORMSGSTATTEXT_H_
|
2022-07-22 08:43:08 +00:00
|
|
|
|
|
|
|
#include "wx/stattext.h"
|
|
|
|
|
2022-08-29 07:31:54 +00:00
|
|
|
class WXDLLIMPEXP_CORE ErrorMsgStaticText : public wxPanel
|
2022-07-22 08:43:08 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxString m_msg;
|
2022-08-29 07:31:54 +00:00
|
|
|
ErrorMsgStaticText();
|
|
|
|
ErrorMsgStaticText(wxWindow *parent,
|
2022-07-22 08:43:08 +00:00
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
2022-08-29 07:31:54 +00:00
|
|
|
const wxSize& size = wxSize(0,0));
|
2022-07-22 08:43:08 +00:00
|
|
|
|
|
|
|
void paintEvent(wxPaintEvent &evt);
|
|
|
|
|
|
|
|
void SetLabel(wxString msg){m_msg = msg;};
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|