Audio Dialog
authorwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 13 May 2012 15:27:22 +0000 (15:27 +0000)
committerwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 13 May 2012 15:27:22 +0000 (15:27 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@425 01035d8c-6547-0410-b346-abe4f91aad63

fdmdv2/dlg_audio.cpp [new file with mode: 0644]

diff --git a/fdmdv2/dlg_audio.cpp b/fdmdv2/dlg_audio.cpp
new file mode 100644 (file)
index 0000000..8db1dcd
--- /dev/null
@@ -0,0 +1,32 @@
+//==========================================================================\r
+// Name:            dlg_audio.cpp
+//
+// Purpose:         Creates simple wxWidgets dialog GUI for audio
+//                  devices/options.
+//
+// Date:            May 05 2012\r
+// Initial author:  David Witten\r
+// License:         BSD License (other licenses may apply to other\r
+//                  components of this project)\r
+//==========================================================================\r
+#include "dlg_audio.h"\r
+\r
+AudioDlg::AudioDlg( wxWindow* parent ) : DlgAudio( parent )\r
+{\r
+\r
+}\r
+\r
+void AudioDlg::OnCancel( wxCommandEvent& event )\r
+{\r
+    this->EndModal(wxID_OK);\r
+}\r
+\r
+void AudioDlg::OnOK( wxCommandEvent& event )\r
+{\r
+    this->EndModal(wxID_OK);\r
+}\r
+\r
+void AudioDlg::OnClose( wxCloseEvent& event )\r
+{\r
+    this->EndModal(wxID_OK);\r
+}\r