4a73e44f1a0547b1e804be7f58c125f0eb715b0b
[nit.git] / lib / android / intent / intent_api15.nit
1 # This file is part of NIT (http://www.nitlanguage.org).
2 #
3 # Copyright 2014 Frédéric Vachon <fredvac@gmail.com>
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 # Refines intent module to add API 15 services
18 module intent_api15
19
20 import intent_api14
21
22 in "Java" `{
23 import android.content.Intent;
24 `}
25
26 redef extern class NativeIntent
27 fun selector=(selector: NativeIntent) in "Java" `{ recv.setSelector(selector); `}
28 end
29
30 redef class Category
31 fun app_browser: JavaString in "Java" `{ return Intent.CATEGORY_APP_BROWSER; `}
32 fun app_calculator: JavaString in "Java" `{ return Intent.CATEGORY_APP_CALCULATOR; `}
33 fun app_calendar: JavaString in "Java" `{ return Intent.CATEGORY_APP_CALENDAR; `}
34 fun app_contacts: JavaString in "Java" `{ return Intent.CATEGORY_APP_CONTACTS; `}
35 fun app_email: JavaString in "Java" `{ return Intent.CATEGORY_APP_EMAIL; `}
36 fun app_gallery: JavaString in "Java" `{ return Intent.CATEGORY_APP_GALLERY; `}
37 fun app_maps: JavaString in "Java" `{ return Intent.CATEGORY_APP_MAPS; `}
38 fun app_messaging: JavaString in "Java" `{ return Intent.CATEGORY_APP_MESSAGING; `}
39 fun app_music: JavaString in "Java" `{ return Intent.CATEGORY_APP_MUSIC; `}
40 fun browsable: JavaString in "Java" `{ return Intent.CATEGORY_BROWSABLE; `}
41 end
42
43 redef class Intent
44 fun selector=(selector: NativeIntent) do intent.selector = selector
45 end