]> git.saurik.com Git - wxWidgets.git/blame - src/generic/numdlgg.cpp
Added contributed speedup of ConvertToBitmap under Motif, for 8-bit images.
[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
VZ
50// this is where wxGetNumberFromUser() is declared
51#include "wx/generic/textdlgg.h"
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 ) );
55cca868 132 m_spinctrl->SetRange(m_min, m_max);
073478b3 133 inputsizer->Add( m_spinctrl, 1, wxCENTER | wxLEFT | wxRIGHT, 10 );
678cd6de 134 // add both
073478b3
RR
135 topsizer->Add( inputsizer, 1, wxEXPAND | wxLEFT|wxRIGHT, 5 );
136
137#if wxUSE_STATLINE
138 // 3) static line
139 topsizer->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
140#endif
141
073478b3 142 // 4) buttons
92afa2b1 143 topsizer->Add( CreateButtonSizer( wxOK|wxCANCEL ), 0, wxCENTRE | wxALL, 10 );
678cd6de 144
073478b3
RR
145 SetSizer( topsizer );
146 SetAutoLayout( TRUE );
147
0ae2df30
RR
148 topsizer->SetSizeHints( this );
149 topsizer->Fit( this );
150
073478b3
RR
151 Centre( wxBOTH );
152
31528cd3 153 m_spinctrl->SetFocus();
073478b3
RR
154
155 wxEndBusyCursor();
31528cd3
VZ
156}
157
a4c97004 158void wxNumberEntryDialog::OnOK(wxCommandEvent& WXUNUSED(event))
31528cd3 159{
a7540f46
VZ
160#if !wxUSE_SPINCTRL
161 wxString tmp = m_spinctrl->GetValue();
162 if ( wxSscanf(tmp, _T("%ld"), &m_value) != 1 )
163 m_value = -1;
164 else
165#else
678cd6de 166 m_value = m_spinctrl->GetValue();
a7540f46 167#endif
678cd6de 168 if ( m_value < m_min || m_value > m_max )
31528cd3
VZ
169 {
170 // not a number or out of range
171 m_value = -1;
172 }
173
174 EndModal(wxID_OK);
175}
176
a4c97004 177void wxNumberEntryDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
31528cd3
VZ
178{
179 m_value = -1;
180
181 EndModal(wxID_CANCEL);
182}
183
184// ----------------------------------------------------------------------------
185// global functions
186// ----------------------------------------------------------------------------
187
188// wxGetTextFromUser is in utilscmn.cpp
189
190long 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);
201 (void)dialog.ShowModal();
202
203 return dialog.GetValue();
204}