]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filedlg.h
added wxNotebook::AssingImageList
[wxWidgets.git] / include / wx / filedlg.h
index cfb3737190eb7a84c3c10635fc257a1fcad64fb9..b35e63d016e25fe63906365e2953bc90bd754e95 100644 (file)
@@ -1,19 +1,32 @@
 #ifndef _WX_FILEDLG_H_BASE_
 #define _WX_FILEDLG_H_BASE_
 
+enum
+{
+    wxOPEN  = 1,
+    wxSAVE = 2,
+    wxOVERWRITE_PROMPT = 4,
+    wxHIDE_READONLY = 8,
+    wxFILE_MUST_EXIST = 16,
+    wxMULTIPLE = 32
+};
+
 #if defined(__WXMSW__)
 #include "wx/msw/filedlg.h"
 #elif defined(__WXMOTIF__)
 #include "wx/motif/filedlg.h"
 #elif defined(__WXGTK__)
-#include "wx/gtk/filedlg.h"
+#include "wx/generic/filedlgg.h"
 #elif defined(__WXQT__)
 #include "wx/qt/filedlg.h"
 #elif defined(__WXMAC__)
 #include "wx/mac/filedlg.h"
+#elif defined(__WXPM__)
+#include "wx/os2/filedlg.h"
 #elif defined(__WXSTUBS__)
 #include "wx/stubs/filedlg.h"
 #endif
 
+
 #endif
     // _WX_FILEDLG_H_BASE_