mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
19 lines
320 B
C++
19 lines
320 B
C++
#ifndef SHARED_OK_VIEW_H
|
|
#define SHARED_OK_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Shared {
|
|
|
|
class OkView : public TransparentView {
|
|
public:
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
constexpr static KDCoordinate k_okSize = 20;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|