mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
18 lines
330 B
C++
18 lines
330 B
C++
#ifndef SHARED_VERTICAL_CURSOR_VIEW_H
|
|
#define SHARED_VERTICAL_CURSOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "cursor_view.h"
|
|
|
|
namespace Shared {
|
|
|
|
class VerticalCursorView : public CursorView {
|
|
public:
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|