tests: add tests for multi-iterators
[nit.git] / lib / android / android.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Android services and implementation of app.nit
18 #
19 # This module provides basic logging facilities, advanced logging can be
20 # achieved by importing `android::log`.
21 module android
22
23 import platform
24 import native_app_glue
25 import dalvik
26 private import log
27
28 redef class App
29 redef fun init_window
30 do
31 super
32 on_create
33 on_restore_state
34 on_start
35 end
36
37 redef fun term_window
38 do
39 super
40 on_stop
41 end
42
43 # Is the application currently paused?
44 var paused = true
45
46 redef fun pause
47 do
48 paused = true
49 on_pause
50 super
51 end
52
53 redef fun resume
54 do
55 paused = false
56 on_resume
57 super
58 end
59
60 redef fun save_state do on_save_state
61
62 redef fun lost_focus
63 do
64 paused = true
65 super
66 end
67
68 redef fun gained_focus
69 do
70 paused = false
71 super
72 end
73
74 redef fun destroy do on_destroy
75 end