Files
Upsilon/apps/shared/round_cursor_view.h
2018-05-15 17:24:27 +02:00

21 lines
410 B
C++

#ifndef SHARED_ROUND_CURSOR_VIEW_H
#define SHARED_ROUND_CURSOR_VIEW_H
#include <escher.h>
namespace Shared {
class RoundCursorView : public TransparentView {
public:
RoundCursorView(KDColor color = KDColorBlack);
void drawRect(KDContext * ctx, KDRect rect) const override;
KDSize minimalSizeForOptimalDisplay() const override;
void setColor(KDColor color);
private:
KDColor m_color;
};
}
#endif