]> git.saurik.com Git - wxWidgets.git/blame - src/generic/msgdlgg.cpp
Fixed wxGridCellFloatEditor::Clone
[wxWidgets.git] / src / generic / msgdlgg.cpp
CommitLineData
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$
15b24b14 8// Copyright: (c) Julian Smart, Markus Holzem, Robert Roebling
c50f1fb9 9// Licence: wxWindows license
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"
c801d85f 43
dcf924a3
RR
44#if wxUSE_STATLINE
45 #include "wx/statline.h"
b0351fc9
RR
46#endif
47
917b3d40
VZ
48// ----------------------------------------------------------------------------
49// icons
50// ----------------------------------------------------------------------------
51
c801d85f 52BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog)
f03fc89f
VZ
53 EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes)
54 EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo)
55 EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel)
c801d85f
KB
56END_EVENT_TABLE()
57
58IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog)
c801d85f 59
917b3d40
VZ
60wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent,
61 const wxString& message,
62 const wxString& caption,
63 long style,
64 const wxPoint& pos)
65 : wxDialog( parent, -1, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE )
c801d85f 66{
dfc54541 67 m_dialogStyle = style;
c801d85f 68
92afa2b1 69 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
c801d85f 70
92afa2b1 71 wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL );
479cd5de 72
92afa2b1
RR
73 // 1) icon
74 if (style & wxICON_MASK)
dfc54541 75 {
389d906b
VS
76 wxBitmap bitmap;
77 switch ( style & wxICON_MASK )
78 {
475ba112
VZ
79 default:
80 wxFAIL_MSG(_T("incorrect log style"));
81 // fall through
82
389d906b 83 case wxICON_ERROR:
475ba112
VZ
84 bitmap = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX);
85 break;
86
389d906b 87 case wxICON_INFORMATION:
475ba112
VZ
88 bitmap = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX);
89 break;
90
389d906b 91 case wxICON_WARNING:
475ba112
VZ
92 bitmap = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX);
93 break;
94
389d906b 95 case wxICON_QUESTION:
475ba112
VZ
96 bitmap = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX);
97 break;
389d906b
VS
98 }
99 wxStaticBitmap *icon = new wxStaticBitmap(this, -1, bitmap);
100 icon_text->Add( icon, 0, wxCENTER );
dfc54541 101 }
479cd5de 102
92afa2b1
RR
103 // 2) text
104 icon_text->Add( CreateTextSizer( message ), 0, wxCENTER | wxLEFT, 10 );
479cd5de 105
92afa2b1 106 topsizer->Add( icon_text, 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
479cd5de 107
92afa2b1
RR
108#if wxUSE_STATLINE
109 // 3) static line
110 topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
111#endif
917b3d40 112
92afa2b1 113 // 4) buttons
8a5137d7 114 topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 );
917b3d40 115
8b17ba72
RR
116 SetAutoLayout( TRUE );
117 SetSizer( topsizer );
479cd5de 118
92afa2b1
RR
119 topsizer->SetSizeHints( this );
120 topsizer->Fit( this );
8b17ba72 121 wxSize size( GetSize() );
e6daf794 122 if (size.x < size.y*3/2)
8b17ba72 123 {
e6daf794 124 size.x = size.y*3/2;
f1df0927 125 SetSize( size );
8b17ba72 126 }
917b3d40 127
92afa2b1 128 Centre( wxBOTH | wxCENTER_FRAME);
c801d85f
KB
129}
130
131void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event))
132{
15b24b14 133 EndModal( wxID_YES );
c801d85f
KB
134}
135
136void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event))
137{
15b24b14 138 EndModal( wxID_NO );
c801d85f
KB
139}
140
141void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
142{
15b24b14
RR
143 /* Allow cancellation via ESC/Close button except if
144 only YES and NO are specified. */
dfc54541 145 if ( (m_dialogStyle & wxYES_NO) != wxYES_NO || (m_dialogStyle & wxCANCEL) )
15b24b14
RR
146 {
147 EndModal( wxID_CANCEL );
148 }
c801d85f
KB
149}
150
1e6feb95 151#endif // wxUSE_MSGDLG
c801d85f 152