You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.2 KiB
C++
89 lines
2.2 KiB
C++
/**
|
|
* @file wxmain.hpp
|
|
* @brief Main window definition.
|
|
*
|
|
* Copyright (C) 2021 Clyne Sullivan
|
|
*
|
|
* Distributed under the GNU GPL v3 or later. You should have received a copy of
|
|
* the GNU General Public License along with this program.
|
|
* If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef WXMAIN_HPP_
|
|
#define WXMAIN_HPP_
|
|
|
|
#include "stmdsp.hpp"
|
|
#include "wav.hpp"
|
|
|
|
#include <fstream>
|
|
#include <future>
|
|
#include <iostream>
|
|
#include <thread>
|
|
#include <wx/button.h>
|
|
#include <wx/combobox.h>
|
|
#include <wx/dcclient.h>
|
|
#include <wx/filedlg.h>
|
|
#include <wx/font.h>
|
|
#include <wx/frame.h>
|
|
#include <wx/stattext.h>
|
|
#include <wx/stc/stc.h>
|
|
#include <wx/timer.h>
|
|
#include <wx/wfstream.h>
|
|
|
|
class MainFrame : public wxFrame
|
|
{
|
|
public:
|
|
MainFrame();
|
|
|
|
void onCloseEvent(wxCloseEvent&);
|
|
|
|
void onFileNew(wxCommandEvent&);
|
|
void onFileOpen(wxCommandEvent&);
|
|
void onFileOpenTemplate(wxCommandEvent&);
|
|
void onFileSave(wxCommandEvent&);
|
|
void onFileSaveAs(wxCommandEvent&);
|
|
void onFileQuit(wxCommandEvent&);
|
|
|
|
void onRunConnect(wxCommandEvent&);
|
|
void onRunStart(wxCommandEvent&);
|
|
void onRunLogResults(wxCommandEvent&);
|
|
void onRunUpload(wxCommandEvent&);
|
|
void onRunUnload(wxCommandEvent&);
|
|
void onRunEditBSize(wxCommandEvent&);
|
|
void onRunGenUpload(wxCommandEvent&);
|
|
void onRunGenStart(wxCommandEvent&);
|
|
|
|
void onToolbarSampleRate(wxCommandEvent&);
|
|
|
|
void onRunCompile(wxCommandEvent&);
|
|
void onCodeDisassemble(wxCommandEvent&);
|
|
|
|
void onMeasureTimer(wxTimerEvent& te);
|
|
|
|
private:
|
|
bool m_is_running = false;
|
|
wxComboBox *m_device_combo = nullptr;
|
|
wxStyledTextCtrl *m_text_editor = nullptr;
|
|
wxTextCtrl *m_compile_output = nullptr;
|
|
wxControl *m_signal_area = nullptr;
|
|
wxMenuItem *m_run_measure = nullptr;
|
|
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;
|
|
|
|
stmdsp::device *m_device = nullptr;
|
|
wav::clip *m_wav_clip = nullptr;
|
|
|
|
bool tryDevice();
|
|
void prepareEditor();
|
|
wxString compileEditorCode();
|
|
wxMenu *loadTemplates();
|
|
};
|
|
|
|
#endif // WXMAIN_HPP_
|
|
|