GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
TextListViewAdditionalCreationData.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace gui_framework
8{
9 namespace utility
10 {
12 template<>
14 {
15 protected:
16 std::vector<std::wstring> items;
17
18 public:
20
21 AdditionalCreationData(const std::vector<std::wstring>& items);
22
23 virtual std::any getData() const;
24
25 virtual ~AdditionalCreationData() = default;
26 };
27
29 template<>
31 {
32 protected:
33 std::vector<std::wstring> items;
34
35 public:
37
38 AdditionalCreationData(const std::vector<std::wstring>& items);
39
40 virtual std::any getData() const;
41
42 virtual ~AdditionalCreationData() = default;
43 };
44 }
45}
#define GUI_FRAMEWORK_API
Standard list view in list mode with text items.
Standard list view with text items.
Definition TextListView.h:9
AdditionalCreationData(const std::vector< std::wstring > &items)
AdditionalCreationData(const std::vector< std::wstring > &items)
Base templated class for component creators.