Files
Upsilon/apps/calculation/app.h
Émilie Feral a8fe8dc22e [apps] Calculation: input text stores in cache have to be checked again
when used as its length context dependent (because of 'ans' symbol)
2018-02-01 11:49:39 +01:00

42 lines
1.1 KiB
C++

#ifndef CALCULATION_APP_H
#define CALCULATION_APP_H
#include "calculation_store.h"
#include "edit_expression_controller.h"
#include "history_controller.h"
#include "../shared/text_field_delegate_app.h"
#include <escher.h>
namespace Calculation {
class App : public Shared::TextFieldDelegateApp {
public:
class Descriptor : public ::App::Descriptor {
public:
I18n::Message name() override;
I18n::Message upperName() override;
const Image * icon() override;
};
class Snapshot : public ::App::Snapshot {
public:
App * unpack(Container * container) override;
void reset() override;
Descriptor * descriptor() override;
CalculationStore * calculationStore();
private:
void tidy() override;
CalculationStore m_calculationStore;
};
bool textFieldDidReceiveEvent(::TextField * textField, Ion::Events::Event event) override;
bool textInputIsCorrect(const char * text);
const char * XNT() override;
private:
App(Container * container, Snapshot * snapshot);
HistoryController m_historyController;
EditExpressionController m_editExpressionController;
};
}
#endif