mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
19 lines
338 B
C++
19 lines
338 B
C++
#ifndef SHARED_CURSOR_VIEW_H
|
|
#define SHARED_CURSOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Shared {
|
|
|
|
class CursorView : public TransparentView {
|
|
public:
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
private:
|
|
constexpr static KDCoordinate k_size = 19;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|