GUIFramework
1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ListBox.cpp
Go to the documentation of this file.
1
#include "
ListBox.h
"
2
3
#include "
Styles/Components/ListBoxes/DefaultListBoxStyles.h
"
4
5
using namespace
std;
6
7
namespace
gui_framework
8
{
9
ListBox::ListBox
(
const
wstring& listBoxName,
const
utility::ComponentSettings
& settings,
BaseComposite
* parent,
bool
isSorting) :
10
BaseListBox
11
(
12
listBoxName,
13
settings,
14
styles::DefaultListBoxStyles(isSorting),
15
parent
16
)
17
{
18
19
}
20
21
size_t
ListBox::getHash
()
const
22
{
23
return
typeid
(
ListBox
).hash_code();
24
}
25
}
DefaultListBoxStyles.h
ListBox.h
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::getHash
size_t getHash() const override
Used as key in creators.
Definition
ListBox.cpp:21
gui_framework::ListBox::ListBox
ListBox(const std::wstring &listBoxName, const utility::ComponentSettings &settings, BaseComposite *parent, bool isSorting=false)
Definition
ListBox.cpp:9
gui_framework
Definition
BaseComponent.cpp:21
gui_framework::utility::ComponentSettings
All settings for windows.
Definition
ComponentSettings.h:11
GUIFramework
src
Components
ListBoxes
ListBox.cpp
Generated by
1.12.0