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

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
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
RevLine 
[af89ae7]1#include <wx/wxprec.h>
[5809313]2
3#ifdef __BORLANDC__
[c87107a]4# pragma hdrstop
[5809313]5#endif
6
7#ifndef WX_PRECOMP
[af89ae7]8# include <wx/wx.h>
[5809313]9#endif
[7640091]10
[1324d6c]11#if !wxCHECK_VERSION(2,6,0)
12# error We support building with wxWidgets 2.6.0 or newer
[5940815]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
[1324d6c]20# define wxFD_FILE_MUST_EXIST wxFILE_MUST_EXIST
[5940815]21
22# define wxBK_BOTTOM wxNB_BOTTOM
23# define wxBK_LEFT wxNB_LEFT
24#endif
25
[af89ae7]26#include <wx/splitter.h>
27#include <wx/treectrl.h>
28#include <wx/dnd.h>
[f8e4c56]29
[cbfa50d]30#if !wxUSE_GLCANVAS
[1324d6c]31# error wxWidgets must be built with wxUSE_GLCANVAS set to 1
[f8e4c56]32#endif
33#include <wx/glcanvas.h>
Note: See TracBrowser for help on using the repository browser.