mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
17 lines
471 B
C++
17 lines
471 B
C++
#include <escher/pointer_text_view.h>
|
|
#include <assert.h>
|
|
|
|
PointerTextView::PointerTextView(const KDFont * font, const char * text, float horizontalAlignment, float verticalAlignment,
|
|
KDColor textColor, KDColor backgroundColor) :
|
|
TextView(font, horizontalAlignment, verticalAlignment, textColor, backgroundColor),
|
|
m_text(text)
|
|
{
|
|
}
|
|
|
|
void PointerTextView::setText(const char * text) {
|
|
if (text != m_text) {
|
|
m_text = text;
|
|
markRectAsDirty(bounds());
|
|
}
|
|
}
|