2011-04-26 16:47:03 +00: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.
|
|
|
|
*
|
2021-12-26 17:47:58 +00:00
|
|
|
* 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2011-04-26 16:47:03 +00:00
|
|
|
*
|
|
|
|
* 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
|
2021-12-26 17:47:58 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-04-26 16:47:03 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMON_TASKBAR_MANAGER_H
|
|
|
|
#define COMMON_TASKBAR_MANAGER_H
|
|
|
|
|
2011-04-29 16:15:49 +00:00
|
|
|
#include "common/scummsys.h"
|
2011-04-26 16:47:03 +00:00
|
|
|
|
2011-04-29 16:15:49 +00:00
|
|
|
#if defined(USE_TASKBAR)
|
|
|
|
|
2020-09-09 00:57:57 +00:00
|
|
|
#include "common/str.h"
|
|
|
|
#include "common/config-manager.h"
|
|
|
|
#include "common/file.h"
|
|
|
|
|
2011-04-26 16:47:03 +00:00
|
|
|
namespace Common {
|
|
|
|
|
2020-07-08 21:30:36 +00:00
|
|
|
/**
|
|
|
|
* @defgroup common_taskbar Taskbar Manager
|
|
|
|
* @ingroup common
|
|
|
|
*
|
|
|
|
* @brief The TaskbarManager module allows for interaction with the ScummVM application icon.
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2011-04-26 19:31:56 +00:00
|
|
|
/**
|
2011-04-27 20:07:03 +00:00
|
|
|
* The TaskbarManager allows interaction with the ScummVM application icon:
|
|
|
|
* - in the taskbar on Windows 7 and later
|
|
|
|
* - in the launcher for Unity
|
2022-01-29 02:58:21 +00:00
|
|
|
* - in the dock on macOS
|
2011-04-27 20:07:03 +00:00
|
|
|
* - ...
|
2011-04-26 19:31:56 +00:00
|
|
|
*
|
2011-04-27 20:07:03 +00:00
|
|
|
* This allows GUI code and engines to display a progress bar, an overlay icon and/or count
|
|
|
|
* associated with the ScummVM icon as well as add the started engine to the recent items
|
|
|
|
* list (so that the user can start the engine directly in one click).
|
|
|
|
*
|
|
|
|
* Examples of use:
|
|
|
|
* - Track search progress and found engines when running the Mass Add dialog
|
|
|
|
* - Add an entry to the recent items when starting an engine
|
|
|
|
* - Show the current running engine icon as an overlay
|
2011-04-26 19:31:56 +00:00
|
|
|
*
|
|
|
|
* @note functionality will vary between supported platforms (due to API limitations)
|
|
|
|
* and some of the methods will just be no-ops or approximate the functionality
|
|
|
|
* as best as possible
|
|
|
|
*/
|
2011-04-26 16:47:03 +00:00
|
|
|
class TaskbarManager {
|
|
|
|
public:
|
|
|
|
/**
|
2011-04-04 16:49:49 +00:00
|
|
|
* Values representing the taskbar progress state
|
2011-04-26 16:47:03 +00:00
|
|
|
*/
|
|
|
|
enum TaskbarProgressState {
|
2011-03-31 08:46:36 +00:00
|
|
|
kTaskbarNoProgress = 0,
|
|
|
|
kTaskbarIndeterminate = 1,
|
|
|
|
kTaskbarNormal = 2,
|
|
|
|
kTaskbarError = 4,
|
|
|
|
kTaskbarPaused = 8
|
2011-04-26 16:47:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
TaskbarManager() {}
|
|
|
|
virtual ~TaskbarManager() {}
|
|
|
|
|
|
|
|
/**
|
2011-04-04 16:49:49 +00:00
|
|
|
* Sets an overlay icon on the taskbar icon
|
2011-04-26 16:47:03 +00:00
|
|
|
*
|
|
|
|
* When an empty name is given, no icon is shown
|
|
|
|
* and the current overlay icon (if any) is removed
|
|
|
|
*
|
2011-04-04 16:49:49 +00:00
|
|
|
* @param name Path to the icon
|
|
|
|
* @param description The description
|
2011-04-26 16:47:03 +00:00
|
|
|
*
|
|
|
|
* @note on Windows, the icon should be an ICO file
|
|
|
|
*/
|
2011-04-04 16:49:49 +00:00
|
|
|
virtual void setOverlayIcon(const String &name, const String &description) {}
|
2011-04-26 16:47:03 +00:00
|
|
|
|
2011-04-04 16:49:49 +00:00
|
|
|
/**
|
|
|
|
* Sets a progress value on the taskbar icon
|
|
|
|
*
|
|
|
|
* @param completed The current progress value.
|
|
|
|
* @param total The maximum progress value.
|
|
|
|
*/
|
|
|
|
virtual void setProgressValue(int completed, int total) {}
|
2011-04-26 16:47:03 +00:00
|
|
|
|
2011-04-04 16:49:49 +00:00
|
|
|
/**
|
|
|
|
* Sets the progress state on the taskbar icon
|
|
|
|
*
|
|
|
|
* State can be any of the following:
|
|
|
|
* - NoProgress: disable display of progress state
|
2011-04-26 16:47:03 +00:00
|
|
|
* - Indeterminate
|
|
|
|
* - Normal
|
|
|
|
* - Error
|
|
|
|
* - Paused
|
2011-04-04 16:49:49 +00:00
|
|
|
*
|
|
|
|
* @param state The progress state
|
|
|
|
*/
|
|
|
|
virtual void setProgressState(TaskbarProgressState state) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the count number associated with the icon as an overlay
|
|
|
|
*
|
|
|
|
* @param count The count
|
|
|
|
*
|
|
|
|
* @note Setting a count of 0 will hide the count
|
|
|
|
*/
|
|
|
|
virtual void setCount(int count) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an engine to the recent items list
|
|
|
|
*
|
|
|
|
* Path is automatically set to the current executable path,
|
|
|
|
* an icon name is generated (with fallback to default icon)
|
|
|
|
* and the command line is set to start the engine on click.
|
|
|
|
*
|
|
|
|
* @param name The target name.
|
|
|
|
* @param description The description.
|
|
|
|
*/
|
|
|
|
virtual void addRecent(const String &name, const String &description) {}
|
2011-04-26 16:47:03 +00:00
|
|
|
|
2011-08-06 19:25:32 +00:00
|
|
|
/**
|
2016-02-14 09:27:44 +00:00
|
|
|
* Notifies the user an error occurred through the taskbar icon
|
2011-08-06 19:25:32 +00:00
|
|
|
*
|
|
|
|
* This will for example show the taskbar icon as red (using progress of 100% and an error state)
|
|
|
|
* on Windows, and set the launcher icon in the urgent state on Unity
|
|
|
|
*/
|
|
|
|
virtual void notifyError() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears the error notification
|
|
|
|
*/
|
|
|
|
virtual void clearError() {}
|
2020-09-09 00:57:57 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Get the path to an icon for the game
|
|
|
|
*
|
|
|
|
* @param target The game target
|
|
|
|
* @param extension The icon extension
|
|
|
|
* @return The icon path (or "" if no icon was found)
|
|
|
|
*/
|
|
|
|
Common::String getIconPath(const Common::String &target, const Common::String &extension) {
|
|
|
|
// We first try to look for a iconspath configuration variable then
|
|
|
|
// fallback to the extra path
|
|
|
|
//
|
|
|
|
// Icons can be either in a subfolder named "icons" or directly in the path
|
|
|
|
|
|
|
|
Common::String iconsPath = ConfMan.get("iconspath");
|
|
|
|
Common::String extraPath = ConfMan.get("extrapath");
|
|
|
|
|
|
|
|
Common::String targetIcon = target + extension;
|
|
|
|
Common::String qualifiedIcon = ConfMan.get("engineid") + "-" + ConfMan.get("gameid") + extension;
|
|
|
|
Common::String gameIcon = ConfMan.get("gameid") + extension;
|
2021-04-23 22:15:02 +00:00
|
|
|
Common::String engineIcon = ConfMan.get("engineid") + extension;
|
2020-09-09 00:57:57 +00:00
|
|
|
|
|
|
|
#define TRY_ICON_PATH(path) { \
|
|
|
|
Common::FSNode node((path)); \
|
|
|
|
if (node.exists()) \
|
|
|
|
return (path); \
|
|
|
|
}
|
|
|
|
if (!iconsPath.empty()) {
|
|
|
|
TRY_ICON_PATH(iconsPath + "/" + targetIcon);
|
|
|
|
TRY_ICON_PATH(iconsPath + "/" + qualifiedIcon);
|
|
|
|
TRY_ICON_PATH(iconsPath + "/" + gameIcon);
|
2021-04-23 22:15:02 +00:00
|
|
|
TRY_ICON_PATH(iconsPath + "/" + engineIcon);
|
2020-09-09 00:57:57 +00:00
|
|
|
TRY_ICON_PATH(iconsPath + "/icons/" + targetIcon);
|
|
|
|
TRY_ICON_PATH(iconsPath + "/icons/" + qualifiedIcon);
|
|
|
|
TRY_ICON_PATH(iconsPath + "/icons/" + gameIcon);
|
2021-04-23 22:15:02 +00:00
|
|
|
TRY_ICON_PATH(iconsPath + "/icons/" + engineIcon);
|
2020-09-09 00:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!extraPath.empty()) {
|
|
|
|
TRY_ICON_PATH(extraPath + "/" + targetIcon);
|
|
|
|
TRY_ICON_PATH(extraPath + "/" + qualifiedIcon);
|
|
|
|
TRY_ICON_PATH(extraPath + "/" + gameIcon);
|
2021-04-23 22:15:02 +00:00
|
|
|
TRY_ICON_PATH(extraPath + "/" + engineIcon);
|
2020-09-09 00:57:57 +00:00
|
|
|
TRY_ICON_PATH(extraPath + "/icons/" + targetIcon);
|
|
|
|
TRY_ICON_PATH(extraPath + "/icons/" + qualifiedIcon);
|
|
|
|
TRY_ICON_PATH(extraPath + "/icons/" + gameIcon);
|
2021-04-23 22:15:02 +00:00
|
|
|
TRY_ICON_PATH(extraPath + "/icons/" + engineIcon);
|
2020-09-09 00:57:57 +00:00
|
|
|
}
|
|
|
|
#undef TRY_ICON_PATH
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
2011-04-26 16:47:03 +00:00
|
|
|
};
|
|
|
|
|
2020-07-08 21:30:36 +00:00
|
|
|
/** @} */
|
|
|
|
|
2013-01-26 18:33:27 +00:00
|
|
|
} // End of namespace Common
|
2011-04-26 16:47:03 +00:00
|
|
|
|
2011-04-29 16:15:49 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-26 16:47:03 +00:00
|
|
|
#endif // COMMON_TASKBAR_MANAGER_H
|