]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fs_zip.h
adding the notion of cyclic group of radiobutton
[wxWidgets.git] / include / wx / fs_zip.h
index e3461634b8df6361dcf7e350a41c861e8d598ac5..53d866fd81663ec69fdca69a253e4db6bb966318 100644 (file)
 class WXDLLEXPORT wxZipFSHandler : public wxFileSystemHandler
 {
     public:
+        wxZipFSHandler();
         virtual bool CanOpen(const wxString& location);
         virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
+        virtual wxString FindFirst(const wxString& spec, int flags = 0);
+        virtual wxString FindNext();
         ~wxZipFSHandler();
+        
+    private:
+        // these vars are used by FindFirst/Next:
+        void *m_Archive;
+        wxString m_Pattern, m_BaseDir, m_ZipFile;
+        bool m_AllowDirs, m_AllowFiles;
+        
+        wxString DoFind();
 };