diff options
author | truelight <truelight@openttd.org> | 2006-01-06 21:27:44 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-01-06 21:27:44 +0000 |
commit | 10a2787fd595788567bb1c3860dd31f37f628361 (patch) | |
tree | 9ccb022eed5e1cc12417ed0bb1ef6aa65bab2576 /os | |
parent | b542f784f9411e1c5490d2f980ad9158b1db2f45 (diff) | |
download | openttd-10a2787fd595788567bb1c3860dd31f37f628361.tar.xz |
(svn r3375) -Add: [ FS#29 ] show an error dialog for OSX cocoa driver (egladil)
Diffstat (limited to 'os')
-rw-r--r-- | os/macosx/macos.m | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/os/macosx/macos.m b/os/macosx/macos.m index ee791166a..d61900bb1 100644 --- a/os/macosx/macos.m +++ b/os/macosx/macos.m @@ -8,11 +8,33 @@ * To insure that the crosscompiler still works, let him try any changes before they are committed */ + +#ifdef WITH_SDL + void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel ) { NSRunAlertPanel([NSString stringWithCString: title], [NSString stringWithCString: message], [NSString stringWithCString: buttonLabel], nil, nil); } +#elif defined WITH_COCOA + +void CocoaDialog ( const char *title, const char *message, const char *buttonLabel ); + +void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel ) +{ + CocoaDialog(title, message, buttonLabel); +} + + +#else + +void ShowMacDialog ( const char *title, const char *message, const char *buttonLabel ) +{ + fprintf(stderr, "%s: %s\n", title, message); +} + +#endif + void ShowMacAssertDialog ( const char *function, const char *file, const int line, const char *expression ) { const char *buffer = |