]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/filedlg.cpp
Latest OS/2 build file updates to include the toplevel stuff.
[wxWidgets.git] / src / os2 / filedlg.cpp
index 20e3c39cdeb2334fd6a858a907077840c3d040f5..aee711ce99540c7ed13cc71d2e0c165173f733d0 100644 (file)
@@ -9,16 +9,35 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/defs.h"
-#include "wx/utils.h"
-#include "wx/dialog.h"
-#include "wx/filedlg.h"
-#include "wx/intl.h"
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
 
-#if !USE_SHARED_LIBRARY
-IMPLEMENT_CLASS(wxFileDialog, wxDialog)
+#ifdef __BORLANDC__
+    #pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+    #include <stdio.h>
+    #include "wx/defs.h"
+    #include "wx/utils.h"
+    #include "wx/msgdlg.h"
+    #include "wx/dialog.h"
+    #include "wx/filedlg.h"
+    #include "wx/intl.h"
+    #include "wx/log.h"
 #endif
 
+#define INCL_PM
+#include <os2.h>
+
+#include "wx/os2/private.h"
+
+#include <math.h>
+#include <stdlib.h>
+#include <string.h>
+
+IMPLEMENT_CLASS(wxFileDialog, wxDialog)
+
 wxString wxFileSelector( const char* title
                         ,const char* defaultDir
                         ,const char* defaultFileName
@@ -61,6 +80,22 @@ wxString wxFileSelector( const char* title
         return wxEmptyString;
 }
 
+# ifndef MAXPATH
+# define MAXPATH   400
+# endif
+
+# ifndef MAXDRIVE
+# define MAXDRIVE  3
+# endif
+
+# ifndef MAXFILE
+# define MAXFILE   9
+# endif
+
+# ifndef MAXEXT
+# define MAXEXT    5
+# endif
+
 wxString wxFileSelectorEx( const char* title
                           ,const char* defaultDir
                           ,const char* defaultFileName