mirror of
https://github.com/Airr/nim-cocoa.git
synced 2024-11-24 09:45:30 +00:00
12 lines
396 B
Objective-C
12 lines
396 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "col.h"
|
|
|
|
id createTextField(id parent, const char* txt, int l, int t, int w, int h){
|
|
NSTextField *widget = [[[NSTextField alloc] initWithFrame:NSMakeRect( l, t, w, h )] autorelease];
|
|
[widget setStringValue:[NSString stringWithUTF8String:txt]];
|
|
// [widget setAutoresizingMask: NSViewWidthSizable];
|
|
addToParent(parent, widget);
|
|
return widget;
|
|
}
|