Numworks Epsilon  1.4.1
Graphing Calculator Operating System
lock_view.h
Go to the documentation of this file.
1 #ifndef APPS_LOCK_VIEW_H
2 #define APPS_LOCK_VIEW_H
3 
4 #include <escher.h>
5 
6 class LockView : public View {
7 public:
8  void drawRect(KDContext * ctx, KDRect rect) const override;
9  KDSize minimalSizeForOptimalDisplay() const override;
10  constexpr static int k_lockHeight = 9;
11  constexpr static int k_lockWidth = 7;
12 };
13 
14 #endif
Definition: size.h:6
KDSize minimalSizeForOptimalDisplay() const override
Definition: lock_view.cpp:22
void drawRect(KDContext *ctx, KDRect rect) const override
Definition: lock_view.cpp:17
Definition: rect.h:26
Definition: view.h:23
static constexpr int k_lockHeight
Definition: lock_view.h:10
static constexpr int k_lockWidth
Definition: lock_view.h:11