]> git.saurik.com Git - wxWidgets.git/commitdiff
Make new wxCocoaMessageDialog suitable for backport to 2.8.
authorDavid Elliott <dfe@tgwbd.org>
Fri, 9 Nov 2007 18:26:21 +0000 (18:26 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Fri, 9 Nov 2007 18:26:21 +0000 (18:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49764 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/msgdlg.h

index aa03ad79931b4c3d0a3e2e1c54b7bc45941584d6..af0d26b8f19ea2ca088a2ba78ddf520a18c15824 100644 (file)
 
 DECLARE_WXCOCOA_OBJC_CLASS(NSAlert);
 
+#ifndef wxUSE_COCOA_NATIVE_MSGDLG
+// trunk: Always use Cocoa dialog
+// 2.8: Only use Cocoa dialog if ABI incompatible features is on
+// Build both on both branches (there was no wxCocoaMessageDialog class so it's not an ABI issue)
+    #if 1/* wxUSE_ABI_INCOMPATIBLE_FEATURES */
+        #define wxUSE_COCOA_NATIVE_MSGDLG 1
+    #else
+        #define wxUSE_COCOA_NATIVE_MSGDLG 0
+    #endif
+#endif
+
+#if defined(__WX_COMPILING_COCOA_MSGDLG_MM__) || wxUSE_COCOA_NATIVE_MSGDLG
+    #define wxMessageDialog wxCocoaMessageDialog
+#else
+    #include "wx/generic/msgdlgg.h"
+    #define wxMessageDialog wxGenericMessageDialog
+#endif
 
-
-#define wxMessageDialog wxCocoaMessageDialog
 //-------------------------------------------------------------------------
 // wxMsgDialog
 //-------------------------------------------------------------------------
 
 
 
-class WXDLLEXPORT wxMessageDialog: public wxMessageDialogBase
+class WXDLLEXPORT wxCocoaMessageDialog: public wxMessageDialogBase
 {
-    DECLARE_DYNAMIC_CLASS(wxMessageDialog)
-    DECLARE_NO_COPY_CLASS(wxMessageDialog)
+    DECLARE_DYNAMIC_CLASS(wxCocoaMessageDialog)
+    DECLARE_NO_COPY_CLASS(wxCocoaMessageDialog)
 
 
 public:
-    wxMessageDialog(wxWindow *parent,
+    wxCocoaMessageDialog(wxWindow *parent,
                     const wxString& message,
                     const wxString& caption = wxMessageBoxCaptionStr,
                     long style = wxOK|wxCENTRE,