mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
StorageFunction instead of a Function The original controllers are to be deleted when Sequence uses Storage
22 lines
543 B
C++
22 lines
543 B
C++
#ifndef SHARED_STORAGE_FUNCTION_BANNER_DELEGATE_H
|
|
#define SHARED_STORAGE_FUNCTION_BANNER_DELEGATE_H
|
|
|
|
#include "storage_function_store.h"
|
|
#include "banner_view.h"
|
|
#include "curve_view_cursor.h"
|
|
|
|
namespace Shared {
|
|
|
|
class StorageFunctionBannerDelegate {
|
|
public:
|
|
constexpr static int k_maxNumberOfCharacters = 50;
|
|
constexpr static int k_maxDigitLegendLength = 11;
|
|
protected:
|
|
void reloadBannerViewForCursorOnFunction(CurveViewCursor * cursor, StorageFunction * function, char symbol);
|
|
virtual BannerView * bannerView() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|