lib: update users of the new `print_error`
[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 private import android_data_store
28
29 redef class App
30 redef fun init_window
31 do
32 super
33 window_created
34 end
35
36 redef fun term_window
37 do
38 super
39 window_closing
40 end
41
42 # Is the application currently paused?
43 var paused = true
44
45 redef fun window_created
46 do
47 super
48 paused = false
49 end
50
51 redef fun window_closing
52 do
53 paused = true
54 super
55 end
56
57 redef fun pause
58 do
59 paused = true
60 super
61 end
62
63 redef fun resume
64 do
65 paused = false
66 super
67 end
68
69 redef fun lost_focus
70 do
71 paused = true
72 super
73 end
74
75 redef fun gained_focus
76 do
77 paused = false
78 super
79 end
80
81 redef fun destroy do exit 0
82 end