blob: 2185bcc73bcad3a12cf40c1e746fcedf2b236495 (
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
|
#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 */
|