summaryrefslogtreecommitdiff
path: root/support/dktools/wxdkhtb.h
blob: aab823e6072cc0d93625b27e00144773e3b0e4c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

#ifndef H_INCLUDED_wxdkhtb
/**	Include file only once.
*/
#define	H_INCLUDED_wxdkhtb 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>
#if 0
#include "dkt-version.h"
#endif

#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include <wx/arrstr.h>
#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 <wx/dir.h>
/*	__CHANGE__ 018:	Add futher wxWidgets header files.
*/
#include <wx/html/helpctrl.h>

#include <dk3wxs.h>
#include "dk4verswx.h"

#include <DkWxAppHelper.h>
#include <DkWxFrame.h>
#include <DkWxCommunicator.h>
#include <DkWxProgressDialog.h>
#include <DkWxHelpController.h>
#include <DkWxColorView.h>

#include "DkWxHtbApp.h"
#include "DkWxHtbFrame.h"

/*	__CHANGE__ 018:	Add header files for further classes and modules.
*/

/**	@defgroup	wxdkhtbwxids	wxWidgets IDs.
*/
/**@{*/
/**	Exit application.
*/
#define	DkWxHtbFrame_Quit		(wxID_EXIT)

/**	Main window ID.
*/
#define	DkWxHtbFrame_MainWindow	((wxID_HIGHEST) + 1)

/**	Show version dialog box.
*/
#define	DkWxHtbFrame_Help_About	((DkWxHtbFrame_MainWindow) + 1)

/**	Open table of contents for online help.
*/
#define	DkWxHtbFrame_Help_Contents	((DkWxHtbFrame_Help_About) + 1)

/*	__CHANGE__ 017:	Add further IDs here as needed.
*/
/**@}*/

#endif