mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
42b4208d1e
This was not at all pleasant to merge, and problems should be expected. ;) git-svn-id: https://svn.eduke32.com/eduke32@194 1a8010ca-5511-0410-912e-c29ae57300e0
52 lines
1.1 KiB
Objective-C
52 lines
1.1 KiB
Objective-C
#include "osxbits.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#ifndef MAC_OS_VERSION_10_3
|
|
# define MAC_OS_VERSION_10_3 1030
|
|
#endif
|
|
|
|
int osx_msgbox(char *name, char *msg)
|
|
{
|
|
NSString *mmsg = [[NSString alloc] initWithCString: msg];
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
|
|
NSAlert *alert = [[NSAlert alloc] init];
|
|
[alert addButtonWithTitle: @"OK"];
|
|
[alert setInformativeText: mmsg];
|
|
[alert setAlertStyle: NSInformationalAlertStyle];
|
|
|
|
[alert runModal];
|
|
|
|
[alert release];
|
|
|
|
#else
|
|
NSRunAlertPanel(nil, mmsg, @"OK", nil, nil);
|
|
#endif
|
|
|
|
[mmsg release];
|
|
return 0;
|
|
}
|
|
|
|
int osx_ynbox(char *name, char *msg)
|
|
{
|
|
NSString *mmsg = [[NSString alloc] initWithCString: msg];
|
|
int r;
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
|
|
NSAlert *alert = [[NSAlert alloc] init];
|
|
|
|
[alert addButtonWithTitle:@"Yes"];
|
|
[alert addButtonWithTitle:@"No"];
|
|
[alert setInformativeText: mmsg];
|
|
[alert setAlertStyle: NSInformationalAlertStyle];
|
|
|
|
r = ([alert runModal] == NSAlertFirstButtonReturn);
|
|
|
|
[alert release];
|
|
#else
|
|
r = (NSRunAlertPanel(nil, mmsg, @"Yes", @"No", nil) == NSAlertDefaultReturn);
|
|
#endif
|
|
|
|
[mmsg release];
|
|
return r;
|
|
}
|