]> git.saurik.com Git - wxWidgets.git/blame - include/wx/filedlg.h
added cw6 fixes and patrick's patches
[wxWidgets.git] / include / wx / filedlg.h
CommitLineData
34138703
JS
1#ifndef _WX_FILEDLG_H_BASE_
2#define _WX_FILEDLG_H_BASE_
c801d85f 3
c61f4f6d
VZ
4enum
5{
3f6638b8
VZ
6 wxOPEN = 0x0001,
7 wxSAVE = 0x0002,
8 wxOVERWRITE_PROMPT = 0x0004,
9 wxHIDE_READONLY = 0x0008,
10 wxFILE_MUST_EXIST = 0x0010,
11 wxMULTIPLE = 0x0020,
12 wxCHANGE_DIR = 0x0040
c61f4f6d
VZ
13};
14
2049ba38 15#if defined(__WXMSW__)
c801d85f 16#include "wx/msw/filedlg.h"
2049ba38 17#elif defined(__WXMOTIF__)
34138703 18#include "wx/motif/filedlg.h"
2049ba38 19#elif defined(__WXGTK__)
8b17ba72 20#include "wx/generic/filedlgg.h"
7c78e7c7
RR
21#elif defined(__WXQT__)
22#include "wx/qt/filedlg.h"
34138703
JS
23#elif defined(__WXMAC__)
24#include "wx/mac/filedlg.h"
1777b9bb
DW
25#elif defined(__WXPM__)
26#include "wx/os2/filedlg.h"
34138703
JS
27#elif defined(__WXSTUBS__)
28#include "wx/stubs/filedlg.h"
c801d85f
KB
29#endif
30
ba681060 31
c801d85f 32#endif
34138703 33 // _WX_FILEDLG_H_BASE_