]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/msgdlg.h
Implement support for wxRIBBON_PANEL_EXT_BUTTON wxRibbonPanel style.
[wxWidgets.git] / include / wx / cocoa / msgdlg.h
CommitLineData
e9871aaf 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/cocoa/msgdlg.h
e9871aaf
DE
3// Purpose: wxMessageDialog class
4// Author: Gareth Simpson
5// Created: 2007-10-29
e5633f9a 6// RCS-ID: $Id$
e9871aaf
DE
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_COCOA_MSGDLG_H_
11#define _WX_COCOA_MSGDLG_H_
12
13#include "wx/msgdlg.h"
14
15DECLARE_WXCOCOA_OBJC_CLASS(NSAlert);
16
c4f2b985
DE
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
23 #else
24 #define wxUSE_COCOA_NATIVE_MSGDLG 0
25 #endif
26#endif
27
9a6ffa74 28#if wxUSE_COCOA_NATIVE_MSGDLG
c4f2b985
DE
29 #define wxMessageDialog wxCocoaMessageDialog
30#else
23e00c55
VZ
31 #include "wx/generic/msgdlgg.h"
32
c4f2b985
DE
33 #define wxMessageDialog wxGenericMessageDialog
34#endif
e9871aaf 35
23e00c55
VZ
36// ----------------------------------------------------------------------------
37// wxCocoaMessageDialog
38// ----------------------------------------------------------------------------
e9871aaf
DE
39
40
23e00c55
VZ
41class WXDLLIMPEXP_CORE wxCocoaMessageDialog
42 : public wxMessageDialogWithCustomLabels
e9871aaf 43{
e9871aaf 44public:
c4f2b985 45 wxCocoaMessageDialog(wxWindow *parent,
e9871aaf
DE
46 const wxString& message,
47 const wxString& caption = wxMessageBoxCaptionStr,
48 long style = wxOK|wxCENTRE,
49 const wxPoint& pos = wxDefaultPosition);
e9871aaf 50
e5633f9a
DE
51 virtual int ShowModal();
52
e9871aaf
DE
53protected:
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) {}
e5633f9a 58
23e00c55
VZ
59 // override wxMessageDialogWithCustomLabels method to get rid of
60 // accelerators in the custom label strings
61 //
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
e08931c0 64 virtual void DoSetCustomLabel(wxString& var, const ButtonLabel& label);
e9871aaf 65
23e00c55 66 DECLARE_DYNAMIC_CLASS(wxCocoaMessageDialog)
c0c133e1 67 wxDECLARE_NO_COPY_CLASS(wxCocoaMessageDialog);
e9871aaf
DE
68};
69
70#endif // _WX_MSGDLG_H_
dcb68102 71