summaryrefslogtreecommitdiff
path: root/support/dktools/dkwxtrace.h
blob: 62b543728cbd4c5be35e852b43717e21936ec209 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96

/**	@file	dkwxtrace.h	Header file for dkwxtrace.
*/


#ifndef DKWXTRACE_H_INCLUDED
#define DKWXTRACE_H_INCLUDED

#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 "dkct.h"

#include "DkWxTraceThread.h"
#include "DkWxTraceApp.h"
#include "DkWxTraceFrame.h"
#include "DkWxTraceOptionsDialog.h"



/**	@defgroup	wxdkcteventids	Event ids. */
/**@{*/
/**	File / Exit menu item.
*/
#define	DkWxTrace_Quit	wxID_EXIT

/**	Help / About menu item.
*/
#define	DkWxTrace_About	wxID_ABOUT

/**	Id for main frame.
*/
#define	DkWxTrace_MainWindow		(wxID_HIGHEST + 1)

/**	File / Directory menu item.
*/
#define	DkWxTrace_ChooseDirectory	(DkWxTrace_MainWindow + 1)

/**	File / Options menu item.
*/
#define	DkWxTrace_SetOptions		(DkWxTrace_ChooseDirectory + 1)

/**	File / Run menu item.
*/
#define	DkWxTrace_Run			(DkWxTrace_SetOptions + 1)

/**	ID for debug checkbox.
*/
#define	DkWxTrace_Debug			(DkWxTrace_Run + 1)

/**	Help / Contents menu.
*/
#define	DkWxTrace_Help_Contents		(DkWxTrace_Debug + 1)

/**	Use splint.
*/
#define	DkWxTrace_UseSplint		(DkWxTrace_Help_Contents + 1)

/**	Choose splint comment character.
*/
#define	DkWxTrace_SplintChar		(DkWxTrace_UseSplint + 1)

/**@}*/

#endif