lock_view.h
321 Bytes
#ifndef APPS_LOCK_VIEW_H
#define APPS_LOCK_VIEW_H
#include <escher.h>
class LockView : public View {
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