]>
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 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c801d85f KB |
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 | ||
853bbd9e | 23 | #if wxUSE_MSGDLG && (!defined(__WXGTK20__) || defined(__WXUNIVERSAL__) || defined(__WXGPE__)) |
1e6feb95 | 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 | ||
a685a06c DE |
41 | #define __WX_COMPILING_MSGDLGG_CPP__ 1 |
42 | #include "wx/msgdlg.h" | |
389d906b | 43 | #include "wx/artprov.h" |
2b5f62a0 | 44 | #include "wx/settings.h" |
c801d85f | 45 | |
dcf924a3 RR |
46 | #if wxUSE_STATLINE |
47 | #include "wx/statline.h" | |
b0351fc9 RR |
48 | #endif |
49 | ||
917b3d40 VZ |
50 | // ---------------------------------------------------------------------------- |
51 | // icons | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
c801d85f | 54 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) |
f03fc89f VZ |
55 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) |
56 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
57 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
c801d85f KB |
58 | END_EVENT_TABLE() |
59 | ||
60 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
c801d85f | 61 | |
917b3d40 VZ |
62 | wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent, |
63 | const wxString& message, | |
64 | const wxString& caption, | |
65 | long style, | |
66 | const wxPoint& pos) | |
ca65c044 | 67 | : wxDialog( parent, wxID_ANY, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE ) |
c801d85f | 68 | { |
e5b50758 | 69 | SetMessageDialogStyle(style); |
c801d85f | 70 | |
2b5f62a0 VZ |
71 | bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA); |
72 | ||
92afa2b1 | 73 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); |
c801d85f | 74 | |
92afa2b1 | 75 | wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL ); |
479cd5de | 76 | |
92afa2b1 RR |
77 | // 1) icon |
78 | if (style & wxICON_MASK) | |
dfc54541 | 79 | { |
389d906b VS |
80 | wxBitmap bitmap; |
81 | switch ( style & wxICON_MASK ) | |
82 | { | |
475ba112 VZ |
83 | default: |
84 | wxFAIL_MSG(_T("incorrect log style")); | |
85 | // fall through | |
86 | ||
389d906b | 87 | case wxICON_ERROR: |
475ba112 VZ |
88 | bitmap = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX); |
89 | break; | |
90 | ||
389d906b | 91 | case wxICON_INFORMATION: |
475ba112 VZ |
92 | bitmap = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX); |
93 | break; | |
94 | ||
389d906b | 95 | case wxICON_WARNING: |
475ba112 VZ |
96 | bitmap = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX); |
97 | break; | |
98 | ||
389d906b | 99 | case wxICON_QUESTION: |
475ba112 VZ |
100 | bitmap = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX); |
101 | break; | |
389d906b | 102 | } |
ca65c044 | 103 | wxStaticBitmap *icon = new wxStaticBitmap(this, wxID_ANY, bitmap); |
2b5f62a0 VZ |
104 | if (is_pda) |
105 | topsizer->Add( icon, 0, wxTOP|wxLEFT|wxRIGHT | wxALIGN_LEFT, 10 ); | |
106 | else | |
107 | icon_text->Add( icon, 0, wxCENTER ); | |
dfc54541 | 108 | } |
479cd5de | 109 | |
92afa2b1 | 110 | // 2) text |
39caed1f | 111 | icon_text->Add( CreateTextSizer( message ), 0, wxALIGN_CENTER | wxLEFT, 10 ); |
479cd5de | 112 | |
2b5f62a0 | 113 | topsizer->Add( icon_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 ); |
479cd5de | 114 | |
79c250d8 | 115 | #if wxUSE_STATLINE |
92afa2b1 | 116 | // 3) static line |
ca65c044 | 117 | topsizer->Add( new wxStaticLine( this, wxID_ANY ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 ); |
79c250d8 | 118 | #endif // wxUSE_STATLINE |
917b3d40 | 119 | |
92afa2b1 | 120 | // 4) buttons |
39caed1f RR |
121 | int center_flag = wxEXPAND; |
122 | if (style & wxYES_NO) center_flag = wxALIGN_CENTRE; | |
291dddd7 | 123 | topsizer->Add( CreateButtonSizer( style & (wxOK|wxCANCEL|wxYES_NO|wxYES_DEFAULT|wxNO_DEFAULT) ), |
39caed1f | 124 | 0, center_flag | wxALL, 10 ); |
917b3d40 | 125 | |
ca65c044 | 126 | SetAutoLayout( true ); |
8b17ba72 | 127 | SetSizer( topsizer ); |
479cd5de | 128 | |
92afa2b1 RR |
129 | topsizer->SetSizeHints( this ); |
130 | topsizer->Fit( this ); | |
8b17ba72 | 131 | wxSize size( GetSize() ); |
e6daf794 | 132 | if (size.x < size.y*3/2) |
8b17ba72 | 133 | { |
e6daf794 | 134 | size.x = size.y*3/2; |
f1df0927 | 135 | SetSize( size ); |
8b17ba72 | 136 | } |
917b3d40 | 137 | |
92afa2b1 | 138 | Centre( wxBOTH | wxCENTER_FRAME); |
c801d85f KB |
139 | } |
140 | ||
141 | void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event)) | |
142 | { | |
15b24b14 | 143 | EndModal( wxID_YES ); |
c801d85f KB |
144 | } |
145 | ||
146 | void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event)) | |
147 | { | |
15b24b14 | 148 | EndModal( wxID_NO ); |
c801d85f KB |
149 | } |
150 | ||
151 | void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) | |
152 | { | |
2b5f62a0 VZ |
153 | // Allow cancellation via ESC/Close button except if |
154 | // only YES and NO are specified. | |
e5b50758 WS |
155 | const long style = GetMessageDialogStyle(); |
156 | if ( (style & wxYES_NO) != wxYES_NO || (style & wxCANCEL) ) | |
15b24b14 RR |
157 | { |
158 | EndModal( wxID_CANCEL ); | |
159 | } | |
c801d85f KB |
160 | } |
161 | ||
9d830d3e | 162 | #endif // wxUSE_MSGDLG && !defined(__WXGTK20__) |
c801d85f | 163 |