mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 17:50:04 +01:00
15 lines
290 B
C++
15 lines
290 B
C++
#ifndef ESCHER_TEXT_CURSOR_VIEW_H
|
|
#define ESCHER_TEXT_CURSOR_VIEW_H
|
|
|
|
#include <escher/view.h>
|
|
|
|
class TextCursorView : public View {
|
|
public:
|
|
using View::View;
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
};
|
|
|
|
#endif
|
|
|