Files
Upsilon/escher/src/even_odd_buffer_text_cell.cpp
2018-06-07 14:46:14 +02:00

44 lines
1.1 KiB
C++

#include <escher/even_odd_buffer_text_cell.h>
#include <assert.h>
EvenOddBufferTextCell::EvenOddBufferTextCell(KDText::FontSize size, float horizontalAlignment, float verticalAlignment) :
EvenOddCell(),
m_bufferTextView(size, horizontalAlignment, verticalAlignment)
{
}
const char * EvenOddBufferTextCell::text() const {
return m_bufferTextView.text();
}
void EvenOddBufferTextCell::setHighlighted(bool highlight) {
EvenOddCell::setHighlighted(highlight);
m_bufferTextView.setBackgroundColor(backgroundColor());
}
void EvenOddBufferTextCell::setEven(bool even) {
EvenOddCell::setEven(even);
m_bufferTextView.setBackgroundColor(backgroundColor());
}
void EvenOddBufferTextCell::setText(const char * textContent) {
m_bufferTextView.setText(textContent);
}
void EvenOddBufferTextCell::setTextColor(KDColor textColor) {
m_bufferTextView.setTextColor(textColor);
}
int EvenOddBufferTextCell::numberOfSubviews() const {
return 1;
}
View * EvenOddBufferTextCell::subviewAtIndex(int index) {
assert(index == 0);
return &m_bufferTextView;
}
void EvenOddBufferTextCell::layoutSubviews() {
m_bufferTextView.setFrame(bounds());
}