aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.hpp
blob: 974affb76d6a53b2b2b902934b0e1bd7f213e3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef WXMAIN_HPP_
#define WXMAIN_HPP_

#include <wx/button.h>
#include <wx/dcclient.h>
#include <wx/frame.h>
#include <wx/stattext.h>

class MainFrame : public wxFrame
{
    enum Id {
        Welcome = 1,
        Single
    };

    int m_radius = 10;

    const wxRect m_clipping_region = {20, 100, 600, 360};

public:
    MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 480))
    {
        new wxStaticText(this, Id::Welcome, "Welcome to the GUI.", wxPoint(20, 20));
        new wxButton(this, Id::Single, "Single", wxPoint(20, 60));

        Bind(wxEVT_BUTTON, &MainFrame::onSinglePressed, this, Id::Single);
        Bind(wxEVT_PAINT, &MainFrame::onPaint, this, wxID_ANY);
    }

    void onPaint([[maybe_unused]] wxPaintEvent& pe) {
        auto *dc = new wxClientDC(this);
        dc->SetClippingRegion(m_clipping_region);

        dc->SetBrush(*wxBLACK_BRUSH);
        dc->SetPen(*wxBLACK_PEN);
        dc->DrawRectangle(m_clipping_region);

        dc->SetPen(*wxRED_PEN);
        dc->DrawCircle(320, 240, m_radius);
    }

    void onSinglePressed(wxCommandEvent& ce) {
        auto button = dynamic_cast<wxButton *>(ce.GetEventObject());
        button->SetLabel("Nice");
        updateDrawing();
    }

    void updateDrawing() {
        m_radius += 10;
        this->RefreshRect(m_clipping_region);
    }
};

#endif // WXMAIN_HPP_