1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/textdlgg.cpp
3 // Purpose: wxTextEntryDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/generic/textdlgg.h"
33 #include "wx/dialog.h"
34 #include "wx/button.h"
35 #include "wx/stattext.h"
36 #include "wx/textctrl.h"
42 #include "wx/statline.h"
45 const char wxGetTextFromUserPromptStr
[] = "Input Text";
46 const char wxGetPasswordFromUserPromptStr
[] = "Enter Password";
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 static const int wxID_TEXT
= 3000;
54 // ============================================================================
56 // ============================================================================
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 BEGIN_EVENT_TABLE(wxTextEntryDialog
, wxDialog
)
63 EVT_BUTTON(wxID_OK
, wxTextEntryDialog::OnOK
)
66 IMPLEMENT_CLASS(wxTextEntryDialog
, wxDialog
)
68 bool wxTextEntryDialog::Create(wxWindow
*parent
,
69 const wxString
& message
,
70 const wxString
& caption
,
71 const wxString
& value
,
75 if ( !wxDialog::Create(GetParentForModalDialog(parent
, style
),
78 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
) )
83 m_dialogStyle
= style
;
88 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
90 wxSizerFlags flagsBorder2
;
91 flagsBorder2
.DoubleBorder();
95 topsizer
->Add(CreateTextSizer(message
), flagsBorder2
);
99 m_textctrl
= new wxTextCtrl(this, wxID_TEXT
, value
,
100 wxDefaultPosition
, wxSize(300, wxDefaultCoord
),
101 style
& ~wxTextEntryDialogStyle
);
103 topsizer
->Add(m_textctrl
,
104 wxSizerFlags(style
& wxTE_MULTILINE
? 1 : 0).
106 TripleBorder(wxLEFT
| wxRIGHT
));
109 wxTextValidator
validator( wxFILTER_NONE
, &m_value
);
110 m_textctrl
->SetValidator( validator
);
111 #endif // wxUSE_VALIDATORS
114 wxSizer
*buttonSizer
= CreateSeparatedButtonSizer(style
& (wxOK
| wxCANCEL
));
117 topsizer
->Add(buttonSizer
, wxSizerFlags(flagsBorder2
).Expand());
120 SetAutoLayout( true );
121 SetSizer( topsizer
);
123 topsizer
->SetSizeHints( this );
124 topsizer
->Fit( this );
126 if ( style
& wxCENTRE
)
129 m_textctrl
->SelectAll();
130 m_textctrl
->SetFocus();
137 void wxTextEntryDialog::OnOK(wxCommandEvent
& WXUNUSED(event
) )
140 if( Validate() && TransferDataFromWindow() )
145 m_value
= m_textctrl
->GetValue();
152 void wxTextEntryDialog::SetValue(const wxString
& val
)
156 m_textctrl
->SetValue(val
);
161 #if WXWIN_COMPATIBILITY_2_8
162 void wxTextEntryDialog::SetTextValidator( long style
)
164 SetTextValidator((wxTextValidatorStyle
)style
);
168 void wxTextEntryDialog::SetTextValidator( wxTextValidatorStyle style
)
170 wxTextValidator
validator( style
, &m_value
);
171 m_textctrl
->SetValidator( validator
);
174 void wxTextEntryDialog::SetTextValidator( const wxTextValidator
& validator
)
176 m_textctrl
->SetValidator( validator
);
182 // ----------------------------------------------------------------------------
183 // wxPasswordEntryDialog
184 // ----------------------------------------------------------------------------
186 IMPLEMENT_CLASS(wxPasswordEntryDialog
, wxTextEntryDialog
)
188 wxPasswordEntryDialog::wxPasswordEntryDialog(wxWindow
*parent
,
189 const wxString
& message
,
190 const wxString
& caption
,
191 const wxString
& value
,
194 : wxTextEntryDialog(parent
, message
, caption
, value
,
195 style
| wxTE_PASSWORD
, pos
)
197 // Only change from wxTextEntryDialog is the password style
200 #endif // wxUSE_TEXTDLG