mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
82 lines
3.0 KiB
C++
82 lines
3.0 KiB
C++
#ifndef SEQUENCE_APP_H
|
|
#define SEQUENCE_APP_H
|
|
|
|
#include <escher.h>
|
|
#include "../shared/sequence_context.h"
|
|
#include "../shared/sequence_store.h"
|
|
#include "graph/graph_controller.h"
|
|
#include "graph/curve_view_range.h"
|
|
#include "list/list_controller.h"
|
|
#include "values/values_controller.h"
|
|
#include "../shared/function_app.h"
|
|
#include "../shared/interval.h"
|
|
#include "../shared/global_context.h"
|
|
#include "../apps_container.h"
|
|
|
|
namespace Sequence {
|
|
|
|
class App : public Shared::FunctionApp {
|
|
public:
|
|
class Descriptor : public ::App::Descriptor {
|
|
public:
|
|
I18n::Message name() override;
|
|
I18n::Message upperName() override;
|
|
const Image * icon() override;
|
|
};
|
|
class Snapshot : public Shared::FunctionApp::Snapshot {
|
|
public:
|
|
Snapshot();
|
|
App * unpack(Container * container) override;
|
|
void reset() override;
|
|
Descriptor * descriptor() override;
|
|
Shared::SequenceStore * functionStore() override { return static_cast<Shared::GlobalContext *>(AppsContainer::sharedAppsContainer()->globalContext())->sequenceStore(); }
|
|
CurveViewRange * graphRange() { return &m_graphRange; }
|
|
Shared::Interval * interval() { return &m_interval; }
|
|
private:
|
|
void tidy() override;
|
|
CurveViewRange m_graphRange;
|
|
Shared::Interval m_interval;
|
|
};
|
|
static App * app() {
|
|
return static_cast<App *>(Container::activeApp());
|
|
}
|
|
Snapshot * snapshot() const {
|
|
return static_cast<Snapshot *>(::App::snapshot());
|
|
}
|
|
TELEMETRY_ID("Sequence");
|
|
// TODO: override variableBoxForInputEventHandler to lock sequence in the variable box once they appear there
|
|
// NestedMenuController * variableBoxForInputEventHandler(InputEventHandler * textInput) override;
|
|
CodePoint XNT() override { return 'n'; }
|
|
NestedMenuController * variableBoxForInputEventHandler(InputEventHandler * textInput) override;
|
|
Shared::SequenceContext * localContext() override;
|
|
Shared::SequenceStore * functionStore() override { return static_cast<Shared::GlobalContext *>(AppsContainer::sharedAppsContainer()->globalContext())->sequenceStore(); }
|
|
Shared::Interval * interval() { return snapshot()->interval(); }
|
|
ValuesController * valuesController() override {
|
|
return &m_valuesController;
|
|
}
|
|
InputViewController * inputViewController() override {
|
|
return &m_inputViewController;
|
|
}
|
|
private:
|
|
App(Snapshot * snapshot);
|
|
Shared::SequenceContext m_sequenceContext;
|
|
ListController m_listController;
|
|
ButtonRowController m_listFooter;
|
|
ButtonRowController m_listHeader;
|
|
StackViewController m_listStackViewController;
|
|
GraphController m_graphController;
|
|
AlternateEmptyViewController m_graphAlternateEmptyViewController;
|
|
ButtonRowController m_graphHeader;
|
|
StackViewController m_graphStackViewController;
|
|
ValuesController m_valuesController;
|
|
AlternateEmptyViewController m_valuesAlternateEmptyViewController;
|
|
ButtonRowController m_valuesHeader;
|
|
StackViewController m_valuesStackViewController;
|
|
TabViewController m_tabViewController;
|
|
InputViewController m_inputViewController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|