]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/numdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGetNumberFromUser implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
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/numdlg.h"
57 // wxTextCtrl will do instead of wxSpinCtrl if we don't have it
58 #define wxSpinCtrl wxTextCtrl
61 // ============================================================================
63 // ============================================================================
65 // ----------------------------------------------------------------------------
66 // wxNumberEntryDialog
67 // ----------------------------------------------------------------------------
69 BEGIN_EVENT_TABLE(wxNumberEntryDialog
, wxDialog
)
70 EVT_BUTTON(wxID_OK
, wxNumberEntryDialog::OnOK
)
71 EVT_BUTTON(wxID_CANCEL
, wxNumberEntryDialog::OnCancel
)
74 wxNumberEntryDialog::wxNumberEntryDialog(wxWindow
*parent
,
75 const wxString
& message
,
76 const wxString
& prompt
,
77 const wxString
& caption
,
82 : wxDialog(parent
, -1, caption
,
84 wxDEFAULT_DIALOG_STYLE
| wxDIALOG_MODAL
)
92 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
95 topsizer
->Add( CreateTextSizer( message
), 0, wxALL
, 10 );
97 // 2) prompt and text ctrl
98 wxBoxSizer
*inputsizer
= new wxBoxSizer( wxHORIZONTAL
);
100 if (!prompt
.IsEmpty())
101 inputsizer
->Add( new wxStaticText( this, -1, prompt
), 0, wxCENTER
| wxLEFT
, 10 );
104 valStr
.Printf(wxT("%ld"), m_value
);
105 m_spinctrl
= new wxSpinCtrl(this, -1, valStr
, wxDefaultPosition
, wxSize( 140, -1 ) );
106 #if !defined(__WIN16__) && wxUSE_SPINCTRL
107 m_spinctrl
->SetRange((int)m_min
, (int)m_max
);
109 inputsizer
->Add( m_spinctrl
, 1, wxCENTER
| wxLEFT
| wxRIGHT
, 10 );
111 topsizer
->Add( inputsizer
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 5 );
115 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
119 topsizer
->Add( CreateButtonSizer( wxOK
|wxCANCEL
), 0, wxCENTRE
| wxALL
, 10 );
121 SetSizer( topsizer
);
122 SetAutoLayout( TRUE
);
124 topsizer
->SetSizeHints( this );
125 topsizer
->Fit( this );
129 m_spinctrl
->SetSelection(-1, -1);
130 m_spinctrl
->SetFocus();
135 void wxNumberEntryDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
138 wxString tmp
= m_spinctrl
->GetValue();
139 if ( wxSscanf(tmp
, _T("%ld"), &m_value
) != 1 )
140 EndModal(wxID_CANCEL
);
143 m_value
= m_spinctrl
->GetValue();
145 if ( m_value
< m_min
|| m_value
> m_max
)
147 // not a number or out of range
148 EndModal(wxID_CANCEL
);
154 void wxNumberEntryDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
156 EndModal(wxID_CANCEL
);
159 // ----------------------------------------------------------------------------
161 // ----------------------------------------------------------------------------
163 // wxGetTextFromUser is in utilscmn.cpp
165 long wxGetNumberFromUser(const wxString
& msg
,
166 const wxString
& prompt
,
167 const wxString
& title
,
174 wxNumberEntryDialog
dialog(parent
, msg
, prompt
, title
,
175 value
, min
, max
, pos
);
176 if (dialog
.ShowModal() == wxID_OK
)
177 return dialog
.GetValue();
182 #endif // wxUSE_NUMBERDLG