source: git/src/wx.h @ 1324d6c

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 1324d6c was 1324d6c, checked in by Olly Betts <olly@…>, 15 years ago

Say "wxWidgets" instead of "wxWindows" consistently.
Require wxWidgets 2.6.0 or newer - 2.4 is really old now.

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

  • Property mode set to 100644
File size: 676 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#if !wxCHECK_VERSION(2,6,0)
12# error We support building with wxWidgets 2.6.0 or newer
13#endif
14
15// These were renamed in wx 2.7.
16#if !wxCHECK_VERSION(2,7,0)
17# define wxFD_OPEN wxOPEN
18# define wxFD_OVERWRITE_PROMPT wxOVERWRITE_PROMPT
19# define wxFD_SAVE wxSAVE
20# define wxFD_FILE_MUST_EXIST wxFILE_MUST_EXIST
21
22# define wxBK_BOTTOM wxNB_BOTTOM
23# define wxBK_LEFT wxNB_LEFT
24#endif
25
26#include <wx/splitter.h>
27#include <wx/treectrl.h>
28#include <wx/dnd.h>
29
30#if !wxUSE_GLCANVAS
31# error wxWidgets must be built with wxUSE_GLCANVAS set to 1
32#endif
33#include <wx/glcanvas.h>
Note: See TracBrowser for help on using the repository browser.