Blame view

Modif/epsilon-master/apps/shared/function_expression_cell.h 457 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 SHARED_FUNCTION_EXPRESSION_CELL_H
  #define SHARED_FUNCTION_EXPRESSION_CELL_H
  
  #include <escher.h>
  
  namespace Shared {
  
  class FunctionExpressionCell : public EvenOddExpressionCell {
  public:
    FunctionExpressionCell();
    KDSize minimalSizeForOptimalDisplay() const override;
    void drawRect(KDContext * ctx, KDRect rect) const override;
    void layoutSubviews() override;
  private:
    constexpr static KDCoordinate k_separatorThickness = 1;
  };
  
  }
  
  #endif