Describes minimum required functionality from TaskBarProgress component.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class ITaskBarProgress :public virtual IComponent
{
public:
virtual bool setType(const IWindow::ProgressType value) = 0; // Set progress bar type
virtual bool setProgress(const float value) = 0; // Set progress bar value. Automatically change type to wptNormal if type is wptNone or wptIndeterminate
};
Namespace: | nitisa::standard |
Include: | Standard/Components/ITaskBarProgress.h |