misc/vim: inform the user when no results are found
[nit.git] / lib / mnit_input.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2011-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 # Defines abstract classes for user and general inputs to the application.
18 # Implemented independantly for each platforms and technologies.
19 module mnit_input
20
21 # Input to the App, propagated through `App::input`.
22 interface InputEvent
23 end
24
25 # Mouse and touch input events
26 interface PointerEvent
27 super InputEvent
28
29 # X position on screen (in pixels)
30 fun x: Float is abstract
31
32 # Y position on screen (in pixels)
33 fun y: Float is abstract
34
35 # Is down? either going down or already down
36 fun pressed: Bool is abstract
37 fun depressed: Bool is abstract
38 end
39
40 # A motion event on screen composed of many `PointerEvent`
41 #
42 # Example of a `MotionEvent` a gesture such as pinching using two fingers.
43 interface MotionEvent
44 super InputEvent
45
46 # A pointer just went down?
47 fun just_went_down: Bool is abstract
48
49 # Which pointer is down, if any
50 fun down_pointer: nullable PointerEvent is abstract
51 end
52
53 # Specific touch event
54 interface TouchEvent
55 super PointerEvent
56
57 # Pressure level of input
58 fun pressure: Float is abstract
59 end
60
61 # Keyboard or other keys event
62 interface KeyEvent
63 super InputEvent
64
65 # Key is currently down?
66 fun is_down: Bool is abstract
67
68 # Key is currently up?
69 fun is_up: Bool is abstract
70
71 # Key is the up arrow key?
72 fun is_arrow_up: Bool is abstract
73
74 # Key is the left arrow key?
75 fun is_arrow_left: Bool is abstract
76
77 # Key is the down arrow key?
78 fun is_arrow_down: Bool is abstract
79
80 # Key is the right arrow key?
81 fun is_arrow_right: Bool is abstract
82
83 # Key code, is plateform specific
84 fun code: Int is abstract
85
86 # Get Char value of key, if any
87 fun to_c: nullable Char is abstract
88
89 # Name of the key that raised `self`
90 #
91 # Use mainly for debug since it is implementation dependent.
92 fun name: String is abstract
93 end
94
95 # Mobile hardware (or pseudo hardware) event
96 interface MobileKeyEvent
97 super KeyEvent
98
99 # Key is back button? (mostly for Android)
100 fun is_back_key: Bool is abstract
101
102 # Key is menu button? (mostly for Android)
103 fun is_menu_key: Bool is abstract
104
105 # Key is search button? (mostly for Android)
106 fun is_search_key: Bool is abstract
107
108 # Key is home button? (mostly for Android)
109 fun is_home_key: Bool is abstract
110 end
111
112 # Sensor events like accelerometer, gyroscope etc for mobile apps
113 interface SensorEvent
114 super InputEvent
115 end
116
117 # Quit event, used for window close button
118 interface QuitEvent
119 super InputEvent
120 end