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/src/cocoa/widgets/messagebox.m

14 lines
428 B

#import <Cocoa/Cocoa.h>
#import "col.h"
int createMessageBox(const char *title, const char *message, int type) {
NSAlert *alert = [[NSAlert new] autorelease];
[alert addButtonWithTitle:@"Ok"];
[alert setMessageText:[NSString stringWithUTF8String:title] ];
[alert setInformativeText:[NSString stringWithUTF8String:message] ];
[alert setAlertStyle:NSAlertStyleWarning];
return [alert runModal];
}