libnick 2025.3.0
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
progressstate.h
Go to the documentation of this file.
1
22
23#ifndef PROGRESSSTATE_H
24#define PROGRESSSTATE_H
25
27{
31 enum class ProgressState
32 {
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.
Definition progressstate.h:36
@ Normal
The taskbar item is in a normal progress state.
Definition progressstate.h:35
@ Indeterminate
The taskbar item is in an indeterminate progress state.
Definition progressstate.h:34
@ NoProgress
The taskbar item is in a no progress state.
Definition progressstate.h:33
@ Paused
The taskbar item is in a paused progress state.
Definition progressstate.h:37