]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/textdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTextEntryDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "textdlgg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/dialog.h"
36 #include "wx/button.h"
37 #include "wx/stattext.h"
38 #include "wx/textctrl.h"
44 #include "wx/statline.h"
47 #include "wx/generic/textdlgg.h"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 static const int wxID_TEXT
= 3000;
55 // ---------------------------------------------------------------------------
57 // ---------------------------------------------------------------------------
59 /* Macro for avoiding #ifdefs when value have to be different depending on size of
63 #if defined(__SMARTPHONE__)
64 #define wxLARGESMALL(large,small) small
66 #define wxLARGESMALL(large,small) large
69 // ============================================================================
71 // ============================================================================
73 // ----------------------------------------------------------------------------
75 // ----------------------------------------------------------------------------
77 BEGIN_EVENT_TABLE(wxTextEntryDialog
, wxDialog
)
78 EVT_BUTTON(wxID_OK
, wxTextEntryDialog::OnOK
)
81 IMPLEMENT_CLASS(wxTextEntryDialog
, wxDialog
)
83 wxTextEntryDialog::wxTextEntryDialog(wxWindow
*parent
,
84 const wxString
& message
,
85 const wxString
& caption
,
86 const wxString
& value
,
89 : wxDialog(parent
, wxID_ANY
, caption
, pos
, wxDefaultSize
,
90 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
),
93 m_dialogStyle
= style
;
98 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
101 topsizer
->Add( CreateTextSizer( message
), 0, wxALL
, wxLARGESMALL(10,0) );
104 m_textctrl
= new wxTextCtrl(this, wxID_TEXT
, value
,
105 wxDefaultPosition
, wxSize(300, wxDefaultCoord
),
106 style
& ~wxTextEntryDialogStyle
);
107 topsizer
->Add( m_textctrl
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, wxLARGESMALL(15,0) );
110 wxTextValidator
validator( wxFILTER_NONE
, &m_value
);
111 m_textctrl
->SetValidator( validator
);
115 #ifdef __SMARTPHONE__
117 SetRightMenu(wxID_CANCEL
, _("Cancel"));
119 #else // __SMARTPHONE__/!__SMARTPHONE__
123 topsizer
->Add( new wxStaticLine( this, wxID_ANY
), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
127 topsizer
->Add( CreateButtonSizer( style
), 0, wxCENTRE
| wxALL
, 10 );
129 #endif // !__SMARTPHONE__
131 SetAutoLayout( true );
132 SetSizer( topsizer
);
134 topsizer
->SetSizeHints( this );
135 topsizer
->Fit( this );
137 if ( ( style
& wxCENTRE
) == wxCENTRE
)
140 m_textctrl
->SetSelection(-1, -1);
141 m_textctrl
->SetFocus();
146 void wxTextEntryDialog::OnOK(wxCommandEvent
& WXUNUSED(event
) )
149 if( Validate() && TransferDataFromWindow() )
154 m_value
= m_textctrl
->GetValue();
161 void wxTextEntryDialog::SetValue(const wxString
& val
)
165 m_textctrl
->SetValue(val
);
169 void wxTextEntryDialog::SetTextValidator( long style
)
171 wxTextValidator
validator( style
, &m_value
);
172 m_textctrl
->SetValidator( validator
);
175 void wxTextEntryDialog::SetTextValidator( wxTextValidator
& validator
)
177 m_textctrl
->SetValidator( validator
);
183 #endif // wxUSE_TEXTDLG