]> git.saurik.com Git - wxWidgets.git/blame - src/generic/numdlgg.cpp
UMADrawControl is not to be used anymore
[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
6aa89a22 9// Licence: wxWindows licence
31528cd3
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
ff83a770 21 #pragma implementation "numdlgg.cpp"
31528cd3
VZ
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
1e6feb95
VZ
31#if wxUSE_NUMBERDLG
32
31528cd3
VZ
33#ifndef WX_PRECOMP
34 #include <stdio.h>
35
36 #include "wx/utils.h"
37 #include "wx/dialog.h"
38 #include "wx/button.h"
39 #include "wx/stattext.h"
40 #include "wx/textctrl.h"
41 #include "wx/intl.h"
073478b3
RR
42 #include "wx/sizer.h"
43#endif
44
45#if wxUSE_STATLINE
46 #include "wx/statline.h"
31528cd3
VZ
47#endif
48
3a5bcc4d 49#if wxUSE_SPINCTRL
678cd6de 50#include "wx/spinctrl.h"
f6bcfd97 51#endif
678cd6de 52
31528cd3 53// this is where wxGetNumberFromUser() is declared
fc5414a1 54#include "wx/numdlg.h"
31528cd3 55
a7540f46
VZ
56#if !wxUSE_SPINCTRL
57 // wxTextCtrl will do instead of wxSpinCtrl if we don't have it
58 #define wxSpinCtrl wxTextCtrl
59#endif
60
31528cd3
VZ
61// ============================================================================
62// implementation
63// ============================================================================
64
65// ----------------------------------------------------------------------------
66// wxNumberEntryDialog
67// ----------------------------------------------------------------------------
68
69BEGIN_EVENT_TABLE(wxNumberEntryDialog, wxDialog)
70 EVT_BUTTON(wxID_OK, wxNumberEntryDialog::OnOK)
71 EVT_BUTTON(wxID_CANCEL, wxNumberEntryDialog::OnCancel)
72END_EVENT_TABLE()
73
4b5e5cfb
MB
74IMPLEMENT_CLASS(wxNumberEntryDialog, wxDialog)
75
31528cd3
VZ
76wxNumberEntryDialog::wxNumberEntryDialog(wxWindow *parent,
77 const wxString& message,
78 const wxString& prompt,
79 const wxString& caption,
80 long value,
81 long min,
82 long max,
83 const wxPoint& pos)
84 : wxDialog(parent, -1, caption,
85 pos, wxDefaultSize,
8e877c19 86 wxDEFAULT_DIALOG_STYLE | wxDIALOG_MODAL )
31528cd3 87{
31528cd3
VZ
88 m_value = value;
89 m_max = max;
90 m_min = min;
91
073478b3 92 wxBeginBusyCursor();
678cd6de 93
92afa2b1 94 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
31528cd3 95
073478b3 96 // 1) text message
92afa2b1 97 topsizer->Add( CreateTextSizer( message ), 0, wxALL, 10 );
678cd6de 98
073478b3 99 // 2) prompt and text ctrl
92afa2b1 100 wxBoxSizer *inputsizer = new wxBoxSizer( wxHORIZONTAL );
073478b3
RR
101 // prompt if any
102 if (!prompt.IsEmpty())
103 inputsizer->Add( new wxStaticText( this, -1, prompt ), 0, wxCENTER | wxLEFT, 10 );
31528cd3
VZ
104 // spin ctrl
105 wxString valStr;
fc5414a1 106 valStr.Printf(wxT("%ld"), m_value);
678cd6de 107 m_spinctrl = new wxSpinCtrl(this, -1, valStr, wxDefaultPosition, wxSize( 140, -1 ) );
3a5bcc4d 108#if wxUSE_SPINCTRL
479cd5de 109 m_spinctrl->SetRange((int)m_min, (int)m_max);
5dd26b08 110#endif
073478b3 111 inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 );
678cd6de 112 // add both
073478b3
RR
113 topsizer->Add( inputsizer, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 );
114
115#if wxUSE_STATLINE
116 // 3) static line
117 topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
118#endif
119
073478b3 120 // 4) buttons
92afa2b1 121 topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxCENTRE | wxALL, 10 );
678cd6de 122
073478b3
RR
123 SetSizer( topsizer );
124 SetAutoLayout( TRUE );
125
0ae2df30
RR
126 topsizer->SetSizeHints( this );
127 topsizer->Fit( this );
128
073478b3
RR
129 Centre( wxBOTH );
130
8282369a 131 m_spinctrl->SetSelection(-1, -1);
31528cd3 132 m_spinctrl->SetFocus();
073478b3
RR
133
134 wxEndBusyCursor();
31528cd3
VZ
135}
136
a4c97004 137void wxNumberEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event))
31528cd3 138{
a7540f46
VZ
139#if !wxUSE_SPINCTRL
140 wxString tmp = m_spinctrl->GetValue();
141 if ( wxSscanf(tmp, _T("%ld"), &m_value) != 1 )
fc5414a1 142 EndModal(wxID_CANCEL);
a7540f46
VZ
143 else
144#else
678cd6de 145 m_value = m_spinctrl->GetValue();
a7540f46 146#endif
678cd6de 147 if ( m_value < m_min || m_value > m_max )
31528cd3
VZ
148 {
149 // not a number or out of range
fc5414a1 150 EndModal(wxID_CANCEL);
31528cd3
VZ
151 }
152
153 EndModal(wxID_OK);
154}
155
a4c97004 156void wxNumberEntryDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
31528cd3 157{
31528cd3
VZ
158 EndModal(wxID_CANCEL);
159}
160
161// ----------------------------------------------------------------------------
162// global functions
163// ----------------------------------------------------------------------------
164
165// wxGetTextFromUser is in utilscmn.cpp
166
167long wxGetNumberFromUser(const wxString& msg,
168 const wxString& prompt,
169 const wxString& title,
170 long value,
171 long min,
172 long max,
173 wxWindow *parent,
174 const wxPoint& pos)
175{
176 wxNumberEntryDialog dialog(parent, msg, prompt, title,
177 value, min, max, pos);
fc5414a1 178 if (dialog.ShowModal() == wxID_OK)
31528cd3 179 return dialog.GetValue();
fc5414a1
VZ
180
181 return -1;
31528cd3 182}
1e6feb95
VZ
183
184#endif // wxUSE_NUMBERDLG