From: wittend99 Date: Sun, 13 May 2012 15:31:45 +0000 (+0000) Subject: General Program Options Dialog Header X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=5ff8ece4c9236316df25a5db642f6cb34eb1d0e3;p=freetel-svn-tracking.git General Program Options Dialog Header git-svn-id: https://svn.code.sf.net/p/freetel/code@430 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/dlg_options.h b/fdmdv2/dlg_options.h new file mode 100644 index 00000000..2d93eae9 --- /dev/null +++ b/fdmdv2/dlg_options.h @@ -0,0 +1,31 @@ +//========================================================================== +// Name: dlg_options.h +// +// Purpose: Subclasses dialog GUI for general program options. +// (DlgOptions 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 __OPTIONS_DIALOG__ +#define __OPTIONS_DIALOG__ + +#include "topFrame.h" + +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +// Class OptionsDlg +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +class OptionsDlg : public DlgOptions +{ + protected: + // Handlers for DlgOptions events. + void OnClose( wxCloseEvent& event ); + void OnInitDialog( wxInitDialogEvent& event ); + public: + /** Constructor */ + OptionsDlg( wxWindow* parent ); +}; + +#endif // __OPTIONS_DIALOG__