lib & contrib & tests: update users of `cflags` and `ldflags`
[nit.git] / lib / cocoa / foundation.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 # The Foundation Kit provides basic Objective-C classes and structures
18 module foundation is ldflags "-framework Foundation"
19
20 in "ObjC Header" `{
21 #import <Foundation/Foundation.h>
22 `}
23
24 # Base of the Foundation framework class hierarchy
25 extern class NSObject in "ObjC" `{ NSObject * `}
26 end
27
28 # String of the Foundation Kit
29 #
30 # Created using `Text::to_nsstring`.
31 extern class NSString in "ObjC" `{ NSString * `}
32 super NSObject
33 end
34
35 redef class NativeString
36 # Get a `NSString` from `self` with the specified `length`
37 fun to_nsstring(length: Int): NSString in "ObjC" `{
38 return [[NSString alloc] initWithBytes:recv
39 length:length
40 encoding:NSASCIIStringEncoding];
41 `}
42 end
43
44 redef class Text
45 # Get a `NSString` from `self`
46 fun to_nsstring: NSString do return to_cstring.to_nsstring(length)
47 end