]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: msgdlgg.cpp | |
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 JS |
8 | // Copyright: (c) Julian Smart and Robert Roebling |
9 | // Licence: wxWindows licence | |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "msgdlgg.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
1e6feb95 VZ |
23 | #if wxUSE_MSGDLG |
24 | ||
c801d85f | 25 | #ifndef WX_PRECOMP |
c50f1fb9 VZ |
26 | #include "wx/utils.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" | |
32 | #include "wx/intl.h" | |
dfe1eee3 | 33 | #include "wx/icon.h" |
92afa2b1 RR |
34 | #include "wx/sizer.h" |
35 | #include "wx/app.h" | |
c801d85f KB |
36 | #endif |
37 | ||
38 | #include <stdio.h> | |
39 | #include <string.h> | |
40 | ||
41 | #include "wx/generic/msgdlgg.h" | |
389d906b | 42 | #include "wx/artprov.h" |
2b5f62a0 | 43 | #include "wx/settings.h" |
c801d85f | 44 | |
dcf924a3 RR |
45 | #if wxUSE_STATLINE |
46 | #include "wx/statline.h" | |
b0351fc9 RR |
47 | #endif |
48 | ||
917b3d40 VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // icons | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
c801d85f | 53 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) |
f03fc89f VZ |
54 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) |
55 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
56 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
c801d85f KB |
57 | END_EVENT_TABLE() |
58 | ||
59 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
c801d85f | 60 | |
917b3d40 VZ |
61 | wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent, |
62 | const wxString& message, | |
63 | const wxString& caption, | |
64 | long style, | |
65 | const wxPoint& pos) | |
66 | : wxDialog( parent, -1, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE ) | |
c801d85f | 67 | { |
dfc54541 | 68 | m_dialogStyle = style; |
c801d85f | 69 | |
29d0a26e | 70 | #if wxUSE_STATIC_BITMAP |
2b5f62a0 | 71 | bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA); |
29d0a26e | 72 | #endif |
2b5f62a0 | 73 | |
92afa2b1 | 74 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); |
c801d85f | 75 | |
92afa2b1 | 76 | wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL ); |
479cd5de | 77 | |
92afa2b1 RR |
78 | // 1) icon |
79 | if (style & wxICON_MASK) | |
dfc54541 | 80 | { |
389d906b VS |
81 | wxBitmap bitmap; |
82 | switch ( style & wxICON_MASK ) | |
83 | { | |
475ba112 VZ |
84 | default: |
85 | wxFAIL_MSG(_T("incorrect log style")); | |
86 | // fall through | |
87 | ||
389d906b | 88 | case wxICON_ERROR: |
475ba112 VZ |
89 | bitmap = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX); |
90 | break; | |
91 | ||
389d906b | 92 | case wxICON_INFORMATION: |
475ba112 VZ |
93 | bitmap = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX); |
94 | break; | |
95 | ||
389d906b | 96 | case wxICON_WARNING: |
475ba112 VZ |
97 | bitmap = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX); |
98 | break; | |
99 | ||
389d906b | 100 | case wxICON_QUESTION: |
475ba112 VZ |
101 | bitmap = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX); |
102 | break; | |
389d906b | 103 | } |
d7260478 | 104 | #if wxUSE_STATIC_BITMAP |
389d906b | 105 | wxStaticBitmap *icon = new wxStaticBitmap(this, -1, bitmap); |
2b5f62a0 VZ |
106 | if (is_pda) |
107 | topsizer->Add( icon, 0, wxTOP|wxLEFT|wxRIGHT | wxALIGN_LEFT, 10 ); | |
108 | else | |
109 | icon_text->Add( icon, 0, wxCENTER ); | |
d7260478 | 110 | #endif |
dfc54541 | 111 | } |
479cd5de | 112 | |
92afa2b1 | 113 | // 2) text |
d7260478 | 114 | #if wxUSE_STATTEXT // && wxUSE_TEXTCTRL |
92afa2b1 | 115 | icon_text->Add( CreateTextSizer( message ), 0, wxCENTER | wxLEFT, 10 ); |
d7260478 | 116 | #endif |
479cd5de | 117 | |
2b5f62a0 | 118 | topsizer->Add( icon_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 ); |
479cd5de | 119 | |
92afa2b1 RR |
120 | #if wxUSE_STATLINE |
121 | // 3) static line | |
122 | topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 ); | |
123 | #endif | |
917b3d40 | 124 | |
92afa2b1 | 125 | // 4) buttons |
d7260478 | 126 | #if wxUSE_BUTTON |
8a5137d7 | 127 | topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 ); |
d7260478 | 128 | #endif |
917b3d40 | 129 | |
8b17ba72 RR |
130 | SetAutoLayout( TRUE ); |
131 | SetSizer( topsizer ); | |
479cd5de | 132 | |
92afa2b1 RR |
133 | topsizer->SetSizeHints( this ); |
134 | topsizer->Fit( this ); | |
8b17ba72 | 135 | wxSize size( GetSize() ); |
e6daf794 | 136 | if (size.x < size.y*3/2) |
8b17ba72 | 137 | { |
e6daf794 | 138 | size.x = size.y*3/2; |
f1df0927 | 139 | SetSize( size ); |
8b17ba72 | 140 | } |
917b3d40 | 141 | |
92afa2b1 | 142 | Centre( wxBOTH | wxCENTER_FRAME); |
c801d85f KB |
143 | } |
144 | ||
145 | void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event)) | |
146 | { | |
15b24b14 | 147 | EndModal( wxID_YES ); |
c801d85f KB |
148 | } |
149 | ||
150 | void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event)) | |
151 | { | |
15b24b14 | 152 | EndModal( wxID_NO ); |
c801d85f KB |
153 | } |
154 | ||
155 | void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) | |
156 | { | |
2b5f62a0 VZ |
157 | // Allow cancellation via ESC/Close button except if |
158 | // only YES and NO are specified. | |
dfc54541 | 159 | if ( (m_dialogStyle & wxYES_NO) != wxYES_NO || (m_dialogStyle & wxCANCEL) ) |
15b24b14 RR |
160 | { |
161 | EndModal( wxID_CANCEL ); | |
162 | } | |
c801d85f KB |
163 | } |
164 | ||
1e6feb95 | 165 | #endif // wxUSE_MSGDLG |
c801d85f | 166 |