blob: b5122f64bb4b4572c9193b288eda9885a89e0d58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef WXMAIN_HPP_
#define WXMAIN_HPP_
#include <wx/frame.h>
#include <wx/stattext.h>
class MainFrame : public wxFrame
{
public:
MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 480))
{
auto lTitle = new wxStaticText(this, wxID_ANY, "Welcome to the GUI.");
}
};
#endif // WXMAIN_HPP_
|