-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTextStyle.h
35 lines (28 loc) · 1.37 KB
/
TextStyle.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
#pragma once
#include "constants.h"
#include "Object.h"
namespace dawn
{
class TextStyle : public Object
{
public:
TextStyle(std::string font, vec4f foreground, CONSTANTS::TextAlign align, unsigned int maxWidth, unsigned int maxHeight) : m_font(font), m_foreground(foreground), m_align(align), m_maxWidth(maxWidth), m_maxHeight(maxHeight) { }
virtual ~TextStyle() { }
std::string font() const { return m_font; }
void font(std::string font) { setChanged(m_font != font); m_font = font; }
vec4f foreground() const { return m_foreground; }
void foreground(vec4f foreground) { setChanged(m_foreground != foreground); m_foreground = foreground; }
CONSTANTS::TextAlign align() const { return m_align; }
void align(CONSTANTS::TextAlign align) { setChanged(m_align != align); m_align = align; }
unsigned int maxWidth() const { return m_maxWidth; }
void maxWidth(unsigned int maxWidth) { setChanged(m_maxWidth != maxWidth); m_maxWidth = maxWidth; }
unsigned int maxHeight() const { return m_maxHeight; }
void maxHeight(unsigned int maxHeight) { setChanged(m_maxHeight != maxHeight); m_maxHeight = maxHeight; }
protected:
std::string m_font;
vec4f m_foreground;
CONSTANTS::TextAlign m_align;
unsigned int m_maxWidth;
unsigned int m_maxHeight;
};
}