Blame view

build3/poincare/src/layout/integral_layout.h 1.37 KB
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
29
30
31
32
33
34
35
36
37
  #ifndef POINCARE_INTEGRAL_LAYOUT_H
  #define POINCARE_INTEGRAL_LAYOUT_H
  
  #include <poincare/expression.h>
  #include <poincare/expression_layout.h>
  
  namespace Poincare {
  
  class IntegralLayout : public ExpressionLayout {
  public:
    IntegralLayout(ExpressionLayout * lowerBoundLayout, ExpressionLayout * upperBoundLayout, ExpressionLayout * integrandLayout);
    ~IntegralLayout();
    IntegralLayout(const IntegralLayout& other) = delete;
    IntegralLayout(IntegralLayout&& other) = delete;
    IntegralLayout& operator=(const IntegralLayout& other) = delete;
    IntegralLayout& operator=(IntegralLayout&& other) = delete;
    constexpr static KDCoordinate k_symbolHeight = 4;
    constexpr static KDCoordinate k_symbolWidth = 4;
  protected:
    void render(KDContext * ctx, KDPoint p, KDColor expressionColor, KDColor backgroundColor) override;
    KDSize computeSize() override;
    ExpressionLayout * child(uint16_t index) override;
    KDPoint positionOfChild(ExpressionLayout * child) override;
  private:
    constexpr static KDCoordinate k_boundHeightMargin = 8;
    constexpr static KDCoordinate k_boundWidthMargin = 5;
    constexpr static KDCoordinate k_integrandWidthMargin = 2;
    constexpr static KDCoordinate k_integrandHeigthMargin = 2;
    constexpr static KDCoordinate k_lineThickness = 1;
    ExpressionLayout * m_lowerBoundLayout;
    ExpressionLayout * m_upperBoundLayout;
    ExpressionLayout * m_integrandLayout;
  };
  
  }
  
  #endif