- wxString , GetInstallPrefix() const,
- "Get the program installation prefix. (Unix only.)", "");
+ virtual wxString , GetTempDir() const,
+ "Return the user's directory for temporary files.", "");
+
+
+ DocStr(SetInstallPrefix,
+ "Set the program installation directory which is /usr/local by default.
+This value will be used by other methods such as `GetDataDir` and
+`GetPluginsDir` as the prefix for what they return. (This function
+only has meaning on Unix systems.)", "");
+
+ DocStr(GetInstallPrefix,
+ "Get the program installation prefix. The default is the prefix where
+Python is installed. (This function only has meaning on Unix systems.)", "");
+
+#ifdef __WXGTK__
+ void SetInstallPrefix(const wxString& prefix);
+ wxString GetInstallPrefix() const;