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
4
5using namespace std;
6
7namespace gui_framework
8{
9 ListBox::ListBox(const wstring& listBoxName, const utility::ComponentSettings& settings, BaseComposite* parent, bool isSorting) :
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}
Base class for all windows that has children windows.
Base class for all list boxes.
Definition BaseListBox.h:15
size_t getHash() const override
Used as key in creators.
Definition ListBox.cpp:21
ListBox(const std::wstring &listBoxName, const utility::ComponentSettings &settings, BaseComposite *parent, bool isSorting=false)
Definition ListBox.cpp:9