]> git.saurik.com Git - wxWidgets.git/blame - src/generic/msgdlgg.cpp
only change the bitmap size for the borderless controls
[wxWidgets.git] / src / generic / msgdlgg.cpp
CommitLineData
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
c801d85f
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
853bbd9e 19#if wxUSE_MSGDLG && (!defined(__WXGTK20__) || defined(__WXUNIVERSAL__) || defined(__WXGPE__))
1e6feb95 20
c801d85f 21#ifndef WX_PRECOMP
c50f1fb9
VZ
22 #include "wx/utils.h"
23 #include "wx/dialog.h"
24 #include "wx/button.h"
25 #include "wx/stattext.h"
26 #include "wx/statbmp.h"
27 #include "wx/layout.h"
28 #include "wx/intl.h"
dfe1eee3 29 #include "wx/icon.h"
92afa2b1
RR
30 #include "wx/sizer.h"
31 #include "wx/app.h"
9eddec69 32 #include "wx/settings.h"
c801d85f
KB
33#endif
34
35#include <stdio.h>
36#include <string.h>
37
a685a06c
DE
38#define __WX_COMPILING_MSGDLGG_CPP__ 1
39#include "wx/msgdlg.h"
389d906b 40#include "wx/artprov.h"
c801d85f 41
dcf924a3 42#if wxUSE_STATLINE
9eddec69 43 #include "wx/statline.h"
b0351fc9
RR
44#endif
45
917b3d40
VZ
46// ----------------------------------------------------------------------------
47// icons
48// ----------------------------------------------------------------------------
49
c801d85f 50BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog)
f03fc89f
VZ
51 EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes)
52 EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo)
53 EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel)
c801d85f
KB
54END_EVENT_TABLE()
55
56IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog)
c801d85f 57
917b3d40
VZ
58wxGenericMessageDialog::wxGenericMessageDialog( wxWindow *parent,
59 const wxString& message,
60 const wxString& caption,
61 long style,
62 const wxPoint& pos)
ca65c044 63 : wxDialog( parent, wxID_ANY, caption, pos, wxDefaultSize, wxDEFAULT_DIALOG_STYLE )
c801d85f 64{
e5b50758 65 SetMessageDialogStyle(style);
c801d85f 66
2b5f62a0
VZ
67 bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
68
92afa2b1 69 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
c801d85f 70
92afa2b1 71 wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL );
479cd5de 72
9a6384ca 73#if wxUSE_STATBMP
92afa2b1
RR
74 // 1) icon
75 if (style & wxICON_MASK)
dfc54541 76 {
389d906b
VS
77 wxBitmap bitmap;
78 switch ( style & wxICON_MASK )
79 {
475ba112
VZ
80 default:
81 wxFAIL_MSG(_T("incorrect log style"));
82 // fall through
83
389d906b 84 case wxICON_ERROR:
475ba112
VZ
85 bitmap = wxArtProvider::GetIcon(wxART_ERROR, wxART_MESSAGE_BOX);
86 break;
87
389d906b 88 case wxICON_INFORMATION:
475ba112
VZ
89 bitmap = wxArtProvider::GetIcon(wxART_INFORMATION, wxART_MESSAGE_BOX);
90 break;
91
389d906b 92 case wxICON_WARNING:
475ba112
VZ
93 bitmap = wxArtProvider::GetIcon(wxART_WARNING, wxART_MESSAGE_BOX);
94 break;
95
389d906b 96 case wxICON_QUESTION:
475ba112
VZ
97 bitmap = wxArtProvider::GetIcon(wxART_QUESTION, wxART_MESSAGE_BOX);
98 break;
389d906b 99 }
ca65c044 100 wxStaticBitmap *icon = new wxStaticBitmap(this, wxID_ANY, bitmap);
2b5f62a0
VZ
101 if (is_pda)
102 topsizer->Add( icon, 0, wxTOP|wxLEFT|wxRIGHT | wxALIGN_LEFT, 10 );
103 else
104 icon_text->Add( icon, 0, wxCENTER );
dfc54541 105 }
9a6384ca 106#endif // wxUSE_STATBMP
479cd5de 107
9a6384ca 108#if wxUSE_STATTEXT
92afa2b1 109 // 2) text
39caed1f 110 icon_text->Add( CreateTextSizer( message ), 0, wxALIGN_CENTER | wxLEFT, 10 );
479cd5de 111
2b5f62a0 112 topsizer->Add( icon_text, 1, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
9a6384ca 113#endif // wxUSE_STATTEXT
479cd5de 114
bd9f3519 115 // 3) buttons
39caed1f 116 int center_flag = wxEXPAND;
bd9f3519
VZ
117 if (style & wxYES_NO)
118 center_flag = wxALIGN_CENTRE;
119 wxSizer *sizerBtn = CreateSeparatedButtonSizer(style & ButtonSizerFlags);
120 if ( sizerBtn )
121 topsizer->Add(sizerBtn, 0, center_flag | wxALL, 10 );
917b3d40 122
ca65c044 123 SetAutoLayout( true );
8b17ba72 124 SetSizer( topsizer );
479cd5de 125
92afa2b1
RR
126 topsizer->SetSizeHints( this );
127 topsizer->Fit( this );
8b17ba72 128 wxSize size( GetSize() );
e6daf794 129 if (size.x < size.y*3/2)
8b17ba72 130 {
e6daf794 131 size.x = size.y*3/2;
f1df0927 132 SetSize( size );
8b17ba72 133 }
917b3d40 134
92afa2b1 135 Centre( wxBOTH | wxCENTER_FRAME);
c801d85f
KB
136}
137
138void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event))
139{
15b24b14 140 EndModal( wxID_YES );
c801d85f
KB
141}
142
143void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event))
144{
15b24b14 145 EndModal( wxID_NO );
c801d85f
KB
146}
147
148void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
149{
2b5f62a0
VZ
150 // Allow cancellation via ESC/Close button except if
151 // only YES and NO are specified.
e5b50758
WS
152 const long style = GetMessageDialogStyle();
153 if ( (style & wxYES_NO) != wxYES_NO || (style & wxCANCEL) )
15b24b14
RR
154 {
155 EndModal( wxID_CANCEL );
156 }
c801d85f
KB
157}
158
9d830d3e 159#endif // wxUSE_MSGDLG && !defined(__WXGTK20__)