Files
Upsilon/apps/shared/buffer_function_title_cell.h
2018-09-07 17:55:42 +02:00

32 lines
979 B
C++

#ifndef SHARED_BUFFER_FUNCTION_TITLE_CELL_H
#define SHARED_BUFFER_FUNCTION_TITLE_CELL_H
#include "function_title_cell.h"
namespace Shared {
class BufferFunctionTitleCell : public FunctionTitleCell {
public:
BufferFunctionTitleCell(Orientation orientation = Orientation::VerticalIndicator, KDText::FontSize size = KDText::FontSize::Large);
void setEven(bool even) override;
void setHighlighted(bool highlight) override;
void setColor(KDColor color) override;
void setText(const char * textContent);
void setFontSize(KDText::FontSize size) { m_bufferTextView.setFontSize(size); }
const char * text() const override {
return m_bufferTextView.text();
}
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
protected:
KDRect bufferTextViewFrame() const;
EvenOddBufferTextCell * bufferTextView() { return &m_bufferTextView; }
private:
EvenOddBufferTextCell m_bufferTextView;
};
}
#endif