aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxsiggen.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-03-21 20:09:53 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-03-21 20:09:53 -0400
commit673eba7167483a92b7a2b8fbfadcccc1f9c3c651 (patch)
treeae10fb3336204cf11e823fbd6f2061e50a460eb7 /gui/wxsiggen.hpp
parentd7285a20d9bfd1335b72bfcfd09b9a723415f0da (diff)
improved siggen prompt; WIP split wxmain
Diffstat (limited to 'gui/wxsiggen.hpp')
-rw-r--r--gui/wxsiggen.hpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/gui/wxsiggen.hpp b/gui/wxsiggen.hpp
new file mode 100644
index 0000000..acf479e
--- /dev/null
+++ b/gui/wxsiggen.hpp
@@ -0,0 +1,42 @@
+/**
+ * @file wxsiggen.hpp
+ * @brief Dialog prompt for providing signal generator input.
+ *
+ * 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 WXSIGGEN_HPP_
+#define WXSIGGEN_HPP_
+
+#include <wx/button.h>
+#include <wx/dialog.h>
+#include <wx/stattext.h>
+#include <wx/textctrl.h>
+
+class SiggenDialog : public wxDialog {
+public:
+ SiggenDialog(wxWindow *parent);
+ ~SiggenDialog();
+
+ auto Result() const {
+ return m_result;
+ }
+
+ void onSourceChange(wxCommandEvent&);
+ void onSourceFile(wxCommandEvent&);
+ void onSave(wxCommandEvent&);
+
+private:
+ wxStaticText *m_instruction = nullptr;
+ wxTextCtrl *m_source_list = nullptr;
+ wxTextCtrl *m_source_math = nullptr;
+ wxButton *m_source_file = nullptr;
+ wxString m_result;
+};
+
+#endif // WXSIGGEN_HPP_
+