-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.h
59 lines (48 loc) · 1.68 KB
/
app.h
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
//----------------------------------------------------------------------------------------
// Name: app.h
// Purpose: Core application includes
// Author: Michael Van Donselaar
// Modified by:
// Created: 2003
// Copyright: (c) Michael Van Donselaar ( [email protected] )
// Licence: GPL
//----------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------
// Begin single inclusion of this .h file condition
//----------------------------------------------------------------------------------------
#ifndef _APP_H_
#define _APP_H_
//----------------------------------------------------------------------------------------
// Shared defines
//----------------------------------------------------------------------------------------
#define MAX_CALLS 2
//----------------------------------------------------------------------------------------
// Shared headers
//----------------------------------------------------------------------------------------
#include "wx/app.h"
#include "wx/checkbox.h"
#include "wx/choice.h"
#include "wx/combobox.h"
#include "wx/config.h"
#include "wx/dialog.h"
#include "wx/frame.h"
#include "wx/gauge.h"
#include "wx/listctrl.h"
#include "wx/notebook.h"
#include "wx/snglinst.h"
#include "wx/spinctrl.h"
#include "wx/taskbar.h"
#include "wx/textctrl.h"
#include "wx/xrc/xmlres.h"
#include "iaxclient.h"
#ifdef __WXMSW__
#include <wx/msw/winundef.h> // needed for xmlres
#endif
/* for the silly key state stuff :( */
#ifdef __WXGTK__
#include <gdk/gdk.h>
#endif
#ifdef __WXMAC__
#include <Carbon/Carbon.h>
#endif
#endif // _APP_H_