]> git.saurik.com Git - wxWidgets.git/blame - src/generic/numdlgg.cpp
dbgrid.cpp dbtree.cpp
[wxWidgets.git] / src / generic / numdlgg.cpp
CommitLineData
31528cd3
VZ
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__
ff83a770
VS
21 #pragma interface "numdlgg.cpp"
22 #pragma implementation "numdlgg.cpp"
31528cd3
VZ
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"
073478b3
RR
41 #include "wx/sizer.h"
42#endif
43
44#if wxUSE_STATLINE
45 #include "wx/statline.h"
31528cd3
VZ
46#endif
47
678cd6de
VZ
48#include "wx/spinctrl.h"
49
31528cd3 50// this is where wxGetNumberFromUser() is declared
470d5a67 51#include "wx/textdlg.h"
31528cd3 52
a7540f46
VZ
53#if !wxUSE_SPINCTRL
54 // wxTextCtrl will do instead of wxSpinCtrl if we don't have it
55 #define wxSpinCtrl wxTextCtrl
56#endif
57
31528cd3
VZ
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:
678cd6de 79 wxSpinCtrl *m_spinctrl;
31528cd3
VZ
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,
8e877c19 110 wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL )
31528cd3 111{
31528cd3
VZ
112 m_value = value;
113 m_max = max;
114 m_min = min;
115
073478b3 116 wxBeginBusyCursor();
678cd6de 117
92afa2b1 118 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
31528cd3 119
073478b3 120 // 1) text message
92afa2b1 121 topsizer->Add( CreateTextSizer( message ), 0, wxALL, 10 );
678cd6de 122
073478b3 123 // 2) prompt and text ctrl
92afa2b1 124 wxBoxSizer *inputsizer = new wxBoxSizer( wxHORIZONTAL );
073478b3
RR
125 // prompt if any
126 if (!prompt.IsEmpty())
127 inputsizer->Add( new wxStaticText( this, -1, prompt ), 0, wxCENTER | wxLEFT, 10 );
31528cd3
VZ
128 // spin ctrl
129 wxString valStr;
223d09f6 130 valStr.Printf(wxT("%lu"), m_value);
678cd6de 131 m_spinctrl = new wxSpinCtrl(this, -1, valStr, wxDefaultPosition, wxSize( 140, -1 ) );
5dd26b08 132#ifndef __WIN16__
479cd5de 133 m_spinctrl->SetRange((int)m_min, (int)m_max);
5dd26b08 134#endif
073478b3 135 inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 );
678cd6de 136 // add both
073478b3
RR
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
073478b3 144 // 4) buttons
92afa2b1 145 topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxCENTRE | wxALL, 10 );
678cd6de 146
073478b3
RR
147 SetSizer( topsizer );
148 SetAutoLayout( TRUE );
149
0ae2df30
RR
150 topsizer->SetSizeHints( this );
151 topsizer->Fit( this );
152
073478b3
RR
153 Centre( wxBOTH );
154
31528cd3 155 m_spinctrl->SetFocus();
073478b3
RR
156
157 wxEndBusyCursor();
31528cd3
VZ
158}
159
a4c97004 160void wxNumberEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event))
31528cd3 161{
a7540f46
VZ
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
678cd6de 168 m_value = m_spinctrl->GetValue();
a7540f46 169#endif
678cd6de 170 if ( m_value < m_min || m_value > m_max )
31528cd3
VZ
171 {
172 // not a number or out of range
173 m_value = -1;
174 }
175
176 EndModal(wxID_OK);
177}
178
a4c97004 179void wxNumberEntryDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
31528cd3
VZ
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}