summaryrefslogtreecommitdiff
path: root/support/dktools/dkwxpath.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/dkwxpath.h
Initial commit
Diffstat (limited to 'support/dktools/dkwxpath.h')
-rw-r--r--support/dktools/dkwxpath.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/support/dktools/dkwxpath.h b/support/dktools/dkwxpath.h
new file mode 100644
index 0000000000..2185bcc73b
--- /dev/null
+++ b/support/dktools/dkwxpath.h
@@ -0,0 +1,46 @@
+
+#ifndef DKWXPATH_H_INCLUDED
+#define DKWXPATH_H_INCLUDED 1
+
+#ifdef DK3_USE_WX
+#undef DK3_USE_WX
+#endif
+/** Use wxWidgets libraries to build GUI programs.
+*/
+#define DK3_USE_WX 1
+
+#include <dk3all.h>
+
+#include <wx/wxprec.h>
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+#ifndef WX_PRECOMP
+#include <wx/wx.h>
+#endif
+#include <wx/config.h>
+#include <wx/filename.h>
+#include <wx/gbsizer.h>
+#include <wx/thread.h>
+#include <wx/gauge.h>
+#include <wx/help.h>
+#include <wx/fs_zip.h>
+#include <wx/cmdline.h>
+
+#include "dk3wxs.h"
+#include "DkWxAppHelper.h"
+#include "DkWxFrame.h"
+#include "DkWxCommunicator.h"
+#include "DkWxProgressDialog.h"
+#include "DkWxHelpController.h"
+
+#include "DkWxPathApp.h"
+#include "DkWxPathFrame.h"
+
+/** Main window ID.
+*/
+#define DkWxPath_MainWindow (wxID_HIGHEST + 1)
+
+#endif
+/* ifndef DKWXPATH_H_INCLUDED */
+