Files
Upsilon/apps/lock_view.h
Émilie Feral 4f5b35a4b3 [apps] Alpha Lock icon
Change-Id: Ie5a2f4e6b3fae2e14808430e2207306cae2bd7c2
2017-04-27 13:16:57 +02:00

15 lines
321 B
C++

#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