source: git/src/wx.h @ c282349

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

aven: Add options dialog to "Export" similar to the one for "Print".

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

  • Property mode set to 100644
File size: 790 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,4,0)
12# error We support building with wxWidgets 2.4.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# if wxCHECK_VERSION(2,6,0)
21#  define wxFD_FILE_MUST_EXIST wxFILE_MUST_EXIST
22# else
23// This was a new feature in wx 2.6.
24#  define wxFD_FILE_MUST_EXIST 0
25# endif
26
27# define wxBK_BOTTOM wxNB_BOTTOM
28# define wxBK_LEFT wxNB_LEFT
29#endif
30
31#include <wx/splitter.h>
32#include <wx/treectrl.h>
33#include <wx/dnd.h>
34
35#if !wxUSE_GLCANVAS
36# error wxWindows must be built with wxUSE_GLCANVAS set to 1
37#endif
38#include <wx/glcanvas.h>
Note: See TracBrowser for help on using the repository browser.