source: git/src/wx.h @ 1599605

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 1599605 was f1cbf74, checked in by Olly Betts <olly@…>, 17 years ago

(Unix version): aven: Fix display of degree symbol in status bar and messages
with accented characters in.
(Mac OS X version): Require at least wxWidgets 2.5.1.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@3336 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 931 bytes
Line 
1#include <wx/wxprec.h>
2
3#ifdef __BORLANDC__
4# pragma hdrstop
5#endif
6
7#ifndef WX_PRECOMP
8# include <wx/wx.h>
9#endif
10
11#ifndef __WXMAC__
12# if !wxCHECK_VERSION(2,4,0)
13#  error We support building with wxWidgets 2.4.0 or newer
14# endif
15#else
16# if !wxCHECK_VERSION(2,5,1)
17#  error We support building with wxWidgets 2.5.1 or newer on MacOS X
18# endif
19#endif
20
21// These were renamed in wx 2.7.
22#if !wxCHECK_VERSION(2,7,0)
23# define wxFD_OPEN wxOPEN
24# define wxFD_OVERWRITE_PROMPT wxOVERWRITE_PROMPT
25# define wxFD_SAVE wxSAVE
26# if wxCHECK_VERSION(2,6,0)
27#  define wxFD_FILE_MUST_EXIST wxFILE_MUST_EXIST
28# else
29// This was a new feature in wx 2.6.
30#  define wxFD_FILE_MUST_EXIST 0
31# endif
32
33# define wxBK_BOTTOM wxNB_BOTTOM
34# define wxBK_LEFT wxNB_LEFT
35#endif
36
37#include <wx/splitter.h>
38#include <wx/treectrl.h>
39#include <wx/dnd.h>
40
41#if !wxUSE_GLCANVAS
42# error wxWindows must be built with wxUSE_GLCANVAS set to 1
43#endif
44#include <wx/glcanvas.h>
Note: See TracBrowser for help on using the repository browser.