Blame view

build3/apps/hardware_test/keyboard_view.h 727 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  #ifndef HARDWARE_TEST_KEYBOARD_VIEW_H
  #define HARDWARE_TEST_KEYBOARD_VIEW_H
  
  #include <escher.h>
  
  namespace HardwareTest {
  
  class KeyboardView : public View {
  public:
    KeyboardView();
    int testedKeyIndex() const;
    void setTestedKeyIndex(int i);
    void drawRect(KDContext * ctx, KDRect rect) const override;
  private:
    void drawKey(int key, KDContext * ctx, KDRect rect) const;
    constexpr static int k_margin = 4;
    constexpr static int k_smallSquareSize = 8;
    constexpr static int k_bigSquareSize = 14;
    constexpr static int k_smallRectHeight = 8;
    constexpr static int k_smallRectWidth = 16;
    constexpr static int k_bigRectHeight = 14;
    constexpr static int k_bigRectWidth = 20;
    int m_testedKeyIndex;
  };
  }
  
  #endif