From f9e8affc331f2197be96aaf8ed5e32d4f5d6aa8f Mon Sep 17 00:00:00 2001 From: wittend99 Date: Sun, 13 May 2012 15:27:58 +0000 Subject: [PATCH] Audio Dialog Header git-svn-id: https://svn.code.sf.net/p/freetel/code@426 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/dlg_audio.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 fdmdv2/dlg_audio.h diff --git a/fdmdv2/dlg_audio.h b/fdmdv2/dlg_audio.h new file mode 100644 index 00000000..32a7d506 --- /dev/null +++ b/fdmdv2/dlg_audio.h @@ -0,0 +1,30 @@ +//========================================================================== +// Name: dlg_audio.h +// +// Purpose: Subclasses dialog GUI for audio devices/options. +// (DlgAudio from topFrame.h) +// +// Date: May 05 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#ifndef __AUDIO_DIALOG__ +#define __AUDIO_DIALOG__ + +#include "topFrame.h" + +class AudioDlg : public DlgAudio +{ + protected: + // Handlers for DlgAudio events. + void OnCancel( wxCommandEvent& event ); + void OnOK( wxCommandEvent& event ); + void OnClose( wxCloseEvent& event ); + public: + /** Constructor */ + AudioDlg( wxWindow* parent ); + +}; + +#endif // __AUDIO_DIALOG__ -- 2.25.1