]>
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 and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "msgdlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #if wxUSE_MSGDLG && (!defined(__WXGTK20__) || defined(__WXGPE__))
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"
43 #include "wx/settings.h"
46 #include "wx/statline.h"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 BEGIN_EVENT_TABLE(wxGenericMessageDialog
, wxDialog
)
54 EVT_BUTTON(wxID_YES
, wxGenericMessageDialog::OnYes
)
55 EVT_BUTTON(wxID_NO
, wxGenericMessageDialog::OnNo
)
56 EVT_BUTTON(wxID_CANCEL
, wxGenericMessageDialog::OnCancel
)
59 IMPLEMENT_CLASS(wxGenericMessageDialog
, wxDialog
)
61 wxGenericMessageDialog::wxGenericMessageDialog( wxWindow
*parent
,
62 const wxString
& message
,
63 const wxString
& caption
,
66 : wxDialog( parent
, -1, caption
, pos
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
)
68 m_dialogStyle
= style
;
70 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
72 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
74 wxBoxSizer
*icon_text
= new wxBoxSizer( wxHORIZONTAL
);
77 if (style
& wxICON_MASK
)
80 switch ( style
& wxICON_MASK
)
83 wxFAIL_MSG(_T("incorrect log style"));
87 bitmap
= wxArtProvider::GetIcon(wxART_ERROR
, wxART_MESSAGE_BOX
);
90 case wxICON_INFORMATION
:
91 bitmap
= wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_MESSAGE_BOX
);
95 bitmap
= wxArtProvider::GetIcon(wxART_WARNING
, wxART_MESSAGE_BOX
);
99 bitmap
= wxArtProvider::GetIcon(wxART_QUESTION
, wxART_MESSAGE_BOX
);
102 wxStaticBitmap
*icon
= new wxStaticBitmap(this, -1, bitmap
);
104 topsizer
->Add( icon
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxALIGN_LEFT
, 10 );
106 icon_text
->Add( icon
, 0, wxCENTER
);
110 icon_text
->Add( CreateTextSizer( message
), 0, wxCENTER
| wxLEFT
, 10 );
112 topsizer
->Add( icon_text
, 1, wxCENTER
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
115 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
118 topsizer
->Add( CreateButtonSizer( style
& (wxOK
|wxCANCEL
|wxYES_NO
|wxYES_DEFAULT
|wxNO_DEFAULT
) ),
119 0, wxCENTRE
| wxALL
, 10 );
121 SetAutoLayout( TRUE
);
122 SetSizer( topsizer
);
124 topsizer
->SetSizeHints( this );
125 topsizer
->Fit( this );
126 wxSize
size( GetSize() );
127 if (size
.x
< size
.y
*3/2)
133 Centre( wxBOTH
| wxCENTER_FRAME
);
136 void wxGenericMessageDialog::OnYes(wxCommandEvent
& WXUNUSED(event
))
138 EndModal( wxID_YES
);
141 void wxGenericMessageDialog::OnNo(wxCommandEvent
& WXUNUSED(event
))
146 void wxGenericMessageDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
148 // Allow cancellation via ESC/Close button except if
149 // only YES and NO are specified.
150 if ( (m_dialogStyle
& wxYES_NO
) != wxYES_NO
|| (m_dialogStyle
& wxCANCEL
) )
152 EndModal( wxID_CANCEL
);
156 #endif // wxUSE_MSGDLG && !defined(__WXGTK20__)