From f702cb5695dcec2e14b4ef7f18971cc0b12ebe0e Mon Sep 17 00:00:00 2001 From: Littleboy Date: Sat, 6 Aug 2011 15:26:49 -0400 Subject: BACKENDS: Implement notifyError() and clearError() for Win32TaskbarManager --- backends/taskbar/win32/win32-taskbar.cpp | 9 +++++++++ backends/taskbar/win32/win32-taskbar.h | 2 ++ 2 files changed, 11 insertions(+) (limited to 'backends') diff --git a/backends/taskbar/win32/win32-taskbar.cpp b/backends/taskbar/win32/win32-taskbar.cpp index b1afdf6dee..046ddb1cd0 100644 --- a/backends/taskbar/win32/win32-taskbar.cpp +++ b/backends/taskbar/win32/win32-taskbar.cpp @@ -317,6 +317,15 @@ void Win32TaskbarManager::addRecent(const Common::String &name, const Common::St } } +void Win32TaskbarManager::notifyError() { + setProgressState(Common::TaskbarManager::kTaskbarError); + setProgressValue(1, 1); +} + +void Win32TaskbarManager::clearError() { + setProgressState(kTaskbarNoProgress); +} + Common::String Win32TaskbarManager::getIconPath(Common::String target) { // We first try to look for a iconspath configuration variable then // fallback to the extra path diff --git a/backends/taskbar/win32/win32-taskbar.h b/backends/taskbar/win32/win32-taskbar.h index d005b0fea8..36415c1c57 100644 --- a/backends/taskbar/win32/win32-taskbar.h +++ b/backends/taskbar/win32/win32-taskbar.h @@ -40,6 +40,8 @@ public: virtual void setProgressState(TaskbarProgressState state); virtual void setCount(int count); virtual void addRecent(const Common::String &name, const Common::String &description); + virtual void notifyError(); + virtual void clearError(); private: ITaskbarList3 *_taskbar; -- cgit v1.2.3