Blame view

build3/apps/shared/function_banner_delegate.h 505 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
  #ifndef SHARED_FUNCTION_BANNER_DELEGATE_H
  #define SHARED_FUNCTION_BANNER_DELEGATE_H
  
  #include "function_store.h"
  #include "banner_view.h"
  #include "curve_view_cursor.h"
  
  namespace Shared {
  
  class FunctionBannerDelegate  {
  public:
    constexpr static int k_maxNumberOfCharacters = 50;
    constexpr static int k_maxDigitLegendLength = 11;
  protected:
    void reloadBannerViewForCursorOnFunction(CurveViewCursor * cursor, Function * function, char symbol);
    virtual BannerView * bannerView() = 0;
  };
  
  }
  
  #endif