![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <WindowsApplication.h>
Public Member Functions | |
| APPLICATIONCORE_API void | SetOverlayIcon (HWND WindowHandle, HICON Icon, FText Description) |
| APPLICATIONCORE_API void | SetProgressState (HWND WindowHandle, ETaskbarProgressState::Type State) |
| APPLICATIONCORE_API void | SetProgressValue (HWND WindowHandle, uint64 Current, uint64 Total) |
| APPLICATIONCORE_API | ~FTaskbarList () |
Static Public Member Functions | |
| static APPLICATIONCORE_API TSharedRef< FTaskbarList > | Create () |
Allows access to task bar lists.
This class can be used to change the appearance of a window's entry in the windows task bar, such as setting an overlay icon or showing a progress indicator.
| FTaskbarList::~FTaskbarList | ( | ) |
Destructor.
|
static |
Create and initialize a new task bar list.
Sets the overlay icon of a task bar entry.
| WindowHandle | The window handle to change the overlay icon for. |
| Icon | The overlay icon to set. |
| Description | The overlay icon's description text. |
| void FTaskbarList::SetProgressState | ( | HWND | WindowHandle, |
| ETaskbarProgressState::Type | State | ||
| ) |
Sets the progress state of a task bar entry.
| WindowHandle | The window handle to change the progress state for. |
| State | The new progress state. |
Sets the progress value of a task bar entry.
| WindowHandle | The window handle to change the progress value for. |
| Current | The current progress value. |
| Total | The total progress value. |