]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/generic/msgdlgg.cpp
corrected use of Print Manager Session APIs for Carbon targets
[wxWidgets.git] / src / generic / msgdlgg.cpp
... / ...
CommitLineData
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#ifndef WX_PRECOMP
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"
31 #include "wx/icon.h"
32 #include "wx/sizer.h"
33 #include "wx/app.h"
34#endif
35
36#include <stdio.h>
37#include <string.h>
38
39#include "wx/generic/msgdlgg.h"
40
41#if wxUSE_STATLINE
42 #include "wx/statline.h"
43#endif
44
45// ----------------------------------------------------------------------------
46// icons
47// ----------------------------------------------------------------------------
48
49BEGIN_EVENT_TABLE(wxGenericMessageDialog, wxDialog)
50 EVT_BUTTON(wxID_YES, wxGenericMessageDialog::OnYes)
51 EVT_BUTTON(wxID_NO, wxGenericMessageDialog::OnNo)
52 EVT_BUTTON(wxID_CANCEL, wxGenericMessageDialog::OnCancel)
53END_EVENT_TABLE()
54
55IMPLEMENT_CLASS(wxGenericMessageDialog, wxDialog)
56
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 )
63{
64 m_dialogStyle = style;
65
66 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
67
68 wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL );
69
70 // 1) icon
71 if (style & wxICON_MASK)
72 {
73 wxStaticBitmap *icon = new wxStaticBitmap(
74 this, -1, wxTheApp->GetStdIcon((int)(style & wxICON_MASK)));
75 icon_text->Add( icon, 0, wxCENTER );
76 }
77
78 // 2) text
79 icon_text->Add( CreateTextSizer( message ), 0, wxCENTER | wxLEFT, 10 );
80
81 topsizer->Add( icon_text, 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
82
83#if wxUSE_STATLINE
84 // 3) static line
85 topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
86#endif
87
88 // 4) buttons
89 topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 );
90
91 SetAutoLayout( TRUE );
92 SetSizer( topsizer );
93
94 topsizer->SetSizeHints( this );
95 topsizer->Fit( this );
96 wxSize size( GetSize() );
97 if (size.x < size.y*3/2)
98 {
99 size.x = size.y*3/2;
100 SetSize( size );
101 }
102
103 Centre( wxBOTH | wxCENTER_FRAME);
104}
105
106void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event))
107{
108 EndModal( wxID_YES );
109}
110
111void wxGenericMessageDialog::OnNo(wxCommandEvent& WXUNUSED(event))
112{
113 EndModal( wxID_NO );
114}
115
116void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
117{
118 /* Allow cancellation via ESC/Close button except if
119 only YES and NO are specified. */
120 if ( (m_dialogStyle & wxYES_NO) != wxYES_NO || (m_dialogStyle & wxCANCEL) )
121 {
122 EndModal( wxID_CANCEL );
123 }
124}
125
126