mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
24 lines
531 B
C++
24 lines
531 B
C++
#ifndef SHARED_STORE_TITLE_CELL_H
|
|
#define SHARED_STORE_TITLE_CELL_H
|
|
|
|
#include "buffer_function_title_cell.h"
|
|
#include "separable.h"
|
|
|
|
namespace Shared {
|
|
|
|
class StoreTitleCell : public BufferFunctionTitleCell, public Separable {
|
|
public:
|
|
StoreTitleCell() :
|
|
BufferFunctionTitleCell(Orientation::HorizontalIndicator, KDFont::SmallFont),
|
|
Separable()
|
|
{}
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void layoutSubviews(bool force = false) override;
|
|
private:
|
|
void didSetSeparator() override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|