diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-08 18:31:02 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-08 18:31:02 -0500 |
commit | e12639c46f0be29461803ffa1790d6f69c16d280 (patch) | |
tree | 5195f6ce497d702cef57bd752a9ec5c054855a87 /gui/wxmain.hpp | |
parent | f3e4d176d5922a13ce2615895cea1e197175984a (diff) |
fixed sample rate setting
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r-- | gui/wxmain.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp index d4d24de..4a73b2f 100644 --- a/gui/wxmain.hpp +++ b/gui/wxmain.hpp @@ -38,10 +38,11 @@ public: void onRunUpload(wxCommandEvent&); void onRunUnload(wxCommandEvent&); void onRunEditBSize(wxCommandEvent&); - void onRunEditSRate(wxCommandEvent&); void onRunGenUpload(wxCommandEvent&); void onRunGenStart(wxCommandEvent&); + void onToolbarSampleRate(wxCommandEvent&); + void onRunCompile(wxCommandEvent&); void onCodeDisassemble(wxCommandEvent&); @@ -57,6 +58,7 @@ private: wxTimer *m_measure_timer = nullptr; wxStatusBar *m_status_bar = nullptr; wxMenuBar *m_menu_bar = nullptr; + wxComboBox *m_rate_select = nullptr; wxFileOutputStream *m_conv_result_log = nullptr; wxString m_open_file_path; wxString m_temp_file_name; |