GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ProgressBarCreator.cpp
Go to the documentation of this file.
2
4
5using namespace std;
6
7namespace gui_framework
8{
9 namespace utility
10 {
11 BaseComponent* ProgressBarCreator::create(const wstring& windowName, const utility::ComponentSettings& settings, const any& additionalData, BaseComposite* parent)
12 {
13 auto [minRange, maxRange, updateStep] = any_cast<tuple<int, int, int>>(additionalData);
14
15 return new ProgressBar(windowName, settings, parent, minRange, maxRange, updateStep);
16 }
17 }
18}
Base class for all windows, controls, etc.
Base class for all windows that has children windows.
Standard updatable progress bar.
Definition ProgressBar.h:12
BaseComponent * create(const std::wstring &windowName, const utility::ComponentSettings &settings, const std::any &additionalData, BaseComposite *parent) override