From: wittend99 Date: Sun, 13 May 2012 15:30:39 +0000 (+0000) Subject: General Program Options Dialog X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=c57cd0703d7c96828d7cbecaaa4a0202f18c1b6d;p=freetel-svn-tracking.git General Program Options Dialog git-svn-id: https://svn.code.sf.net/p/freetel/code@429 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/dlg_options.cpp b/fdmdv2/dlg_options.cpp new file mode 100644 index 00000000..77d3ec20 --- /dev/null +++ b/fdmdv2/dlg_options.cpp @@ -0,0 +1,29 @@ +//========================================================================== +// Name: dlg_options.cpp +// +// Purpose: Creates simple wxWidgets dialog GUI general program +// devices/options. +// +// Date: May 06 2012 +// Initial author: David Witten +// License: BSD License (other licenses may apply to other +// components of this project) +//========================================================================== +#include "dlg_options.h" + +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +// Class OptionsDlg +//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-= +OptionsDlg::OptionsDlg( wxWindow* parent ) : DlgOptions( parent ) +{ +} + +void OptionsDlg::OnClose( wxCloseEvent& event ) +{ +// TODO: Implement OnClose +} + +void OptionsDlg::OnInitDialog( wxInitDialogEvent& event ) +{ +// TODO: Implement OnInitDialog +}