From a1f83094538f72dd7c8a9eb9bc3b62e8cfa8402a Mon Sep 17 00:00:00 2001 From: truelight Date: Fri, 6 Jan 2006 21:27:44 +0000 Subject: (svn r3375) -Add: [ FS#29 ] show an error dialog for OSX cocoa driver (egladil) --- os/macosx/macos.m | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'os/macosx/macos.m') 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 = -- cgit v1.2.3-54-g00ecf