]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: msgdlgg.cpp | |
3 | // Purpose: wxGenericMessageDialog | |
4 | // Author: Julian Smart, Robert Roebling | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart, Markus Holzem, Robert Roebling | |
9 | // Licence: wxWindows license | |
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 | ||
23 | #if wxUSE_MSGDLG | |
24 | ||
25 | #ifndef WX_PRECOMP | |
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" | |
33 | #include "wx/icon.h" | |
34 | #include "wx/sizer.h" | |
35 | #include "wx/app.h" | |
36 | #endif | |
37 | ||
38 | #include <stdio.h> | |
39 | #include <string.h> | |
40 | ||
41 | #include "wx/generic/msgdlgg.h" | |
42 | ||
43 | #if wxUSE_STATLINE | |
44 | #include "wx/statline.h" | |
45 | #endif | |
46 | ||
47 | // ---------------------------------------------------------------------------- | |
48 | // icons | |
49 | // ---------------------------------------------------------------------------- | |
50 | ||
51 | BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog) | |
52 | EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes) | |
53 | EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo) | |
54 | EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel) | |
55 | END_EVENT_TABLE() | |
56 | ||
57 | IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog) | |
58 | ||
59 | wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent, | |
60 | const wxString& message, | |
61 | const wxString& caption, | |
62 | long style, | |
63 | const wxPoint& pos) | |
64 | : wxDialog( parent, -1, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE ) | |
65 | { | |
66 | m_dialogStyle = style; | |
67 | ||
68 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); | |
69 | ||
70 | wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL ); | |
71 | ||
72 | // 1) icon | |
73 | if (style & wxICON_MASK) | |
74 | { | |
75 | wxStaticBitmap *icon = new wxStaticBitmap( | |
76 | this, -1, wxTheApp->GetStdIcon((int)(style & wxICON_MASK))); | |
77 | icon_text->Add( icon, 0, wxCENTER ); | |
78 | } | |
79 | ||
80 | // 2) text | |
81 | icon_text->Add( CreateTextSizer( message ), 0, wxCENTER | wxLEFT, 10 ); | |
82 | ||
83 | topsizer->Add( icon_text, 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 ); | |
84 | ||
85 | #if wxUSE_STATLINE | |
86 | // 3) static line | |
87 | topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 ); | |
88 | #endif | |
89 | ||
90 | // 4) buttons | |
91 | topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 ); | |
92 | ||
93 | SetAutoLayout( TRUE ); | |
94 | SetSizer( topsizer ); | |
95 | ||
96 | topsizer->SetSizeHints( this ); | |
97 | topsizer->Fit( this ); | |
98 | wxSize size( GetSize() ); | |
99 | if (size.x < size.y*3/2) | |
100 | { | |
101 | size.x = size.y*3/2; | |
102 | SetSize( size ); | |
103 | } | |
104 | ||
105 | Centre( wxBOTH | wxCENTER_FRAME); | |
106 | } | |
107 | ||
108 | void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event)) | |
109 | { | |
110 | EndModal( wxID_YES ); | |
111 | } | |
112 | ||
113 | void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event)) | |
114 | { | |
115 | EndModal( wxID_NO ); | |
116 | } | |
117 | ||
118 | void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) | |
119 | { | |
120 | /* Allow cancellation via ESC/Close button except if | |
121 | only YES and NO are specified. */ | |
122 | if ( (m_dialogStyle & wxYES_NO) != wxYES_NO || (m_dialogStyle & wxCANCEL) ) | |
123 | { | |
124 | EndModal( wxID_CANCEL ); | |
125 | } | |
126 | } | |
127 | ||
128 | #endif // wxUSE_MSGDLG | |
129 |