]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/msgdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericMessageDialog
4 // Author: Julian Smart, Robert Roebling
8 // Copyright: (c) Julian Smart, Markus Holzem, Robert Roebling
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "msgdlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/dialog.h"
28 #include "wx/button.h"
29 #include "wx/stattext.h"
30 #include "wx/statbmp.h"
31 #include "wx/layout.h"
41 #include "wx/generic/msgdlgg.h"
42 #include "wx/artprov.h"
45 #include "wx/statline.h"
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 BEGIN_EVENT_TABLE(wxGenericMessageDialog
, wxDialog
)
53 EVT_BUTTON(wxID_YES
, wxGenericMessageDialog::OnYes
)
54 EVT_BUTTON(wxID_NO
, wxGenericMessageDialog::OnNo
)
55 EVT_BUTTON(wxID_CANCEL
, wxGenericMessageDialog::OnCancel
)
58 IMPLEMENT_CLASS(wxGenericMessageDialog
, wxDialog
)
60 wxGenericMessageDialog::wxGenericMessageDialog( wxWindow
*parent
,
61 const wxString
& message
,
62 const wxString
& caption
,
65 : wxDialog( parent
, -1, caption
, pos
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
)
67 m_dialogStyle
= style
;
69 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
71 wxBoxSizer
*icon_text
= new wxBoxSizer( wxHORIZONTAL
);
74 if (style
& wxICON_MASK
)
77 switch ( style
& wxICON_MASK
)
80 wxFAIL_MSG(_T("incorrect log style"));
84 bitmap
= wxArtProvider::GetIcon(wxART_ERROR
, wxART_MESSAGE_BOX
);
87 case wxICON_INFORMATION
:
88 bitmap
= wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_MESSAGE_BOX
);
92 bitmap
= wxArtProvider::GetIcon(wxART_WARNING
, wxART_MESSAGE_BOX
);
96 bitmap
= wxArtProvider::GetIcon(wxART_QUESTION
, wxART_MESSAGE_BOX
);
99 wxStaticBitmap
*icon
= new wxStaticBitmap(this, -1, bitmap
);
100 icon_text
->Add( icon
, 0, wxCENTER
);
104 icon_text
->Add( CreateTextSizer( message
), 0, wxCENTER
| wxLEFT
, 10 );
106 topsizer
->Add( icon_text
, 0, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
110 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
114 topsizer
->Add( CreateButtonSizer( style
), 0, wxCENTRE
| wxALL
, 10 );
116 SetAutoLayout( TRUE
);
117 SetSizer( topsizer
);
119 topsizer
->SetSizeHints( this );
120 topsizer
->Fit( this );
121 wxSize
size( GetSize() );
122 if (size
.x
< size
.y
*3/2)
128 Centre( wxBOTH
| wxCENTER_FRAME
);
131 void wxGenericMessageDialog::OnYes(wxCommandEvent
& WXUNUSED(event
))
133 EndModal( wxID_YES
);
136 void wxGenericMessageDialog::OnNo(wxCommandEvent
& WXUNUSED(event
))
141 void wxGenericMessageDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
143 /* Allow cancellation via ESC/Close button except if
144 only YES and NO are specified. */
145 if ( (m_dialogStyle
& wxYES_NO
) != wxYES_NO
|| (m_dialogStyle
& wxCANCEL
) )
147 EndModal( wxID_CANCEL
);
151 #endif // wxUSE_MSGDLG