aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-05-08 11:55:12 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-05-08 11:55:12 -0400
commitd2f50fb9259a3142fa6b319a7a735a0e19355d01 (patch)
tree920d579453ca23cbda5323b865b72e3a9d3c255d /gui/wxmain.hpp
parent4a0fb43d375bd095643ea50cf9b09dae6515b20e (diff)
include dsp lib; split timers; user message
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r--gui/wxmain.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index 9b3db1e..11131eb 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -59,7 +59,9 @@ public:
void onCodeDisassemble(wxCommandEvent&);
void onPaint(wxPaintEvent&);
- void onMeasureTimer(wxTimerEvent&);
+ void onTimerPerformance(wxTimerEvent&);
+ void onTimerRecord(wxTimerEvent&);
+ void onTimerWavClip(wxTimerEvent&);
private:
// Set to true if connected and running
@@ -71,7 +73,9 @@ private:
wxControl *m_signal_area = nullptr;
wxMenuItem *m_run_measure = nullptr;
wxMenuItem *m_run_draw_samples = nullptr;
- wxTimer *m_measure_timer = nullptr;
+ wxTimer *m_timer_performance = nullptr;
+ wxTimer *m_timer_record = nullptr;
+ wxTimer *m_timer_wavclip = nullptr;
wxStatusBar *m_status_bar = nullptr;
wxMenuBar *m_menu_bar = nullptr;
wxComboBox *m_rate_select = nullptr;