Blame view

build1/epsilon-master/poincare/src/layout/parenthesis_layout.h 962 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
28
  #ifndef POINCARE_PARENTHESIS_LAYOUT_H
  #define POINCARE_PARENTHESIS_LAYOUT_H
  
  #include "bracket_layout.h"
  
  namespace Poincare {
  
  class ParenthesisLayout : public BracketLayout {
  public:
    using BracketLayout::BracketLayout;
    constexpr static KDCoordinate parenthesisWidth() { return k_widthMargin + k_lineThickness + k_externWidthMargin; }
    constexpr static KDCoordinate k_parenthesisCurveWidth = 5;
    constexpr static KDCoordinate k_parenthesisCurveHeight = 7;
    constexpr static KDCoordinate k_externWidthMargin = 1;
    constexpr static KDCoordinate k_externHeightMargin = 2;
    constexpr static KDCoordinate k_widthMargin = 5;
    constexpr static KDCoordinate k_lineThickness = 1;
    constexpr static KDCoordinate k_verticalMargin = 4;
  protected:
    KDColor s_parenthesisWorkingBuffer[k_parenthesisCurveHeight*k_parenthesisCurveWidth];
    KDSize computeSize() override {
      return KDSize(parenthesisWidth(), operandHeight() + k_verticalMargin);
    }
  };
  
  }
  
  #endif