forked from boricj/numworks-rpn
-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.cpp
61 lines (47 loc) · 1.35 KB
/
app.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "app.h"
#include "apps/apps_container.h"
#include "rpn_icon.h"
#include "apps/i18n.h"
#include <assert.h>
extern const ToolboxMessageTree *toolboxModel;
namespace Rpn {
I18n::Message App::Descriptor::name() {
return I18n::Message::RpnApp;
}
I18n::Message App::Descriptor::upperName() {
return I18n::Message::RpnAppCapital;
}
const Image * App::Descriptor::icon() {
return ImageStore::RpnIcon;
}
App::Descriptor::ExaminationLevel App::Descriptor::examinationLevel() {
return App::Descriptor::ExaminationLevel::Strict;
}
App::Snapshot::Snapshot()
{
}
App * App::Snapshot::unpack(Container * container) {
return new (container->currentAppBuffer()) App(this);
}
App::Descriptor * App::Snapshot::descriptor() {
static Descriptor descriptor;
return &descriptor;
}
Stack * App::Snapshot::stack() {
return &m_stack;
}
void App::Snapshot::reset() {
m_stack(Stack::CLEAR);
}
App::App(Snapshot * snapshot) :
Shared::TextFieldDelegateApp(snapshot, &m_inputController),
m_stackController(this, snapshot->stack(), &m_inputController, &m_view, localContext()),
m_inputController(this, snapshot->stack(), &m_stackController, &m_view),
m_view(this, &m_inputController, &m_stackController),
m_toolbox(&m_inputController, &m_stackController)
{
}
::Toolbox * App::toolboxForInputEventHandler(InputEventHandler * textInput) {
return &m_toolbox;
}
}