1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/dirdlg.h
3 // Purpose: wxMessageDialog class
4 // Author: Gareth Simpson
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_COCOA_MSGDLG_H_
11 #define _WX_COCOA_MSGDLG_H_
13 #include "wx/msgdlg.h"
15 DECLARE_WXCOCOA_OBJC_CLASS(NSAlert
);
17 #ifndef wxUSE_COCOA_NATIVE_MSGDLG
18 // trunk: Always use Cocoa dialog
19 // 2.8: Only use Cocoa dialog if ABI incompatible features is on
20 // Build both on both branches (there was no wxCocoaMessageDialog class so it's not an ABI issue)
21 #if 1/* wxUSE_ABI_INCOMPATIBLE_FEATURES */
22 #define wxUSE_COCOA_NATIVE_MSGDLG 1
24 #define wxUSE_COCOA_NATIVE_MSGDLG 0
28 #if wxUSE_COCOA_NATIVE_MSGDLG
29 #define wxMessageDialog wxCocoaMessageDialog
31 #include "wx/generic/msgdlgg.h"
33 #define wxMessageDialog wxGenericMessageDialog
36 // ----------------------------------------------------------------------------
37 // wxCocoaMessageDialog
38 // ----------------------------------------------------------------------------
41 class WXDLLIMPEXP_CORE wxCocoaMessageDialog
42 : public wxMessageDialogWithCustomLabels
45 wxCocoaMessageDialog(wxWindow
*parent
,
46 const wxString
& message
,
47 const wxString
& caption
= wxMessageBoxCaptionStr
,
48 long style
= wxOK
|wxCENTRE
,
49 const wxPoint
& pos
= wxDefaultPosition
);
51 virtual int ShowModal();
54 // not supported for message dialog
55 virtual void DoSetSize(int WXUNUSED(x
), int WXUNUSED(y
),
56 int WXUNUSED(width
), int WXUNUSED(height
),
57 int WXUNUSED(sizeFlags
) = wxSIZE_AUTO
) {}
59 // override wxMessageDialogWithCustomLabels method to get rid of
60 // accelerators in the custom label strings
62 // VZ: I have no idea _why_ do we do this but the old version did and
63 // I didn't want to change the existing behaviour
64 virtual void DoSetCustomLabel(wxString
& var
, const ButtonLabel
& label
);
66 DECLARE_DYNAMIC_CLASS(wxCocoaMessageDialog
)
67 wxDECLARE_NO_COPY_CLASS(wxCocoaMessageDialog
);
70 #endif // _WX_MSGDLG_H_