Blame view

Modif/epsilon-master/poincare/src/layout/sum_layout.h 480 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
  #ifndef POINCARE_SUM_LAYOUT_H
  #define POINCARE_SUM_LAYOUT_H
  
  #include "sequence_layout.h"
  #include <poincare/layout_engine.h>
  
  namespace Poincare {
  
  class SumLayout : public SequenceLayout {
  public:
    using SequenceLayout::SequenceLayout;
    ExpressionLayout * clone() const override;
    int writeTextInBuffer(char * buffer, int bufferSize) const override;
  private:
    void render(KDContext * ctx, KDPoint p, KDColor expressionColor, KDColor backgroundColor) override;
  };
  
  }
  
  #endif