]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filedlg.h
patches from Ricky Gonzales <gonzales@pyramid3.net>:
[wxWidgets.git] / include / wx / filedlg.h
index f877d9b471817b20b5d4eef2e55070577177f5f7..b35e63d016e25fe63906365e2953bc90bd754e95 100644 (file)
@@ -1,13 +1,32 @@
-#ifndef __FILEDLGH_BASE__
-#define __FILEDLGH_BASE__
+#ifndef _WX_FILEDLG_H_BASE_
+#define _WX_FILEDLG_H_BASE_
 
-#if defined(__WINDOWS__)
+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(__MOTIF__)
-#include "wx/xt/filedlg.h"
-#elif defined(__GTK__)
-#include "wx/gtk/filedlg.h"
+#elif defined(__WXMOTIF__)
+#include "wx/motif/filedlg.h"
+#elif defined(__WXGTK__)
+#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_