]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filedlg.h
XPM updates
[wxWidgets.git] / include / wx / filedlg.h
index 47ed6c70d41594faa620a0948f7f89a4966a45b9..9fb43982bc78760e1b7089b9b97bc5c4e6ff0950 100644 (file)
@@ -1,15 +1,33 @@
-#ifndef __FILEDLGH_BASE__
-#define __FILEDLGH_BASE__
+#ifndef _WX_FILEDLG_H_BASE_
+#define _WX_FILEDLG_H_BASE_
+
+enum
+{
+    wxOPEN              = 0x0001,
+    wxSAVE              = 0x0002,
+    wxOVERWRITE_PROMPT  = 0x0004,
+    wxHIDE_READONLY     = 0x0008,
+    wxFILE_MUST_EXIST   = 0x0010,
+    wxMULTIPLE          = 0x0020,
+    wxCHANGE_DIR        = 0x0040
+};
 
 #if defined(__WXMSW__)
 #include "wx/msw/filedlg.h"
 #elif defined(__WXMOTIF__)
-#include "wx/xt/filedlg.h"
+#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
-    // __FILEDLGH_BASE__
+    // _WX_FILEDLG_H_BASE_