mirror of
https://github.com/Airr/nim-cocoa.git
synced 2025-07-15 15:32:07 +00:00
15 lines
428 B
Objective-C
15 lines
428 B
Objective-C
#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];
|
|
}
|