diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h index 600b2ed76e..f19f6efc2c 100644 --- a/common/system.h +++ b/common/system.h @@ -886,6 +886,17 @@ public: */ virtual Common::SaveFileManager *getSavefileManager() = 0; + + /** + * Return String which is used for backend-specific addition to theme + * config. + * + * Typical usage is to disable unneeded GUI widgets or defining + * theme-specific tab. + */ + virtual Common::String getExtraThemeConfig() { + return ""; + } //@} }; |