mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
15 lines
332 B
C++
15 lines
332 B
C++
#ifndef APPS_LOCK_VIEW_H
|
|
#define APPS_LOCK_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
class LockView : public TransparentView {
|
|
public:
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
KDSize minimalSizeForOptimalDisplay() const override;
|
|
constexpr static int k_lockHeight = 9;
|
|
constexpr static int k_lockWidth = 7;
|
|
};
|
|
|
|
#endif
|