summaryrefslogtreecommitdiff
path: root/support/dktools/DkWxDialog.cpt
diff options
context:
space:
mode:
Diffstat (limited to 'support/dktools/DkWxDialog.cpt')
-rw-r--r--support/dktools/DkWxDialog.cpt59
1 files changed, 0 insertions, 59 deletions
diff --git a/support/dktools/DkWxDialog.cpt b/support/dktools/DkWxDialog.cpt
deleted file mode 100644
index 139e260864..0000000000
--- a/support/dktools/DkWxDialog.cpt
+++ /dev/null
@@ -1,59 +0,0 @@
-%% options
-copyright owner = Dirk Krause
-copyright year = 2017-xxxx
-SPDX-License-Identifier: BSD-3-Clause
-
-%% header
-
-#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
- );
-};
-
-%% module
-
-#include "dk3conf.h"
-#include "DkWxDialog.h"
-
-
-
-$!trace-include
-
-
-
-DkWxDialog::DkWxDialog(
- wxWindow *parent,
- wxWindowID wid,
- wxChar const *title
-) : wxDialog(
- parent,
- wid,
- title,
- wxDefaultPosition,
- wxDefaultSize,
- wxDEFAULT_DIALOG_STYLE
-)
-{
-}