-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcwt.h
92 lines (82 loc) · 1.25 KB
/
cwt.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#pragma once
#include <string>
#include <algorithm>
#include <cassert>
namespace cwt
{
enum class Color
{
FIRST,
UNDEFINED = FIRST,
BLACK,
BLUE,
CYAN,
DARK_GRAY,
GRAY,
GREEN,
LIGHT_GRAY,
MAGENTA,
ORANGE,
PINK,
RED,
WHITE,
YELLOW,
BOOK_BLUE,
BOOK_LIGHT_BLUE,
BOOK_RED,
PRINCETON_ORANGE,
DEFAULT_PEN_COLOR = BLACK,
DEFAULT_CLEAR_COLOR = WHITE,
LAST
};
struct ColorRgba
{
int r = 0;
int g = 0;
int b = 0;
int a = 255;
};
ColorRgba getRgba(Color color);
Color getColor(int red, int green, int blue);
struct Pen
{
ColorRgba color;
double radius;
};
class Font
{
public:
enum class Style
{
FontStyleRegular,
FontStyleBold,
FontStyleItalic,
FontStyleBoldItalic,
FontStyleUnderline,
FontStyleStrikeout
};
Font() = default;
Font(const std::wstring fontName, const Style fontStyle, size_t fontSize)
{
name = fontName;
style = fontStyle;
size = fontSize;
}
Style viewFontSyle() const
{
return this->style;
}
const std::wstring& viewFontName() const
{
return this->name;
}
size_t viewFontSize() const
{
return this->size;
}
private:
std::wstring name = L"SansSerif";
Style style = Style::FontStyleRegular;
size_t size = 16;
};
}