mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
24 lines
513 B
C++
24 lines
513 B
C++
#ifndef SHARED_STORE_TITLE_CELL_H
|
|
#define SHARED_STORE_TITLE_CELL_H
|
|
|
|
#include "buffer_function_title_cell.h"
|
|
|
|
namespace Shared {
|
|
|
|
class StoreTitleCell : public BufferFunctionTitleCell {
|
|
public:
|
|
StoreTitleCell() :
|
|
BufferFunctionTitleCell(Orientation::HorizontalIndicator, KDFont::SmallFont),
|
|
m_separatorLeft(false)
|
|
{}
|
|
void setSeparatorLeft(bool separator);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void layoutSubviews() override;
|
|
private:
|
|
bool m_separatorLeft;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|