calculator: shorter name and bump up the version number
[nit.git] / examples / calculator / src / calculator.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Portable calculator UI
16 module calculator is
17 app_name "app.nit Calc"
18 app_version(0, 2, git_revision)
19 app_namespace "org.nitlanguage.calculator"
20
21 # Lock in portrait mode
22 android_manifest_activity """android:screenOrientation="portrait""""
23 android_api_target 15
24 end
25
26 import app::ui
27 import app::data_store
28 import android::aware
29
30 import calculator_logic
31
32 # Show debug output?
33 fun debug: Bool do return false
34
35 redef class App
36 redef fun on_create
37 do
38 if debug then print "App::on_create"
39
40 # Create the main window
41 push_window new CalculatorWindow
42 super
43 end
44 end
45
46 # The main (and only) window of this calculator
47 class CalculatorWindow
48 super Window
49
50 # Calculator context, our business logic
51 private var context = new CalculatorContext
52
53 # Main window layout
54 var layout = new VerticalLayout(parent=self)
55
56 # Main display, at the top of the screen
57 private var display = new TextInput(parent=layout)
58
59 # Maps operators as `String` to their `Button`
60 var buttons = new HashMap[String, Button]
61
62 init
63 do
64 if debug then print "CalculatorWindow::init"
65
66 # All the button labels, row by row
67 var rows = [["7", "8", "9", "+"],
68 ["4", "5", "6", "-"],
69 ["1", "2", "3", "×"],
70 ["0", ".", "C", "÷"],
71 ["="]]
72
73 for row in rows do
74 var row_layout = new HorizontalLayout(parent=layout)
75
76 for op in row do
77 var but = new Button(parent=row_layout, text=op)
78 buttons[op] = but
79 end
80 end
81 end
82
83 redef fun on_event(event)
84 do
85 if debug then print "CalculatorWindow::on_event {event}"
86
87 if event isa ButtonPressEvent then
88
89 var op = event.sender.text
90 if op == "." then
91 event.sender.enabled = false
92 context.switch_to_decimals
93 else if op.is_numeric then
94 var n = op.to_i
95 context.push_digit n
96 else if op != null then
97 buttons["."].enabled = true
98 context.push_op op
99 end
100
101 display.text = context.display_text
102 end
103 end
104
105 redef fun on_save_state
106 do
107 if debug then print "CalculatorWindow::on_save_state"
108
109 app.data_store["context"] = context
110 super
111 end
112
113 redef fun on_restore_state
114 do
115 if debug then print "CalculatorWindow::on_restore_state"
116
117 super
118
119 var context = app.data_store["context"]
120 if not context isa CalculatorContext then return
121
122 self.context = context
123 display.text = context.display_text
124 end
125 end