]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/stdpaths.h
Document wxGraphicsPath::AddArc() better.
[wxWidgets.git] / interface / wx / stdpaths.h
index fa4d965c4f4ba463c0c6dc6bfa44fcae4b5ea955..78e1c8c787406210969103e842735a68a5e0cc58 100644 (file)
@@ -275,6 +275,26 @@ public:
      */
     void IgnoreAppBuildSubDirs();
 
+    /**
+        Returns location of Windows shell special folder.
+
+        This function is, by definition, MSW-specific. It can be used to access
+        pre-defined shell directories not covered by the existing methods of
+        this class, e.g.:
+        @code
+        #ifdef __WXMSW__
+            // get the location of files waiting to be burned on a CD
+            wxString cdburnArea =
+                wxStandardPaths::MSWGetShellDir(CSIDL_CDBURN_AREA);
+        #endif // __WXMSW__
+        @endcode
+
+        @param csidl
+
+        @since 2.9.1
+     */
+    static wxString MSWGetShellDir(int csidl);
+
     /**
         Lets wxStandardPaths know about the real program installation prefix on a Unix
         system. By default, the value returned by GetInstallPrefix() is used.