]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: textdlgg.cpp | |
3 | // Purpose: wxTextEntryDialog | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c50f1fb9 | 9 | // Licence: wxWindows license |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
c50f1fb9 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
c801d85f | 20 | #ifdef __GNUG__ |
c50f1fb9 | 21 | #pragma implementation "textdlgg.h" |
c801d85f KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
c50f1fb9 | 28 | #pragma hdrstop |
c801d85f KB |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_TEXTDLG |
32 | ||
c801d85f | 33 | #ifndef WX_PRECOMP |
c50f1fb9 VZ |
34 | #include "wx/utils.h" |
35 | #include "wx/dialog.h" | |
36 | #include "wx/button.h" | |
37 | #include "wx/stattext.h" | |
38 | #include "wx/textctrl.h" | |
39 | #include "wx/intl.h" | |
92afa2b1 | 40 | #include "wx/sizer.h" |
dcf924a3 RR |
41 | #endif |
42 | ||
43 | #if wxUSE_STATLINE | |
c50f1fb9 | 44 | #include "wx/statline.h" |
c801d85f KB |
45 | #endif |
46 | ||
47 | #include "wx/generic/textdlgg.h" | |
48 | ||
c50f1fb9 VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // constants | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
c49245f8 | 53 | static const int wxID_TEXT = 3000; |
dcf924a3 | 54 | |
c50f1fb9 VZ |
55 | // ============================================================================ |
56 | // implementation | |
57 | // ============================================================================ | |
58 | ||
59 | // ---------------------------------------------------------------------------- | |
c801d85f | 60 | // wxTextEntryDialog |
c50f1fb9 | 61 | // ---------------------------------------------------------------------------- |
c801d85f | 62 | |
c801d85f | 63 | BEGIN_EVENT_TABLE(wxTextEntryDialog, wxDialog) |
c50f1fb9 | 64 | EVT_BUTTON(wxID_OK, wxTextEntryDialog::OnOK) |
c801d85f KB |
65 | END_EVENT_TABLE() |
66 | ||
67 | IMPLEMENT_CLASS(wxTextEntryDialog, wxDialog) | |
c801d85f | 68 | |
c50f1fb9 VZ |
69 | wxTextEntryDialog::wxTextEntryDialog(wxWindow *parent, |
70 | const wxString& message, | |
71 | const wxString& caption, | |
72 | const wxString& value, | |
73 | long style, | |
74 | const wxPoint& pos) | |
75 | : wxDialog(parent, -1, caption, pos, wxDefaultSize, | |
76 | wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL), | |
77 | m_value(value) | |
c801d85f | 78 | { |
92afa2b1 RR |
79 | m_dialogStyle = style; |
80 | m_value = value; | |
81 | ||
82 | wxBeginBusyCursor(); | |
479cd5de | 83 | |
92afa2b1 RR |
84 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); |
85 | ||
86 | // 1) text message | |
87 | topsizer->Add( CreateTextSizer( message ), 0, wxALL, 10 ); | |
479cd5de | 88 | |
92afa2b1 | 89 | // 2) text ctrl |
a294c6d5 VZ |
90 | m_textctrl = new wxTextCtrl(this, wxID_TEXT, value, |
91 | wxDefaultPosition, wxSize(300, -1), | |
92 | style & ~wxTextEntryDialogStyle); | |
92afa2b1 RR |
93 | topsizer->Add( m_textctrl, 1, wxEXPAND | wxLEFT|wxRIGHT, 15 ); |
94 | ||
fc0d5b6b JS |
95 | #if wxUSE_VALIDATORS |
96 | wxTextValidator validator( wxFILTER_NONE, &m_value ); | |
97 | m_textctrl->SetValidator( validator ); | |
98 | #endif | |
99 | // wxUSE_VALIDATORS | |
100 | ||
92afa2b1 RR |
101 | #if wxUSE_STATLINE |
102 | // 3) static line | |
103 | topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 ); | |
104 | #endif | |
105 | ||
106 | // 4) buttons | |
107 | topsizer->Add( CreateButtonSizer( style ), 0, wxCENTRE | wxALL, 10 ); | |
479cd5de | 108 | |
8b17ba72 RR |
109 | SetAutoLayout( TRUE ); |
110 | SetSizer( topsizer ); | |
479cd5de | 111 | |
92afa2b1 RR |
112 | topsizer->SetSizeHints( this ); |
113 | topsizer->Fit( this ); | |
92afa2b1 RR |
114 | |
115 | Centre( wxBOTH ); | |
c801d85f | 116 | |
c50f1fb9 | 117 | m_textctrl->SetFocus(); |
92afa2b1 RR |
118 | |
119 | wxEndBusyCursor(); | |
c801d85f KB |
120 | } |
121 | ||
122 | void wxTextEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event) ) | |
123 | { | |
fc0d5b6b JS |
124 | #if wxUSE_VALIDATORS |
125 | if( Validate() && TransferDataFromWindow() ) | |
126 | { | |
127 | EndModal( wxID_OK ); | |
128 | } | |
129 | #else | |
c50f1fb9 | 130 | m_value = m_textctrl->GetValue(); |
c801d85f | 131 | |
c50f1fb9 | 132 | EndModal(wxID_OK); |
fc0d5b6b JS |
133 | #endif |
134 | // wxUSE_VALIDATORS | |
c801d85f | 135 | } |
1e6feb95 | 136 | |
a8f6ef51 VZ |
137 | void wxTextEntryDialog::SetValue(const wxString& val) |
138 | { | |
139 | m_value = val; | |
140 | ||
141 | m_textctrl->SetValue(val); | |
142 | } | |
143 | ||
fc0d5b6b JS |
144 | #if wxUSE_VALIDATORS |
145 | void wxTextEntryDialog::SetTextValidator( long style ) | |
146 | { | |
147 | wxTextValidator validator( style, &m_value ); | |
148 | m_textctrl->SetValidator( validator ); | |
149 | } | |
150 | ||
151 | void wxTextEntryDialog::SetTextValidator( wxTextValidator& validator ) | |
152 | { | |
153 | m_textctrl->SetValidator( validator ); | |
154 | } | |
155 | ||
156 | #endif | |
157 | // wxUSE_VALIDATORS | |
158 | ||
1e6feb95 | 159 | #endif // wxUSE_TEXTDLG |