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

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

diff --git a/fdmdv2/dlg_audio.h b/fdmdv2/dlg_audio.h
new file mode 100644 (file)
index 0000000..32a7d50
--- /dev/null
@@ -0,0 +1,30 @@
+//==========================================================================\r
+// Name:              dlg_audio.h
+//
+// Purpose:           Subclasses dialog GUI for audio devices/options.
+//                  (DlgAudio from topFrame.h)
+//
+// 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
+#ifndef __AUDIO_DIALOG__\r
+#define __AUDIO_DIALOG__\r
+\r
+#include "topFrame.h"\r
+\r
+class AudioDlg : public DlgAudio\r
+{\r
+    protected:\r
+        // Handlers for DlgAudio events.\r
+        void OnCancel( wxCommandEvent& event );\r
+        void OnOK( wxCommandEvent& event );\r
+        void OnClose( wxCloseEvent& event );\r
+    public:\r
+        /** Constructor */\r
+        AudioDlg( wxWindow* parent );\r
+\r
+};\r
+\r
+#endif // __AUDIO_DIALOG__\r