nswrap/examples/app/nswrap.yaml

48 lines
1007 B
YAML
Raw Normal View History

# nswrap.yaml
inputfiles:
- /System/Library/Frameworks/Foundation.framework/Headers/Foundation.h
- /System/Library/Frameworks/AppKit.framework/Headers/AppKit.h
classes:
2019-05-09 13:33:28 -04:00
- NSAutoreleasePool
- NSString
- NSApplication
- NSWindow
- NSView
- NSMenu
- NSMenuItem
- NSButton
2019-05-24 15:40:01 -04:00
- NSControl
- NSNotification
- NSLayoutConstraint
- NSDictionary
- NSArray
- NSObject
2019-05-24 15:40:01 -04:00
functions: [ NSMakeRect ]
enums:
- NSApplication.*
- NSBackingStore.*
- NSWindowStyleMask.*
- NSWindowButton
- NSWindowOrderingMode
- NSLayout.*
delegates:
AppDelegate:
NSApplicationDelegate:
- applicationWillTerminate
- applicationDidFinishLaunching
- applicationShouldTerminateAfterLastWindowClosed
- applicationDidBecomeActive
2019-05-24 15:40:01 -04:00
subclasses:
GButton:
NSButton:
- -(void)pressed
- dealloc
2019-05-24 15:40:01 -04:00
frameworks: [ Foundation, AppKit ]
pragma: [ clang diagnostic ignored "-Wformat-security" ]