GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ComponentSettings.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
7 namespace utility
8 {
11 {
12 int x;
13 int y;
14 uint16_t width;
15 uint16_t height;
17 std::vector<std::string> localizationKeys;
18
19 ComponentSettings() = default;
20
27 ComponentSettings(int x, int y, uint16_t width, uint16_t height, const std::vector<std::string>& localizationKeys = {});
28
29 ~ComponentSettings() = default;
30 };
31 }
32}
#define GUI_FRAMEWORK_API
Provides styles for other classes.
Definition IStyles.h:11
ComponentSettings(int x, int y, uint16_t width, uint16_t height, const std::vector< std::string > &localizationKeys={})
Create settings for createing all windows.
std::vector< std::string > localizationKeys