You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nim-cocoa/cocoa/widgets/textfield.m

11 lines
396 B

#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;
}