]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dir.h
don't process VK_OEM_XXX key presses
[wxWidgets.git] / include / wx / dir.h
index de2563540be0218fbbc8a55f12c91d32a8830bed..4c8a2368cb7edcebf70ecd2805c86b79eccf9bfb 100644 (file)
@@ -103,10 +103,17 @@ public:
                   const wxString& filespec = wxEmptyString,
                   int flags = wxDIR_DEFAULT) const;
 
-    // get next file in the enumeration started with either GetFirst() or
-    // GetFirstNormal()
+    // get next file in the enumeration started with GetFirst()
     bool GetNext(wxString *filename) const;
 
+    // return true if this directory has any files in it
+    bool HasFiles(const wxString& spec = wxEmptyString)
+        { wxString s; return GetFirst(&s, spec, wxDIR_FILES | wxDIR_HIDDEN); }
+
+    // return true if this directory has any subdirectories
+    bool HasSubDirs(const wxString& spec = wxEmptyString)
+        { wxString s; return GetFirst(&s, spec, wxDIR_DIRS | wxDIR_HIDDEN); }
+
     // enumerate all files in this directory and its subdirectories
     //
     // return the number of files found