aboutsummaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-06-13 12:25:58 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-06-13 12:25:58 -0400
commit65b755658c62c8cf608c0ba46af4607fd7c74cc5 (patch)
treedd07668770a7b0d3ab5b3419300c2fb90ead89f5 /gui
parent3b1f2bc9d2ea61e816308630a628b123c7223ad8 (diff)
debug flags; rendering with timer
Diffstat (limited to 'gui')
-rw-r--r--gui/Makefile2
-rw-r--r--gui/wxmain.hpp22
2 files changed, 20 insertions, 4 deletions
diff --git a/gui/Makefile b/gui/Makefile
index 7cb0315..a53d412 100644
--- a/gui/Makefile
+++ b/gui/Makefile
@@ -1,5 +1,5 @@
CXX = g++-10
-CXXFLAGS = --std=c++20 \
+CXXFLAGS = --std=c++20 -ggdb -Og \
-Wall -Wextra -pedantic \
-Wno-deprecated-copy \
$(shell wx-config --cxxflags)
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index 974affb..7832bdb 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -5,14 +5,18 @@
#include <wx/dcclient.h>
#include <wx/frame.h>
#include <wx/stattext.h>
+#include <wx/timer.h>
class MainFrame : public wxFrame
{
enum Id {
Welcome = 1,
- Single
+ Single,
+ RenderTimer
};
+ bool m_is_rendering = false;
+ wxTimer *m_render_timer = nullptr;
int m_radius = 10;
const wxRect m_clipping_region = {20, 100, 600, 360};
@@ -22,9 +26,11 @@ public:
{
new wxStaticText(this, Id::Welcome, "Welcome to the GUI.", wxPoint(20, 20));
new wxButton(this, Id::Single, "Single", wxPoint(20, 60));
+ m_render_timer = new wxTimer(this, Id::RenderTimer);
Bind(wxEVT_BUTTON, &MainFrame::onSinglePressed, this, Id::Single);
Bind(wxEVT_PAINT, &MainFrame::onPaint, this, wxID_ANY);
+ Bind(wxEVT_TIMER, &MainFrame::onRenderTimer, this, Id::RenderTimer);
}
void onPaint([[maybe_unused]] wxPaintEvent& pe) {
@@ -41,12 +47,22 @@ public:
void onSinglePressed(wxCommandEvent& ce) {
auto button = dynamic_cast<wxButton *>(ce.GetEventObject());
- button->SetLabel("Nice");
+
+ if (!m_render_timer->IsRunning()) {
+ m_render_timer->Start(100);
+ button->SetLabel("Stop");
+ } else {
+ m_render_timer->Stop();
+ button->SetLabel("Single");
+ }
+ }
+
+ void onRenderTimer([[maybe_unused]] wxTimerEvent& te) {
updateDrawing();
}
void updateDrawing() {
- m_radius += 10;
+ m_radius++;
this->RefreshRect(m_clipping_region);
}
};