]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/filedlg.h
Added --with-gnomeprint and its wxUSE_LIBGNOMEPRINT
[wxWidgets.git] / include / wx / msw / filedlg.h
index 3013be4204de3befcf742c2809eb7de2eec834ec..5bdd3957fe3170dbb161ebd27449574efd3a6aa6 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_FILEDLG_H_
 #define _WX_FILEDLG_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "filedlg.h"
 #endif
 
@@ -33,11 +33,21 @@ public:
 
     virtual void SetPath(const wxString& path);
     virtual void GetPaths(wxArrayString& paths) const;
+    virtual void GetFilenames(wxArrayString& files) const;
 
     virtual int ShowModal();
 
+protected:
+
+#if !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
+    virtual void DoMoveWindow(int x, int y, int width, int height);
+    virtual void DoGetSize( int *width, int *height ) const;
+    virtual void DoGetPosition( int *x, int *y ) const;
+#endif // !(__SMARTPHONE__ && __WXWINCE__)
+
 private:
     wxArrayString m_fileNames;
+    bool m_bMovedWindow;
 
     DECLARE_DYNAMIC_CLASS(wxFileDialog)
     DECLARE_NO_COPY_CLASS(wxFileDialog)