tests: introducing some tests for the catch
[nit.git] / lib / app / ui.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 UI API for the _app.nit_ framework
16 module ui
17
18 import app_base
19
20 # Platform variations
21 # TODO: move on the platform once qualified names are understand in the condition
22 import linux::ui is conditional(linux)
23 import android::ui is conditional(android) # FIXME it should be conditional to `android::platform`
24 import ios::ui is conditional(ios)
25
26 redef class App
27 super AppComponent
28
29 # The current `Window` of this activity
30 #
31 # This attribute must be set by refinements of `App`.
32 var window: Window is writable
33
34 redef fun on_create do window.on_create
35
36 redef fun on_start do window.on_start
37
38 redef fun on_resume do window.on_resume
39
40 redef fun on_pause do window.on_pause
41
42 redef fun on_stop do window.on_stop
43
44 redef fun on_destroy do window.on_destroy
45
46 redef fun on_restore_state do window.on_restore_state
47
48 redef fun on_save_state do window.on_save_state
49 end
50
51 # An event created by an `AppComponent` and sent to `AppObserver`s
52 interface AppEvent
53 end
54
55 # Observer of `AppEvent`s raised by `AppComponent`s
56 interface AppObserver
57 # Notification of `event` raised by `sender`
58 #
59 # To be implemented in subclasses as needed.
60 fun on_event(event: AppEvent) do end
61 end
62
63 redef class AppComponent
64 super AppObserver
65
66 # All `AppObserver` notified of events raised by `self`
67 #
68 # By default, only `self` is an observer.
69 # Any other `AppObserver` can be added to this collection.
70 var observers = new HashSet[AppObserver].from([self: AppObserver])
71
72 # Propagate `event` to all `observers` by calling `AppObserver::on_event`
73 fun notify_observers(event: AppEvent)
74 do
75 for observer in observers do
76 observer.on_event(event)
77 end
78 end
79 end
80
81 # A control implementing the UI
82 class Control
83 super AppComponent
84
85 # Direct parent `Control` in the control tree
86 #
87 # If `null` then `self` is at the root of the tree, or not yet attached.
88 var parent: nullable CompositeControl = null is private writable(set_parent)
89
90 # Direct parent `Control` in the control tree
91 #
92 # Setting `parent` calls `remove` on the old parent and `add` on the new one.
93 fun parent=(parent: nullable CompositeControl)
94 is autoinit do
95 var old_parent = self.parent
96 if old_parent != null and old_parent != parent then
97 old_parent.remove self
98 end
99
100 if parent != null then parent.add self
101
102 set_parent parent
103 end
104 end
105
106 # A `Control` grouping other controls
107 class CompositeControl
108 super Control
109
110 protected var items = new Array[Control]
111
112 # Add `item` as a child of `self`
113 protected fun add(item: Control) do items.add item
114
115 # Remove `item` from `self`
116 fun remove(item: Control) do if has(item) then items.remove item
117
118 # Is `item` in `self`?
119 fun has(item: Control): Bool do return items.has(item)
120
121 redef fun on_create do for i in items do i.on_create
122
123 redef fun on_start do for i in items do i.on_start
124
125 redef fun on_resume do for i in items do i.on_resume
126
127 redef fun on_pause do for i in items do i.on_pause
128
129 redef fun on_stop do for i in items do i.on_stop
130
131 redef fun on_destroy do for i in items do i.on_destroy
132
133 redef fun on_restore_state do for i in items do i.on_restore_state
134
135 redef fun on_save_state do for i in items do i.on_save_state
136 end
137
138 # A window, root of the `Control` tree
139 class Window
140 super CompositeControl
141 end
142
143 # A viewable `Control`
144 abstract class View
145 super Control
146
147 # Is this control enabled so the user can interact with it?
148 #
149 # By default, or if set to `null`, the control is enabled.
150 var enabled: nullable Bool is writable, abstract, autoinit
151 end
152
153 # A control with some `text`
154 abstract class TextView
155 super View
156
157 # Main `Text` of this control
158 #
159 # By default, or if set to `null`, no text is shown.
160 var text: nullable Text is writable, abstract, autoinit
161 end
162
163 # A control for the user to enter custom `text`
164 class TextInput
165 super TextView
166
167 # Hide password or any content entered in this view?
168 var is_password: nullable Bool is writable
169 end
170
171 # A pushable button, raises `ButtonPressEvent`
172 class Button
173 super TextView
174 end
175
176 # A text label
177 class Label
178 super TextView
179 end
180
181 # Toggle control with two states and a label
182 class CheckBox
183 super TextView
184
185 # Is this control in the checked/on state?
186 var is_checked = false is writable
187 end
188
189 # A `Button` press event
190 class ButtonPressEvent
191 super AppEvent
192
193 # The `Button` that raised this event
194 var sender: Button
195 end
196
197 # A layout to visually organize `Control`s
198 abstract class Layout
199 super View
200 super CompositeControl
201 end
202
203 # An horizontal linear organization
204 class HorizontalLayout
205 super Layout
206 end
207
208 # A vertical linear organization
209 class VerticalLayout
210 super Layout
211 end
212
213 # Scrollable list of views in a simple list
214 class ListLayout
215 super View
216 super CompositeControl
217 end