mirror of
https://github.com/Airr/nim-cocoa.git
synced 2025-05-10 02:32:08 +00:00
15 lines
468 B
Objective-C
15 lines
468 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "col.h"
|
|
|
|
id createLabel(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 setEditable: NO];
|
|
[widget setAlignment: NSTextAlignmentLeft];
|
|
[widget setDrawsBackground: NO];
|
|
[widget setBordered: NO];
|
|
addToParent(parent, widget);
|
|
return widget;
|
|
}
|