aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-06-13 11:59:07 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-06-13 11:59:07 -0400
commit3b1f2bc9d2ea61e816308630a628b123c7223ad8 (patch)
treeb19a3e469a5b833a9c6b5ba9cd5eac97eda5c73a
parentba34f22f9ca604cadf8a7fd88af0f22e52ef58e9 (diff)
added window region painting
-rw-r--r--gui/wxmain.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index 793fbc1..974affb 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -2,6 +2,7 @@
#define WXMAIN_HPP_
#include <wx/button.h>
+#include <wx/dcclient.h>
#include <wx/frame.h>
#include <wx/stattext.h>
@@ -12,6 +13,10 @@ class MainFrame : public wxFrame
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))
{
@@ -19,11 +24,30 @@ public:
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);
}
};