lib: clear all references to mnit from memory
[nit.git] / contrib / inkscape_tools / tests / app / src / s2pn.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 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 import drawing
18
19 redef class App
20
21 var img_set: DrawingImages is noinit
22
23 init do super
24
25 redef fun on_create
26 do
27 super
28
29 img_set = new DrawingImages
30 img_set.load_all(self)
31 end
32
33 redef fun frame_core( display )
34 do
35 display.clear(0.2, 0.2, 0.2)
36
37 display.blit(img_set.square, 0, 0)
38 display.blit(img_set.circle, 100, 100)
39 display.blit(img_set.circles[0], 0, 100)
40 display.blit(img_set.circles[1], 0, 200)
41 display.blit(img_set.circles[2], 0, 300)
42 end
43
44 redef fun input( ie )
45 do
46 if ie isa QuitEvent then
47 quit = true
48 return true
49 end
50
51 return false
52 end
53 end