aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorLittleboy2011-03-31 06:35:16 -0400
committerJulien2011-06-16 10:35:24 -0400
commitcd7822a29f22fd290a86281d65b965d32f667a49 (patch)
tree7ecccd3820e09d5e5a2dbea00369c411965c2b8a /common
parent0fd56852b65aed463d79cddc9545511107296809 (diff)
downloadscummvm-rg350-cd7822a29f22fd290a86281d65b965d32f667a49.tar.gz
scummvm-rg350-cd7822a29f22fd290a86281d65b965d32f667a49.tar.bz2
scummvm-rg350-cd7822a29f22fd290a86281d65b965d32f667a49.zip
BACKENDS: Add engine-level accessor for TaskbarManager
Diffstat (limited to 'common')
-rw-r--r--common/system.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index d26bc593aa..f556fa22f8 100644
--- a/common/system.h
+++ b/common/system.h
@@ -42,6 +42,7 @@ struct Rect;
class SaveFileManager;
class SearchSet;
class String;
+class TaskbarManager;
class TimerManager;
class SeekableReadStream;
class WriteStream;
@@ -1048,6 +1049,14 @@ public:
}
/**
+ * Returns the TaskbarManager, used to handle progress bars,
+ * icon overlay, tasks and recent items list on the taskbar.
+ *
+ * @return the TaskbarManager for the current architecture
+ */
+ virtual Common::TaskbarManager *getTaskbarManager() = 0;
+
+ /**
* Returns the FilesystemFactory object, depending on the current architecture.
*
* @return the FSNode factory for the current architecture