2006-02-09 20:36:11 -05:00
|
|
|
! Copyright (C) 2006 Slava Pestov
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: cocoa compiler io kernel objc sequences words ;
|
|
|
|
|
|
|
|
"Compiling Objective C bridge..." print
|
|
|
|
|
|
|
|
{ "cocoa" "objc" } compile-vocabs
|
|
|
|
|
|
|
|
"Importing Cocoa classes..." print
|
|
|
|
{
|
|
|
|
"NSApplication"
|
|
|
|
"NSAutoreleasePool"
|
2006-08-28 04:03:09 -04:00
|
|
|
"NSBundle"
|
2006-02-09 22:11:22 -05:00
|
|
|
"NSError"
|
2006-02-09 20:36:11 -05:00
|
|
|
"NSEvent"
|
2006-02-19 22:08:08 -05:00
|
|
|
"NSException"
|
2006-03-14 21:09:25 -05:00
|
|
|
"NSMenu"
|
|
|
|
"NSMenuItem"
|
2006-05-27 17:39:38 -04:00
|
|
|
"NSNotification"
|
2006-03-15 00:57:02 -05:00
|
|
|
"NSNotificationCenter"
|
2006-02-09 20:36:11 -05:00
|
|
|
"NSObject"
|
2006-03-11 04:00:22 -05:00
|
|
|
"NSOpenGLContext"
|
2006-02-09 20:36:11 -05:00
|
|
|
"NSOpenGLView"
|
2006-05-18 23:07:40 -04:00
|
|
|
"NSOpenPanel"
|
2006-05-24 18:40:54 -04:00
|
|
|
"NSPasteboard"
|
2006-05-18 23:07:40 -04:00
|
|
|
"NSSavePanel"
|
2006-03-10 22:57:57 -05:00
|
|
|
"NSView"
|
2006-02-09 20:36:11 -05:00
|
|
|
"NSWindow"
|
2006-03-15 15:06:36 -05:00
|
|
|
} [
|
|
|
|
f import-objc-class
|
|
|
|
] each
|