Files
Upsilon/apps/sequence/sequence_store.h
Émilie Feral 6d47bc0073 [apps/shared] Add a method symbol in function store
Change-Id: I9f85f815d3ab28425d4df77b6ff4880efde17909
2017-03-02 18:15:48 +01:00

38 lines
1.1 KiB
C++

#ifndef SEQUENCE_SEQUENCE_STORE_H
#define SEQUENCE_SEQUENCE_STORE_H
#include "sequence.h"
#include "../shared/function_store.h"
#include <stdint.h>
#include <escher.h>
namespace Sequence {
class SequenceStore : public Shared::FunctionStore {
public:
using Shared::FunctionStore::FunctionStore;
uint32_t storeChecksum() override;
Sequence * functionAtIndex(int i) override;
Sequence * activeFunctionAtIndex(int i) override;
Sequence * definedFunctionAtIndex(int i) override;
Sequence * addEmptyFunction() override;
void removeFunction(Shared::Function * f) override;
int maxNumberOfFunctions() override;
const char * firstAvailableName() override;
char symbol() const override;
static constexpr int k_maxNumberOfSequences = 3;
private:
const KDColor firstAvailableColor() override;
static constexpr KDColor k_defaultColors[k_maxNumberOfSequences] = {
Palette::Red, Palette::Blue, Palette::YellowDark
};
static constexpr const char * k_sequenceNames[k_maxNumberOfSequences] = {
"u", "v", "w"
};
Sequence m_sequences[k_maxNumberOfSequences];
};
}
#endif