]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/msgdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/msgdlgg.cpp
3 // Purpose: wxGenericMessageDialog
4 // Author: Julian Smart, Robert Roebling
8 // Copyright: (c) Julian Smart and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
19 #if wxUSE_MSGDLG && (!defined(__WXGTK20__) || defined(__WXUNIVERSAL__) || defined(__WXGPE__))
23 #include "wx/dialog.h"
24 #include "wx/button.h"
25 #include "wx/stattext.h"
26 #include "wx/statbmp.h"
27 #include "wx/layout.h"
32 #include "wx/settings.h"
38 #define __WX_COMPILING_MSGDLGG_CPP__ 1
39 #include "wx/msgdlg.h"
40 #include "wx/artprov.h"
43 #include "wx/statline.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 BEGIN_EVENT_TABLE(wxGenericMessageDialog
, wxDialog
)
51 EVT_BUTTON(wxID_YES
, wxGenericMessageDialog::OnYes
)
52 EVT_BUTTON(wxID_NO
, wxGenericMessageDialog::OnNo
)
53 EVT_BUTTON(wxID_CANCEL
, wxGenericMessageDialog::OnCancel
)
56 IMPLEMENT_CLASS(wxGenericMessageDialog
, wxDialog
)
58 wxGenericMessageDialog::wxGenericMessageDialog( wxWindow
*parent
,
59 const wxString
& message
,
60 const wxString
& caption
,
63 : wxDialog( parent
, wxID_ANY
, caption
, pos
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
)
65 SetMessageDialogStyle(style
);
67 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
69 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
71 wxBoxSizer
*icon_text
= new wxBoxSizer( wxHORIZONTAL
);
75 if (style
& wxICON_MASK
)
78 switch ( style
& wxICON_MASK
)
81 wxFAIL_MSG(_T("incorrect log style"));
85 bitmap
= wxArtProvider::GetIcon(wxART_ERROR
, wxART_MESSAGE_BOX
);
88 case wxICON_INFORMATION
:
89 bitmap
= wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_MESSAGE_BOX
);
93 bitmap
= wxArtProvider::GetIcon(wxART_WARNING
, wxART_MESSAGE_BOX
);
97 bitmap
= wxArtProvider::GetIcon(wxART_QUESTION
, wxART_MESSAGE_BOX
);
100 wxStaticBitmap
*icon
= new wxStaticBitmap(this, wxID_ANY
, bitmap
);
102 topsizer
->Add( icon
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxALIGN_LEFT
, 10 );
104 icon_text
->Add( icon
, 0, wxCENTER
);
106 #endif // wxUSE_STATBMP
110 icon_text
->Add( CreateTextSizer( message
), 0, wxALIGN_CENTER
| wxLEFT
, 10 );
112 topsizer
->Add( icon_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
113 #endif // wxUSE_STATTEXT
117 topsizer
->Add( new wxStaticLine( this, wxID_ANY
), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
118 #endif // wxUSE_STATLINE
121 int center_flag
= wxEXPAND
;
122 if (style
& wxYES_NO
) center_flag
= wxALIGN_CENTRE
;
123 topsizer
->Add( CreateButtonSizer( style
& (wxOK
|wxCANCEL
|wxYES_NO
|wxYES_DEFAULT
|wxNO_DEFAULT
) ),
124 0, center_flag
| wxALL
, 10 );
126 SetAutoLayout( true );
127 SetSizer( topsizer
);
129 topsizer
->SetSizeHints( this );
130 topsizer
->Fit( this );
131 wxSize
size( GetSize() );
132 if (size
.x
< size
.y
*3/2)
138 Centre( wxBOTH
| wxCENTER_FRAME
);
141 void wxGenericMessageDialog::OnYes(wxCommandEvent
& WXUNUSED(event
))
143 EndModal( wxID_YES
);
146 void wxGenericMessageDialog::OnNo(wxCommandEvent
& WXUNUSED(event
))
151 void wxGenericMessageDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
153 // Allow cancellation via ESC/Close button except if
154 // only YES and NO are specified.
155 const long style
= GetMessageDialogStyle();
156 if ( (style
& wxYES_NO
) != wxYES_NO
|| (style
& wxCANCEL
) )
158 EndModal( wxID_CANCEL
);
162 #endif // wxUSE_MSGDLG && !defined(__WXGTK20__)