Files
Upsilon/apps/shared/cursor_view.h
2018-05-16 10:01:24 +02:00

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