]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/generic/numdlgg.cpp
fixed typo : _ instead of wxT
[wxWidgets.git] / src / generic / numdlgg.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: numdlgg.cpp
3// Purpose: wxGetNumberFromUser implementation
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 23.07.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma interface "numdlgg.cpp"
22 #pragma implementation "numdlgg.cpp"
23#endif
24
25// For compilers that support precompilation, includes "wx.h".
26#include "wx/wxprec.h"
27
28#ifdef __BORLANDC__
29 #pragma hdrstop
30#endif
31
32#ifndef WX_PRECOMP
33 #include <stdio.h>
34
35 #include "wx/utils.h"
36 #include "wx/dialog.h"
37 #include "wx/button.h"
38 #include "wx/stattext.h"
39 #include "wx/textctrl.h"
40 #include "wx/intl.h"
41 #include "wx/sizer.h"
42#endif
43
44#if wxUSE_STATLINE
45 #include "wx/statline.h"
46#endif
47
48#include "wx/spinctrl.h"
49
50// this is where wxGetNumberFromUser() is declared
51#include "wx/textdlg.h"
52
53#if !wxUSE_SPINCTRL
54 // wxTextCtrl will do instead of wxSpinCtrl if we don't have it
55 #define wxSpinCtrl wxTextCtrl
56#endif
57
58// ----------------------------------------------------------------------------
59// private classes
60// ----------------------------------------------------------------------------
61
62class WXDLLEXPORT wxNumberEntryDialog : public wxDialog
63{
64public:
65 wxNumberEntryDialog(wxWindow *parent,
66 const wxString& message,
67 const wxString& prompt,
68 const wxString& caption,
69 long value, long min, long max,
70 const wxPoint& pos);
71
72 long GetValue() const { return m_value; }
73
74 // implementation only
75 void OnOK(wxCommandEvent& event);
76 void OnCancel(wxCommandEvent& event);
77
78protected:
79 wxSpinCtrl *m_spinctrl;
80
81 long m_value, m_min, m_max;
82
83private:
84 DECLARE_EVENT_TABLE()
85};
86
87// ============================================================================
88// implementation
89// ============================================================================
90
91// ----------------------------------------------------------------------------
92// wxNumberEntryDialog
93// ----------------------------------------------------------------------------
94
95BEGIN_EVENT_TABLE(wxNumberEntryDialog, wxDialog)
96 EVT_BUTTON(wxID_OK, wxNumberEntryDialog::OnOK)
97 EVT_BUTTON(wxID_CANCEL, wxNumberEntryDialog::OnCancel)
98END_EVENT_TABLE()
99
100wxNumberEntryDialog::wxNumberEntryDialog(wxWindow *parent,
101 const wxString& message,
102 const wxString& prompt,
103 const wxString& caption,
104 long value,
105 long min,
106 long max,
107 const wxPoint& pos)
108 : wxDialog(parent, -1, caption,
109 pos, wxDefaultSize,
110 wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL )
111{
112 m_value = value;
113 m_max = max;
114 m_min = min;
115
116 wxBeginBusyCursor();
117
118 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
119
120 // 1) text message
121 topsizer->Add( CreateTextSizer( message ), 0, wxALL, 10 );
122
123 // 2) prompt and text ctrl
124 wxBoxSizer *inputsizer = new wxBoxSizer( wxHORIZONTAL );
125 // prompt if any
126 if (!prompt.IsEmpty())
127 inputsizer->Add( new wxStaticText( this, -1, prompt ), 0, wxCENTER | wxLEFT, 10 );
128 // spin ctrl
129 wxString valStr;
130 valStr.Printf(wxT("%lu"), m_value);
131 m_spinctrl = new wxSpinCtrl(this, -1, valStr, wxDefaultPosition, wxSize( 140, -1 ) );
132#ifndef __WIN16__
133 m_spinctrl->SetRange((int)m_min, (int)m_max);
134#endif
135 inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 );
136 // add both
137 topsizer->Add( inputsizer, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 );
138
139#if wxUSE_STATLINE
140 // 3) static line
141 topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
142#endif
143
144 // 4) buttons
145 topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxCENTRE | wxALL, 10 );
146
147 SetSizer( topsizer );
148 SetAutoLayout( TRUE );
149
150 topsizer->SetSizeHints( this );
151 topsizer->Fit( this );
152
153 Centre( wxBOTH );
154
155 m_spinctrl->SetFocus();
156
157 wxEndBusyCursor();
158}
159
160void wxNumberEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event))
161{
162#if !wxUSE_SPINCTRL
163 wxString tmp = m_spinctrl->GetValue();
164 if ( wxSscanf(tmp, _T("%ld"), &m_value) != 1 )
165 m_value = -1;
166 else
167#else
168 m_value = m_spinctrl->GetValue();
169#endif
170 if ( m_value < m_min || m_value > m_max )
171 {
172 // not a number or out of range
173 m_value = -1;
174 }
175
176 EndModal(wxID_OK);
177}
178
179void wxNumberEntryDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
180{
181 m_value = -1;
182
183 EndModal(wxID_CANCEL);
184}
185
186// ----------------------------------------------------------------------------
187// global functions
188// ----------------------------------------------------------------------------
189
190// wxGetTextFromUser is in utilscmn.cpp
191
192long wxGetNumberFromUser(const wxString& msg,
193 const wxString& prompt,
194 const wxString& title,
195 long value,
196 long min,
197 long max,
198 wxWindow *parent,
199 const wxPoint& pos)
200{
201 wxNumberEntryDialog dialog(parent, msg, prompt, title,
202 value, min, max, pos);
203 (void)dialog.ShowModal();
204
205 return dialog.GetValue();
206}