mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
33 lines
981 B
C++
33 lines
981 B
C++
#include <escher/message_table_cell_with_buffer.h>
|
|
#include <escher/palette.h>
|
|
|
|
MessageTableCellWithBuffer::MessageTableCellWithBuffer(I18n::Message message) :
|
|
MessageTableCell(message),
|
|
m_accessoryView(BufferTextView(KDText::FontSize::Large, 1.0f, 0.5f))
|
|
{
|
|
}
|
|
|
|
void MessageTableCellWithBuffer::setAccessoryText(const char * textBody) {
|
|
m_accessoryView.setText(textBody);
|
|
reloadCell();
|
|
}
|
|
|
|
const char * MessageTableCellWithBuffer::accessoryText() {
|
|
return m_accessoryView.text();
|
|
}
|
|
|
|
View * MessageTableCellWithBuffer::accessoryView() const {
|
|
return (View *)&m_accessoryView;
|
|
}
|
|
|
|
void MessageTableCellWithBuffer::setHighlighted(bool highlight) {
|
|
MessageTableCell::setHighlighted(highlight);
|
|
KDColor backgroundColor = isHighlighted()? Palette::Select : KDColorWhite;
|
|
m_accessoryView.setBackgroundColor(backgroundColor);
|
|
}
|
|
|
|
void MessageTableCellWithBuffer::setTextColor(KDColor color) {
|
|
m_accessoryView.setTextColor(color);
|
|
MessageTableCell::setTextColor(color);
|
|
}
|