]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/msgdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGenericMessageDialog
4 // Author: Julian Smart, Robert Roebling
8 // Copyright: (c) Julian Smart, Markus Holzem, Robert Roebling
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "msgdlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
25 #include "wx/dialog.h"
26 #include "wx/listbox.h"
27 #include "wx/button.h"
28 #include "wx/stattext.h"
29 #include "wx/layout.h"
36 #include "wx/generic/msgdlgg.h"
39 #include "wx/statline.h"
42 ///////////////////////////////////////////////////////////////////
43 // New dialog box implementations
45 // Split message, using constraints to position controls
46 wxSize
wxSplitMessage2( const wxString
&message
, wxWindow
*parent
)
50 wxString
line( _T("") );
51 for (uint pos
= 0; pos
< message
.Len(); pos
++)
53 if (message
[pos
] == _T('\n'))
57 wxStaticText
*s1
= new wxStaticText( parent
, -1, line
, wxPoint(15,y
) );
58 wxSize
size1( s1
->GetSize() );
59 if (size1
.x
> w
) w
= size1
.x
;
72 wxStaticText
*s2
= new wxStaticText( parent
, -1, line
, wxPoint(15,y
) );
73 wxSize
size2( s2
->GetSize() );
74 if (size2
.x
> w
) w
= size2
.x
;
79 return wxSize(w
+30,y
);
82 #if !USE_SHARED_LIBRARY
83 BEGIN_EVENT_TABLE(wxGenericMessageDialog
, wxDialog
)
84 EVT_BUTTON(wxID_YES
, wxGenericMessageDialog::OnYes
)
85 EVT_BUTTON(wxID_NO
, wxGenericMessageDialog::OnNo
)
86 EVT_BUTTON(wxID_CANCEL
, wxGenericMessageDialog::OnCancel
)
89 IMPLEMENT_CLASS(wxGenericMessageDialog
, wxDialog
)
92 wxGenericMessageDialog::wxGenericMessageDialog( wxWindow
*parent
, const wxString
& message
,
93 const wxString
& caption
, long style
, const wxPoint
& pos
) :
94 wxDialog( parent
, -1, caption
, pos
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
)
96 m_dialogStyle
= style
;
98 wxSize
message_size( wxSplitMessage2( message
, this ) );
100 wxButton
*ok
= (wxButton
*) NULL
;
101 wxButton
*cancel
= (wxButton
*) NULL
;
102 wxButton
*yes
= (wxButton
*) NULL
;
103 wxButton
*no
= (wxButton
*) NULL
;
105 int y
= message_size
.y
+ 30;
107 if (style
& wxYES_NO
)
109 yes
= new wxButton( this, wxID_YES
, _("Yes"), wxPoint(-1,y
), wxSize(80,-1) );
110 m_buttons
.Append( yes
);
111 no
= new wxButton( this, wxID_NO
, _("No"), wxPoint(-1,y
), wxSize(80,-1) );
112 m_buttons
.Append( no
);
117 ok
= new wxButton( this, wxID_OK
, _("OK"), wxPoint(-1,y
), wxSize(80,-1) );
118 m_buttons
.Append( ok
);
121 if (style
& wxCANCEL
)
123 cancel
= new wxButton( this, wxID_CANCEL
, _("Cancel"), wxPoint(-1,y
), wxSize(80,-1) );
124 m_buttons
.Append( cancel
);
134 if(style
& wxNO_DEFAULT
)
146 int w
= m_buttons
.GetCount() * 100;
147 if (message_size
.x
> w
) w
= message_size
.x
;
148 int space
= w
/ (m_buttons
.GetCount()*2);
151 wxNode
*node
= m_buttons
.First();
154 wxWindow
*win
= (wxWindow
*)node
->Data();
155 int x
= (n
*2+1)*space
- 40 + 15;
162 (void) new wxStaticLine( this, -1, wxPoint(0,y
-20), wxSize(w
+30, 5) );
165 SetSize( w
+30, y
+40 );
170 void wxGenericMessageDialog::OnYes(wxCommandEvent
& WXUNUSED(event
))
172 EndModal( wxID_YES
);
175 void wxGenericMessageDialog::OnNo(wxCommandEvent
& WXUNUSED(event
))
180 void wxGenericMessageDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
182 /* Allow cancellation via ESC/Close button except if
183 only YES and NO are specified. */
184 if ( (m_dialogStyle
& wxYES_NO
) != wxYES_NO
|| (m_dialogStyle
& wxCANCEL
) )
186 EndModal( wxID_CANCEL
);