]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
e5b50758 | 2 | // Name: src/generic/msgdlgg.cpp |
c801d85f | 3 | // Purpose: wxGenericMessageDialog |
15b24b14 | 4 | // Author: Julian Smart, Robert Roebling |
c801d85f KB |
5 | // Modified by: |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart and Robert Roebling |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
c801d85f KB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
853bbd9e | 19 | #if wxUSE_MSGDLG && (!defined(__WXGTK20__) || defined(__WXUNIVERSAL__) || defined(__WXGPE__)) |
1e6feb95 | 20 | |
c801d85f | 21 | #ifndef WX_PRECOMP |
c50f1fb9 VZ |
22 | #include "wx/utils.h" |
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" | |
28 | #include "wx/intl.h" | |
dfe1eee3 | 29 | #include "wx/icon.h" |
92afa2b1 RR |
30 | #include "wx/sizer.h" |
31 | #include "wx/app.h" | |
9eddec69 | 32 | #include "wx/settings.h" |
c801d85f KB |
33 | #endif |
34 | ||
35 | #include <stdio.h> | |
36 | #include <string.h> | |
37 | ||
a685a06c DE |
38 | #define __WX_COMPILING_MSGDLGG_CPP__ 1 |
39 | #include "wx/msgdlg.h" | |
389d906b | 40 | #include "wx/artprov.h" |
c801d85f | 41 | |
dcf924a3 | 42 | #if wxUSE_STATLINE |
9eddec69 | 43 | #include "wx/statline.h" |
b0351fc9 RR |
44 | #endif |
45 | ||
917b3d40 VZ |
46 | // ---------------------------------------------------------------------------- |
47 | // icons | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
c801d85f | 50 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) |
f03fc89f VZ |
51 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) |
52 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
53 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
c801d85f KB |
54 | END_EVENT_TABLE() |
55 | ||
56 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
c801d85f | 57 | |
917b3d40 VZ |
58 | wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent, |
59 | const wxString& message, | |
60 | const wxString& caption, | |
61 | long style, | |
62 | const wxPoint& pos) | |
2afb9e16 VZ |
63 | : wxMessageDialogBase(GetParentForModalDialog(parent), |
64 | message, | |
65 | caption, | |
66 | style), | |
67 | m_pos(pos) | |
c801d85f | 68 | { |
2afb9e16 VZ |
69 | m_created = false; |
70 | } | |
c801d85f | 71 | |
2afb9e16 VZ |
72 | void wxGenericMessageDialog::DoCreateMsgdialog() |
73 | { | |
74 | wxDialog::Create(m_parent, wxID_ANY, m_caption, m_pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE); | |
2229243b | 75 | |
2b5f62a0 VZ |
76 | bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA); |
77 | ||
92afa2b1 | 78 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); |
c801d85f | 79 | |
92afa2b1 | 80 | wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL ); |
479cd5de | 81 | |
9a6384ca | 82 | #if wxUSE_STATBMP |
92afa2b1 | 83 | // 1) icon |
2afb9e16 | 84 | if (m_dialogStyle & wxICON_MASK) |
dfc54541 | 85 | { |
1970409e VZ |
86 | wxStaticBitmap *icon = new wxStaticBitmap |
87 | ( | |
88 | this, | |
89 | wxID_ANY, | |
90 | wxArtProvider::GetMessageBoxIcon(m_dialogStyle) | |
91 | ); | |
2b5f62a0 VZ |
92 | if (is_pda) |
93 | topsizer->Add( icon, 0, wxTOP|wxLEFT|wxRIGHT | wxALIGN_LEFT, 10 ); | |
94 | else | |
95 | icon_text->Add( icon, 0, wxCENTER ); | |
dfc54541 | 96 | } |
9a6384ca | 97 | #endif // wxUSE_STATBMP |
479cd5de | 98 | |
9a6384ca | 99 | #if wxUSE_STATTEXT |
92afa2b1 | 100 | // 2) text |
2afb9e16 | 101 | icon_text->Add( CreateTextSizer( GetFullMessage() ), 0, wxALIGN_CENTER | wxLEFT, 10 ); |
479cd5de | 102 | |
2b5f62a0 | 103 | topsizer->Add( icon_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 ); |
9a6384ca | 104 | #endif // wxUSE_STATTEXT |
479cd5de | 105 | |
bd9f3519 | 106 | // 3) buttons |
39caed1f | 107 | int center_flag = wxEXPAND; |
2afb9e16 | 108 | if (m_dialogStyle & wxYES_NO) |
bd9f3519 | 109 | center_flag = wxALIGN_CENTRE; |
2afb9e16 | 110 | wxSizer *sizerBtn = CreateSeparatedButtonSizer(m_dialogStyle & ButtonSizerFlags); |
bd9f3519 VZ |
111 | if ( sizerBtn ) |
112 | topsizer->Add(sizerBtn, 0, center_flag | wxALL, 10 ); | |
917b3d40 | 113 | |
ca65c044 | 114 | SetAutoLayout( true ); |
8b17ba72 | 115 | SetSizer( topsizer ); |
479cd5de | 116 | |
92afa2b1 RR |
117 | topsizer->SetSizeHints( this ); |
118 | topsizer->Fit( this ); | |
8b17ba72 | 119 | wxSize size( GetSize() ); |
e6daf794 | 120 | if (size.x < size.y*3/2) |
8b17ba72 | 121 | { |
e6daf794 | 122 | size.x = size.y*3/2; |
f1df0927 | 123 | SetSize( size ); |
8b17ba72 | 124 | } |
917b3d40 | 125 | |
92afa2b1 | 126 | Centre( wxBOTH | wxCENTER_FRAME); |
c801d85f KB |
127 | } |
128 | ||
129 | void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event)) | |
130 | { | |
15b24b14 | 131 | EndModal( wxID_YES ); |
c801d85f KB |
132 | } |
133 | ||
134 | void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event)) | |
135 | { | |
15b24b14 | 136 | EndModal( wxID_NO ); |
c801d85f KB |
137 | } |
138 | ||
139 | void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) | |
140 | { | |
2b5f62a0 VZ |
141 | // Allow cancellation via ESC/Close button except if |
142 | // only YES and NO are specified. | |
e5b50758 WS |
143 | const long style = GetMessageDialogStyle(); |
144 | if ( (style & wxYES_NO) != wxYES_NO || (style & wxCANCEL) ) | |
15b24b14 RR |
145 | { |
146 | EndModal( wxID_CANCEL ); | |
147 | } | |
c801d85f KB |
148 | } |
149 | ||
2afb9e16 VZ |
150 | int wxGenericMessageDialog::ShowModal() |
151 | { | |
152 | if ( !m_created ) | |
153 | { | |
154 | m_created = true; | |
155 | DoCreateMsgdialog(); | |
156 | } | |
157 | ||
158 | return wxMessageDialogBase::ShowModal(); | |
159 | } | |
160 | ||
9d830d3e | 161 | #endif // wxUSE_MSGDLG && !defined(__WXGTK20__) |