GUIFramework
1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ListBoxCreator.cpp
Go to the documentation of this file.
1
#include "
ListBoxCreator.h
"
2
3
#include "
Components/ListBoxes/ListBox.h
"
4
5
using namespace
std;
6
7
namespace
gui_framework
8
{
9
namespace
utility
10
{
11
BaseComponent
*
ListBoxCreator::create
(
const
wstring& windowName,
const
utility::ComponentSettings
& settings,
const
any& additionalData,
BaseComposite
* parent)
12
{
13
auto
[values, isSorting] = any_cast<tuple<vector<wstring>,
bool
>>(additionalData);
14
15
BaseListBox
* result =
new
ListBox
(windowName, settings, parent, isSorting);
16
17
for
(
const
auto
& i : values)
18
{
19
result->addValue(i);
20
}
21
22
return
result;
23
}
24
}
25
}
ListBox.h
ListBoxCreator.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::BaseListBox
Base class for all list boxes.
Definition
BaseListBox.h:15
gui_framework::ListBox
Standard list box.
Definition
ListBox.h:9
gui_framework::utility::ListBoxCreator::create
BaseComponent * create(const std::wstring &windowName, const utility::ComponentSettings &settings, const std::any &additionalData, BaseComposite *parent) override
Definition
ListBoxCreator.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
ListBoxes
ListBoxCreator.cpp
Generated by
1.12.0