General Program Options Dialog Header
authorwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 13 May 2012 15:31:45 +0000 (15:31 +0000)
committerwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 13 May 2012 15:31:45 +0000 (15:31 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@430 01035d8c-6547-0410-b346-abe4f91aad63

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

diff --git a/fdmdv2/dlg_options.h b/fdmdv2/dlg_options.h
new file mode 100644 (file)
index 0000000..2d93eae
--- /dev/null
@@ -0,0 +1,31 @@
+//==========================================================================\r
+// Name:            dlg_options.h
+//
+// Purpose:         Subclasses dialog GUI for general program options.
+//                  (DlgOptions 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 __OPTIONS_DIALOG__\r
+#define __OPTIONS_DIALOG__\r
+\r
+#include "topFrame.h"\r
+\r
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=\r
+// Class OptionsDlg\r
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=\r
+class OptionsDlg : public DlgOptions\r
+{\r
+    protected:\r
+        // Handlers for DlgOptions events.\r
+        void OnClose( wxCloseEvent& event );\r
+        void OnInitDialog( wxInitDialogEvent& event );\r
+    public:\r
+        /** Constructor */\r
+        OptionsDlg( wxWindow* parent );\r
+};\r
+\r
+#endif // __OPTIONS_DIALOG__\r