lib/android: implement `TextAsset`
[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 assets
28
29 redef class App
30 redef fun init_window
31 do
32 super
33 on_create
34 on_restore_state
35 on_start
36 end
37
38 redef fun term_window
39 do
40 super
41 on_stop
42 end
43
44 # Is the application currently paused?
45 var paused = true
46
47 redef fun pause
48 do
49 paused = true
50 on_pause
51 super
52 end
53
54 redef fun resume
55 do
56 paused = false
57 on_resume
58 super
59 end
60
61 redef fun save_state do on_save_state
62
63 redef fun lost_focus
64 do
65 paused = true
66 super
67 end
68
69 redef fun gained_focus
70 do
71 paused = false
72 super
73 end
74
75 redef fun destroy do on_destroy
76 end