mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
23 lines
505 B
C++
23 lines
505 B
C++
#ifndef APPS_SHARED_HIDEABLE_EVEN_ODD_BUFFER_TEXT_CELL_H
|
|
#define APPS_SHARED_HIDEABLE_EVEN_ODD_BUFFER_TEXT_CELL_H
|
|
|
|
#include <escher/even_odd_buffer_text_cell.h>
|
|
#include <escher/palette.h>
|
|
#include "hideable.h"
|
|
|
|
namespace Shared {
|
|
|
|
class HideableEvenOddBufferTextCell : public EvenOddBufferTextCell, public Hideable {
|
|
public:
|
|
HideableEvenOddBufferTextCell() :
|
|
EvenOddBufferTextCell(),
|
|
Hideable()
|
|
{}
|
|
KDColor backgroundColor() const override;
|
|
void setHide(bool hide) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|