GUIFramework
1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ProgressBarCreator.cpp
Go to the documentation of this file.
1
#include "
ProgressBarCreator.h
"
2
3
#include "
Components/ProgressBars/ProgressBar.h
"
4
5
using namespace
std;
6
7
namespace
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
}
ProgressBar.h
ProgressBarCreator.h
gui_framework::BaseComponent
Base class for all windows, controls, etc.
Definition
BaseComponent.h:17
gui_framework::BaseComposite
Base class for all windows that has children windows.
Definition
BaseComposite.h:23
gui_framework::ProgressBar
Standard updatable progress bar.
Definition
ProgressBar.h:12
gui_framework::utility::ProgressBarCreator::create
BaseComponent * create(const std::wstring &windowName, const utility::ComponentSettings &settings, const std::any &additionalData, BaseComposite *parent) override
Definition
ProgressBarCreator.cpp:11
gui_framework
Definition
BaseComponent.cpp:21
gui_framework::utility::ComponentSettings
All settings for windows.
Definition
ComponentSettings.h:11
GUIFramework
src
Utility
Creators
Components
ProgressBars
ProgressBarCreator.cpp
Generated by
1.12.0