]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filename.h
routing native events first to the wx class and only if skipped call native handler
[wxWidgets.git] / include / wx / filename.h
index 2887a3121b7bc0fd491f4a04ae4ada3a2a574853..515ff9be121e7173b7b62b7bde566a8180aa741f 100644 (file)
@@ -353,6 +353,25 @@ public:
                            wxString* arguments = NULL);
 #endif
 
                            wxString* arguments = NULL);
 #endif
 
+#ifndef __WXWINCE__
+        // if the path contains the value of the environment variable named envname
+        // then this function replaces it with the string obtained from
+        //    wxString::Format(replacementFmtString, value_of_envname_variable)
+        //
+        // Example:
+        //    wxFileName fn("/usr/openwin/lib/someFile");
+        //    fn.ReplaceEnvVariable("OPENWINHOME");
+        //         // now fn.GetFullPath() == "$OPENWINHOME/lib/someFile"
+    bool ReplaceEnvVariable(const wxString& envname,
+                            const wxString& replacementFmtString = "$%s",
+                            wxPathFormat format = wxPATH_NATIVE);
+#endif
+
+        // replaces, if present in the path, the home directory for the given user
+        // (see wxGetHomeDir) with a tilde
+    bool ReplaceHomeDir(wxPathFormat format = wxPATH_NATIVE);
+
+
     // Comparison
 
         // compares with the rules of the given platforms format
     // Comparison
 
         // compares with the rules of the given platforms format