-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomizationOptions.h
45 lines (42 loc) · 1.06 KB
/
CustomizationOptions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#pragma once
#include <string>
#include <vector>
#include <istream>
class CustomizationOptions {
public:
std::string bgColor;
std::string bgPath;
bool bgPictureEnabled;
bool bgVerticalRepeat;
bool bgHorizontalRepeat;
bool bgStretch;
bool bgFixed;
std::string siteName;
int nameSize;
std::string nameColor;
int colNum;
std::vector<std::string> colContent;
std::vector<int> colFontSize;
std::vector<std::string> colFontColor;
std::vector<std::string> colBgColor;
std::vector<std::string> colBgPath;
std::vector<bool> colBgPictureEnabled;
std::vector<bool> colVerticalRepeat;
std::vector<bool> colHorizontalRepeat;
std::vector<bool> colStretch;
std::vector<bool> colFixed;
std::vector<int> colRoundedCornersRadius;
std::string footerBgColor;
std::string footerBgPath;
bool footerBgPictureEnabled;
bool footerBgVerticalRepeat;
bool footerBgHorizontalRepeat;
bool footerBgStretch;
bool footerBgFixed;
std::string footerFontColor;
int footerFontSize;
std::string footerText;
CustomizationOptions();
CustomizationOptions(std::istream&);
void out();
};