Blame view

build1/epsilon-master/poincare/src/layout/char_layout.h 1.34 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
38
39
40
41
42
43
44
45
  #ifndef POINCARE_CHAR_LAYOUT_H
  #define POINCARE_CHAR_LAYOUT_H
  
  #include <poincare/static_layout_hierarchy.h>
  #include <poincare/layout_engine.h>
  #include <string.h>
  #include <assert.h>
  
  namespace Poincare {
  
  class CharLayout : public StaticLayoutHierarchy<0> {
  public:
    CharLayout(char c, KDText::FontSize fontSize = KDText::FontSize::Large);
    ExpressionLayout * clone() const override;
  
    // CharLayout
    char character() const { return m_char; }
    KDText::FontSize fontSize() const { return m_fontSize; }
  
    // Tree navigation
    ExpressionLayoutCursor cursorLeftOf(ExpressionLayoutCursor cursor, bool * shouldRecomputeLayout) override;
    ExpressionLayoutCursor cursorRightOf(ExpressionLayoutCursor cursor, bool * shouldRecomputeLayout) override;
  
    // Serialization
    int writeTextInBuffer(char * buffer, int bufferSize) const override {
      return LayoutEngine::writeOneCharInBuffer(buffer, bufferSize, m_char);
    }
  
    // Other
    bool isCollapsable(int * numberOfOpenParenthesis, bool goingLeft) const override;
  protected:
    void render(KDContext * ctx, KDPoint p, KDColor expressionColor, KDColor backgroundColor) override;
    KDPoint positionOfChild(ExpressionLayout * child) override {
      assert(false);
      return KDPointZero;
    }
    KDSize computeSize() override;
    void computeBaseline() override;
    char m_char;
    KDText::FontSize m_fontSize;
  };
  
  }
  
  #endif