summaryrefslogtreecommitdiff
path: root/support/dktools/DkWxDialog.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/dktools/DkWxDialog.h
Initial commit
Diffstat (limited to 'support/dktools/DkWxDialog.h')
-rw-r--r--support/dktools/DkWxDialog.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/support/dktools/DkWxDialog.h b/support/dktools/DkWxDialog.h
new file mode 100644
index 0000000000..f26f3fe79d
--- /dev/null
+++ b/support/dktools/DkWxDialog.h
@@ -0,0 +1,46 @@
+/*
+ WARNING: This file was generated by dkct.
+ Changes you make here will be lost if dkct is run again!
+ You should modify the original source and run dkct on it.
+ Original source: DkWxDialog.cpt
+*/
+
+/** @file DkWxDialog.h Header file for the DkWxDialog module.
+*/
+
+#ifndef DKWXDIALOG_H_INCLUDED
+/** Avoid multiple inclusions. */
+#define DKWXDIALOG_H_INCLUDED 1
+
+
+#line 4 "DkWxDialog.cpt"
+
+#include <dk3all.h>
+
+#include <wx/wxprec.h>
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+#ifndef WX_PRECOMP
+#include <wx/wx.h>
+#endif
+
+/** Base class for dialogs.
+*/
+class DkWxDialog : public wxDialog
+{
+ public:
+ /** Constructor.
+ @param parent Parent frame or dialog.
+ @param wid Windows ID.
+ @param title Dialog box title.
+ */
+ DkWxDialog(
+ wxWindow *parent,
+ wxWindowID wid,
+ wxChar const *title
+ );
+};
+
+
+#endif