]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/apptrait.h
wxaui multi-notebook now uses a tab art provider which allows for dynamically switcha...
[wxWidgets.git] / include / wx / apptrait.h
index 3aa0e293ab48010a5281424a0f2ff5d603bcc224..f9790351cf38c43f2022ecfb6e59fa6298b46c00 100644 (file)
@@ -118,6 +118,10 @@ public:
 
     // return true if the port is using wxUniversal for the GUI, false if not
     virtual bool IsUsingUniversalWidgets() const = 0;
+    
+    // return the name of the Desktop Environment such as 
+    // "KDE" or "GNOME". May return an empty string.
+    virtual wxString GetDesktopEnvironment() const { return wxEmptyString; }
 };
 
 // ----------------------------------------------------------------------------