1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGetNumberFromUser implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "numdlgg.cpp"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/dialog.h"
38 #include "wx/button.h"
39 #include "wx/stattext.h"
40 #include "wx/textctrl.h"
46 #include "wx/statline.h"
49 #if !defined(__WIN16__) && wxUSE_SPINCTRL
50 #include "wx/spinctrl.h"
53 // this is where wxGetNumberFromUser() is declared
54 #include "wx/textdlg.h"
57 // wxTextCtrl will do instead of wxSpinCtrl if we don't have it
58 #define wxSpinCtrl wxTextCtrl
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 class WXDLLEXPORT wxNumberEntryDialog
: public wxDialog
68 wxNumberEntryDialog(wxWindow
*parent
,
69 const wxString
& message
,
70 const wxString
& prompt
,
71 const wxString
& caption
,
72 long value
, long min
, long max
,
75 long GetValue() const { return m_value
; }
77 // implementation only
78 void OnOK(wxCommandEvent
& event
);
79 void OnCancel(wxCommandEvent
& event
);
82 wxSpinCtrl
*m_spinctrl
;
84 long m_value
, m_min
, m_max
;
90 // ============================================================================
92 // ============================================================================
94 // ----------------------------------------------------------------------------
95 // wxNumberEntryDialog
96 // ----------------------------------------------------------------------------
98 BEGIN_EVENT_TABLE(wxNumberEntryDialog
, wxDialog
)
99 EVT_BUTTON(wxID_OK
, wxNumberEntryDialog::OnOK
)
100 EVT_BUTTON(wxID_CANCEL
, wxNumberEntryDialog::OnCancel
)
103 wxNumberEntryDialog::wxNumberEntryDialog(wxWindow
*parent
,
104 const wxString
& message
,
105 const wxString
& prompt
,
106 const wxString
& caption
,
111 : wxDialog(parent
, -1, caption
,
113 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
121 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
124 topsizer
->Add( CreateTextSizer( message
), 0, wxALL
, 10 );
126 // 2) prompt and text ctrl
127 wxBoxSizer
*inputsizer
= new wxBoxSizer( wxHORIZONTAL
);
129 if (!prompt
.IsEmpty())
130 inputsizer
->Add( new wxStaticText( this, -1, prompt
), 0, wxCENTER
| wxLEFT
, 10 );
133 valStr
.Printf(wxT("%lu"), m_value
);
134 m_spinctrl
= new wxSpinCtrl(this, -1, valStr
, wxDefaultPosition
, wxSize( 140, -1 ) );
135 #if !defined(__WIN16__) && wxUSE_SPINCTRL
136 m_spinctrl
->SetRange((int)m_min
, (int)m_max
);
138 inputsizer
->Add( m_spinctrl
, 1, wxCENTER
| wxLEFT
| wxRIGHT
, 10 );
140 topsizer
->Add( inputsizer
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 5 );
144 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
148 topsizer
->Add( CreateButtonSizer( wxOK
|wxCANCEL
), 0, wxCENTRE
| wxALL
, 10 );
150 SetSizer( topsizer
);
151 SetAutoLayout( TRUE
);
153 topsizer
->SetSizeHints( this );
154 topsizer
->Fit( this );
158 m_spinctrl
->SetFocus();
163 void wxNumberEntryDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
166 wxString tmp
= m_spinctrl
->GetValue();
167 if ( wxSscanf(tmp
, _T("%ld"), &m_value
) != 1 )
171 m_value
= m_spinctrl
->GetValue();
173 if ( m_value
< m_min
|| m_value
> m_max
)
175 // not a number or out of range
182 void wxNumberEntryDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
186 EndModal(wxID_CANCEL
);
189 // ----------------------------------------------------------------------------
191 // ----------------------------------------------------------------------------
193 // wxGetTextFromUser is in utilscmn.cpp
195 long wxGetNumberFromUser(const wxString
& msg
,
196 const wxString
& prompt
,
197 const wxString
& title
,
204 wxNumberEntryDialog
dialog(parent
, msg
, prompt
, title
,
205 value
, min
, max
, pos
);
206 (void)dialog
.ShowModal();
208 return dialog
.GetValue();
211 #endif // wxUSE_NUMBERDLG