libnick 2024.9.2
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
progressstate.h
Go to the documentation of this file.
1
23#ifndef PROGRESSSTATE_H
24#define PROGRESSSTATE_H
25
27{
31 enum class ProgressState
32 {
33 NoProgress = 0,
34 Indeterminate = 1,
35 Normal = 2,
36 Error = 4,
37 Paused = 8
38 };
39}
40
41#endif //PROGRESSSTATE_H
Definition progressstate.h:27
ProgressState
States of progress on a taskbar button.
Definition progressstate.h:32
@ Error
The taskbar item is in an error progress state.
@ Normal
The taskbar item is in a normal progress state.
@ Indeterminate
The taskbar item is in an indeterminate progress state.
@ NoProgress
The taskbar item is in a no progress state.
@ Paused
The taskbar item is in a paused progress state.