]> git.saurik.com Git - wxWidgets.git/blame - src/generic/msgdlgg.cpp
Added contributed speedup of ConvertToBitmap under Motif, for 8-bit images.
[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
23#ifndef WX_PRECOMP
c50f1fb9
VZ
24 #include "wx/utils.h"
25 #include "wx/dialog.h"
26 #include "wx/button.h"
27 #include "wx/stattext.h"
28 #include "wx/statbmp.h"
29 #include "wx/layout.h"
30 #include "wx/intl.h"
dfe1eee3 31 #include "wx/icon.h"
92afa2b1
RR
32 #include "wx/sizer.h"
33 #include "wx/app.h"
c801d85f
KB
34#endif
35
36#include <stdio.h>
37#include <string.h>
38
39#include "wx/generic/msgdlgg.h"
40
dcf924a3
RR
41#if wxUSE_STATLINE
42 #include "wx/statline.h"
b0351fc9
RR
43#endif
44
917b3d40
VZ
45// ----------------------------------------------------------------------------
46// icons
47// ----------------------------------------------------------------------------
48
c801d85f 49BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog)
f03fc89f
VZ
50 EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes)
51 EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo)
52 EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel)
c801d85f
KB
53END_EVENT_TABLE()
54
55IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog)
c801d85f 56
917b3d40
VZ
57wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent,
58 const wxString& message,
59 const wxString& caption,
60 long style,
61 const wxPoint& pos)
62 : wxDialog( parent, -1, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE )
c801d85f 63{
dfc54541 64 m_dialogStyle = style;
c801d85f 65
dcf924a3
RR
66 wxBeginBusyCursor();
67
92afa2b1 68 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
c801d85f 69
92afa2b1
RR
70 wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL );
71
72 // 1) icon
73 if (style & wxICON_MASK)
dfc54541 74 {
92afa2b1
RR
75 wxStaticBitmap *icon = new wxStaticBitmap(
76 this, -1, wxTheApp->GetStdIcon(style & wxICON_MASK));
77 icon_text->Add( icon, 0, wxCENTER );
dfc54541 78 }
92afa2b1
RR
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
917b3d40 89
92afa2b1 90 // 4) buttons
8a5137d7 91 topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 );
917b3d40 92
8b17ba72
RR
93 SetAutoLayout( TRUE );
94 SetSizer( topsizer );
95
92afa2b1
RR
96 topsizer->SetSizeHints( this );
97 topsizer->Fit( this );
8b17ba72 98 wxSize size( GetSize() );
e6daf794 99 if (size.x < size.y*3/2)
8b17ba72 100 {
e6daf794 101 size.x = size.y*3/2;
8b17ba72
RR
102 SetSize( size );
103 }
917b3d40 104
92afa2b1 105 Centre( wxBOTH | wxCENTER_FRAME);
917b3d40 106
dcf924a3 107 wxEndBusyCursor();
c801d85f
KB
108}
109
110void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event))
111{
15b24b14 112 EndModal( wxID_YES );
c801d85f
KB
113}
114
115void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event))
116{
15b24b14 117 EndModal( wxID_NO );
c801d85f
KB
118}
119
120void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
121{
15b24b14
RR
122 /* Allow cancellation via ESC/Close button except if
123 only YES and NO are specified. */
dfc54541 124 if ( (m_dialogStyle & wxYES_NO) != wxYES_NO || (m_dialogStyle & wxCANCEL) )
15b24b14
RR
125 {
126 EndModal( wxID_CANCEL );
127 }
c801d85f
KB
128}
129
130