2011-04-26 12:48:01 -04:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BACKEND_WIN32_TASKBAR_H
|
|
|
|
#define BACKEND_WIN32_TASKBAR_H
|
|
|
|
|
2011-04-01 01:30:12 -04:00
|
|
|
#if defined(WIN32) && defined(USE_TASKBAR)
|
2011-03-31 04:46:36 -04:00
|
|
|
|
2011-04-26 12:48:01 -04:00
|
|
|
#include "common/str.h"
|
|
|
|
#include "common/taskbar.h"
|
|
|
|
|
2011-03-31 04:46:36 -04:00
|
|
|
struct ITaskbarList3;
|
|
|
|
|
2011-04-26 12:48:01 -04:00
|
|
|
class Win32TaskbarManager : public Common::TaskbarManager {
|
|
|
|
public:
|
|
|
|
Win32TaskbarManager();
|
|
|
|
virtual ~Win32TaskbarManager();
|
|
|
|
|
|
|
|
virtual void setOverlayIcon(const Common::String &name, const Common::String &description);
|
2011-03-31 04:46:36 -04:00
|
|
|
virtual void setProgressValue(int completed, int total);
|
2011-04-26 12:48:01 -04:00
|
|
|
virtual void setProgressState(TaskbarProgressState state);
|
|
|
|
virtual void addRecent(const Common::String &name, const Common::String &description);
|
2011-03-31 04:46:36 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
ITaskbarList3 *_taskbar;
|
|
|
|
|
2011-06-16 16:09:20 -04:00
|
|
|
/**
|
|
|
|
* Get the path to an icon for the game
|
|
|
|
*
|
|
|
|
* @param target The game target
|
|
|
|
*
|
|
|
|
* @return The icon path (or "" if no icon was found)
|
|
|
|
*/
|
2011-03-31 06:14:30 -04:00
|
|
|
Common::String getIconPath(Common::String target);
|
|
|
|
|
2011-03-31 04:46:36 -04:00
|
|
|
// Helper functions
|
|
|
|
bool isWin7OrLater();
|
|
|
|
LPWSTR ansiToUnicode(const char *s);
|
|
|
|
HWND getHwnd();
|
2011-04-26 12:48:01 -04:00
|
|
|
};
|
|
|
|
|
2011-03-31 04:46:36 -04:00
|
|
|
#endif
|
|
|
|
|
2011-04-26 12:48:01 -04:00
|
|
|
#endif // BACKEND_WIN32_TASKBAR_H
|