38 lines
764 B
C++
38 lines
764 B
C++
#include "textlabel.h"
|
|
|
|
GLGuiTextLabel::GLGuiTextLabel(int _x, int _y, bool _center, int _wrap) {
|
|
setPos(_x, _y);
|
|
center = _center;
|
|
wrap = _wrap;
|
|
col.set(1.0f, 1.0f, 1.0f, 1.0f);
|
|
}
|
|
|
|
GLGuiTextLabel::GLGuiTextLabel(std::string str, int _x, int _y, bool _center, int _wrap) {
|
|
setPos(_x, _y);
|
|
center = _center;
|
|
wrap = _wrap;
|
|
setText(str);
|
|
col.set(1.0f, 1.0f, 1.0f, 1.0f);
|
|
}
|
|
|
|
void GLGuiTextLabel::setText(std::string str) {
|
|
text = str;
|
|
}
|
|
|
|
void GLGuiTextLabel::setColor(GLColor c) {
|
|
col = c;
|
|
}
|
|
|
|
void GLGuiTextLabel::setPos(int _x, int _y) {
|
|
x = _x;
|
|
y = _y;
|
|
}
|
|
|
|
void GLGuiTextLabel::render() {
|
|
glColorGLC(col);
|
|
|
|
GLFontEngine::prepare2DbyPushingMatrix();
|
|
fontengine.renderLines(text, x, y, center, 0, wrap, 0);
|
|
GLFontEngine::regain3DbyPoppingMatrix();
|
|
}
|