]>
Commit | Line | Data |
---|---|---|
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 | |
65571936 | 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 | ||
d2cdad17 WS |
61 | // --------------------------------------------------------------------------- |
62 | // macros | |
63 | // --------------------------------------------------------------------------- | |
64 | ||
65 | /* Macro for avoiding #ifdefs when value have to be different depending on size of | |
9a357011 | 66 | device we display on - take it from something like wxDesktopPolicy in the future |
d2cdad17 WS |
67 | */ |
68 | ||
69 | #if defined(__SMARTPHONE__) | |
70 | #define wxLARGESMALL(large,small) small | |
71 | #else | |
72 | #define wxLARGESMALL(large,small) large | |
73 | #endif | |
74 | ||
31528cd3 VZ |
75 | // ============================================================================ |
76 | // implementation | |
77 | // ============================================================================ | |
78 | ||
79 | // ---------------------------------------------------------------------------- | |
80 | // wxNumberEntryDialog | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
83 | BEGIN_EVENT_TABLE(wxNumberEntryDialog, wxDialog) | |
84 | EVT_BUTTON(wxID_OK, wxNumberEntryDialog::OnOK) | |
85 | EVT_BUTTON(wxID_CANCEL, wxNumberEntryDialog::OnCancel) | |
86 | END_EVENT_TABLE() | |
87 | ||
4b5e5cfb MB |
88 | IMPLEMENT_CLASS(wxNumberEntryDialog, wxDialog) |
89 | ||
31528cd3 VZ |
90 | wxNumberEntryDialog::wxNumberEntryDialog(wxWindow *parent, |
91 | const wxString& message, | |
92 | const wxString& prompt, | |
93 | const wxString& caption, | |
94 | long value, | |
95 | long min, | |
96 | long max, | |
97 | const wxPoint& pos) | |
ca65c044 | 98 | : wxDialog(parent, wxID_ANY, caption, |
2a21ac15 | 99 | pos, wxDefaultSize) |
31528cd3 | 100 | { |
31528cd3 VZ |
101 | m_value = value; |
102 | m_max = max; | |
103 | m_min = min; | |
104 | ||
073478b3 | 105 | wxBeginBusyCursor(); |
678cd6de | 106 | |
92afa2b1 | 107 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); |
31528cd3 | 108 | |
073478b3 | 109 | // 1) text message |
92afa2b1 | 110 | topsizer->Add( CreateTextSizer( message ), 0, wxALL, 10 ); |
678cd6de | 111 | |
073478b3 | 112 | // 2) prompt and text ctrl |
92afa2b1 | 113 | wxBoxSizer *inputsizer = new wxBoxSizer( wxHORIZONTAL ); |
073478b3 RR |
114 | // prompt if any |
115 | if (!prompt.IsEmpty()) | |
ca65c044 | 116 | inputsizer->Add( new wxStaticText( this, wxID_ANY, prompt ), 0, wxCENTER | wxLEFT, 10 ); |
31528cd3 VZ |
117 | // spin ctrl |
118 | wxString valStr; | |
fc5414a1 | 119 | valStr.Printf(wxT("%ld"), m_value); |
422d0ff0 | 120 | m_spinctrl = new wxSpinCtrl(this, wxID_ANY, valStr, wxDefaultPosition, wxSize( 140, wxDefaultCoord ) ); |
3a5bcc4d | 121 | #if wxUSE_SPINCTRL |
479cd5de | 122 | m_spinctrl->SetRange((int)m_min, (int)m_max); |
5dd26b08 | 123 | #endif |
073478b3 | 124 | inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 ); |
678cd6de | 125 | // add both |
073478b3 RR |
126 | topsizer->Add( inputsizer, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 ); |
127 | ||
9a357011 | 128 | // smart phones does not support or do not waste space for wxButtons |
d2cdad17 WS |
129 | #ifdef __SMARTPHONE__ |
130 | ||
131 | SetRightMenu(wxID_CANCEL, _("Cancel")); | |
132 | ||
133 | #else // __SMARTPHONE__/!__SMARTPHONE__ | |
134 | ||
073478b3 RR |
135 | #if wxUSE_STATLINE |
136 | // 3) static line | |
ca65c044 | 137 | topsizer->Add( new wxStaticLine( this, wxID_ANY ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 ); |
073478b3 RR |
138 | #endif |
139 | ||
073478b3 | 140 | // 4) buttons |
acf2ac37 | 141 | topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxEXPAND | wxALL, 10 ); |
678cd6de | 142 | |
d2cdad17 WS |
143 | #endif // !__SMARTPHONE__ |
144 | ||
073478b3 | 145 | SetSizer( topsizer ); |
ca65c044 | 146 | SetAutoLayout( true ); |
073478b3 | 147 | |
0ae2df30 RR |
148 | topsizer->SetSizeHints( this ); |
149 | topsizer->Fit( this ); | |
150 | ||
073478b3 RR |
151 | Centre( wxBOTH ); |
152 | ||
8282369a | 153 | m_spinctrl->SetSelection(-1, -1); |
31528cd3 | 154 | m_spinctrl->SetFocus(); |
073478b3 RR |
155 | |
156 | wxEndBusyCursor(); | |
31528cd3 VZ |
157 | } |
158 | ||
a4c97004 | 159 | void wxNumberEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event)) |
31528cd3 | 160 | { |
a7540f46 VZ |
161 | #if !wxUSE_SPINCTRL |
162 | wxString tmp = m_spinctrl->GetValue(); | |
163 | if ( wxSscanf(tmp, _T("%ld"), &m_value) != 1 ) | |
fc5414a1 | 164 | EndModal(wxID_CANCEL); |
a7540f46 VZ |
165 | else |
166 | #else | |
678cd6de | 167 | m_value = m_spinctrl->GetValue(); |
a7540f46 | 168 | #endif |
678cd6de | 169 | if ( m_value < m_min || m_value > m_max ) |
31528cd3 VZ |
170 | { |
171 | // not a number or out of range | |
cdec37ac | 172 | m_value = -1; |
fc5414a1 | 173 | EndModal(wxID_CANCEL); |
31528cd3 VZ |
174 | } |
175 | ||
176 | EndModal(wxID_OK); | |
177 | } | |
178 | ||
a4c97004 | 179 | void wxNumberEntryDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) |
31528cd3 | 180 | { |
31528cd3 VZ |
181 | EndModal(wxID_CANCEL); |
182 | } | |
183 | ||
184 | // ---------------------------------------------------------------------------- | |
185 | // global functions | |
186 | // ---------------------------------------------------------------------------- | |
187 | ||
188 | // wxGetTextFromUser is in utilscmn.cpp | |
189 | ||
190 | long wxGetNumberFromUser(const wxString& msg, | |
191 | const wxString& prompt, | |
192 | const wxString& title, | |
193 | long value, | |
194 | long min, | |
195 | long max, | |
196 | wxWindow *parent, | |
197 | const wxPoint& pos) | |
198 | { | |
199 | wxNumberEntryDialog dialog(parent, msg, prompt, title, | |
200 | value, min, max, pos); | |
fc5414a1 | 201 | if (dialog.ShowModal() == wxID_OK) |
cdec37ac | 202 | return dialog.GetValue(); |
ca65c044 | 203 | |
fc5414a1 | 204 | return -1; |
31528cd3 | 205 | } |
1e6feb95 VZ |
206 | |
207 | #endif // wxUSE_NUMBERDLG |