-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxBupDestPathValidator.cpp
424 lines (369 loc) · 12.1 KB
/
wxBupDestPathValidator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*-----------------------------------------------------------------
* Name: xxx.cpp
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*---------------------------------------------------------------- */
/*----------------------------------------------------------------
* Standard wxWidgets headers
*---------------------------------------------------------------- */
// Note __VISUALC__ is defined by wxWidgets, not by MSVC IDE
// and thus won't be defined until some wxWidgets headers are included
#if defined( _MSC_VER )
# if defined ( _DEBUG )
// this statement NEEDS to go BEFORE all headers
# define _CRTDBG_MAP_ALLOC
# include <stdlib.h>
# include <crtdbg.h>
# endif
#endif
#include "wxBupPreProcDefsh.h" // MUST be first
// ------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
/* For all others, include the necessary headers
* (this file is usually all you need because it
* includes almost all "standard" wxWidgets headers) */
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
// ------------------------------------------------------------------
//#include "wxMetah.h"
#include "wxBupFrameh.h"
#include "wxBupDestPathValidatorh.h"
//#include "wx/combo.h"
// ------------------------------------------------------------------
#if defined( _MSC_VER )
// only good for MSVC
// this block needs to AFTER all headers
# include <stdlib.h>
# include <crtdbg.h>
# ifdef _DEBUG
# ifndef DBG_NEW
# define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
# define new DBG_NEW
# endif
# endif
#endif
// ------------------------------------------------------------------
// ----------------------------------------------------------------------------
// global helpers
// ----------------------------------------------------------------------------
#if 1
static bool wxIsNumeric(const wxString& val)
{
for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i )
{
// Allow for "," (French) as well as "." -- in future we should
// use wxSystemSettings or other to do better localisation
if ((!wxIsdigit(*i)) &&
(*i != wxS('.')) && (*i != wxS(',')) && (*i != wxS('e')) &&
(*i != wxS('E')) && (*i != wxS('+')) && (*i != wxS('-')))
return false;
}
return true;
}
#endif
// ----------------------------------------------------------------------------
// wxTextValidator
// ----------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(MyCellTextValidator, wxValidator)
BEGIN_EVENT_TABLE(MyCellTextValidator, wxValidator)
EVT_CHAR(MyCellTextValidator::OnChar)
END_EVENT_TABLE()
MyCellTextValidator::MyCellTextValidator(long style, wxString *val)
{
m_stringValue = val;
SetStyle(style);
m_lCurLen = 0;
m_iLastKeyCode = 0;
}
MyCellTextValidator::MyCellTextValidator(const MyCellTextValidator& val)
: wxValidator()
{
Copy(val);
m_lCurLen = 0;
m_iLastKeyCode = 0;
}
// ------------------------------------------------------------------
void MyCellTextValidator::SetMaxLen( long lLen )
{
m_lMaxLen = lLen;
}
// ------------------------------------------------------------------
void MyCellTextValidator::SetCurLen( long lLen )
{
m_lCurLen = lLen;
}
// ------------------------------------------------------------------
void MyCellTextValidator::SetStyle(long style)
{
m_validatorStyle = style;
#if wxDEBUG_LEVEL
int check;
check = (int)HasFlag(wxFILTER_ALPHA) + (int)HasFlag(wxFILTER_ALPHANUMERIC) +
(int)HasFlag(wxFILTER_DIGITS) + (int)HasFlag(wxFILTER_NUMERIC);
wxASSERT_MSG(check <= 1,
"It makes sense to use only one of the wxFILTER_ALPHA/wxFILTER_ALPHANUMERIC/"
"wxFILTER_SIMPLE_NUMBER/wxFILTER_NUMERIC styles");
wxASSERT_MSG(((int)HasFlag(wxFILTER_INCLUDE_LIST) + (int)HasFlag(wxFILTER_INCLUDE_CHAR_LIST) <= 1) &&
((int)HasFlag(wxFILTER_EXCLUDE_LIST) + (int)HasFlag(wxFILTER_EXCLUDE_CHAR_LIST) <= 1),
"Using both wxFILTER_[IN|EX]CLUDE_LIST _and_ wxFILTER_[IN|EX]CLUDE_CHAR_LIST "
"doesn't work since wxTextValidator internally uses the same array for both");
check = (int)HasFlag(wxFILTER_INCLUDE_LIST) + (int)HasFlag(wxFILTER_INCLUDE_CHAR_LIST) +
(int)HasFlag(wxFILTER_EXCLUDE_LIST) + (int)HasFlag(wxFILTER_EXCLUDE_CHAR_LIST);
wxASSERT_MSG(check <= 1,
"Using both an include/exclude list may lead to unexpected results");
#endif // wxDEBUG_LEVEL
}
// ------------------------------------------------------------------
bool MyCellTextValidator::Copy(const MyCellTextValidator& val)
{
wxValidator::Copy(val);
m_validatorStyle = val.m_validatorStyle;
m_stringValue = val.m_stringValue;
m_includes = val.m_includes;
m_excludes = val.m_excludes;
return true;
}
// ------------------------------------------------------------------
wxTextEntry *MyCellTextValidator::GetTextEntry()
{
#if wxUSE_TEXTCTRL
if (wxDynamicCast(m_validatorWindow, wxTextCtrl))
{
return (wxTextCtrl*)m_validatorWindow;
}
#endif
#if 0
#if wxUSE_COMBOBOX
if (wxDynamicCast(m_validatorWindow, wxComboBox))
{
return (wxComboBox*)m_validatorWindow;
}
#endif
#if wxUSE_COMBOCTRL
if (wxDynamicCast(m_validatorWindow, wxComboCtrl))
{
return (wxComboCtrl*)m_validatorWindow;
}
#endif
#endif
wxFAIL_MSG(
"wxTextValidator can only be used with wxTextCtrl, wxComboBox, "
"or wxComboCtrl"
);
return NULL;
}
// ------------------------------------------------------------------
// Called when the value in the window must be validated.
// This function can pop up an error message.
bool MyCellTextValidator::Validate(wxWindow *parent)
{
// If window is disabled, simply return
if ( !m_validatorWindow->IsEnabled() )
return true;
wxTextEntry * const text = GetTextEntry();
if ( !text )
return false;
wxString val(text->GetValue());
wxString errormsg;
if ( HasFlag(wxFILTER_EMPTY) && val.empty() )
{
errormsg = _("Required information entry is empty.");
}
else if ( !(errormsg = IsValid(val)).empty() )
{
// NB: this format string should always contain exactly one '%s'
wxString buf;
buf.Printf(errormsg, val.c_str());
errormsg = buf;
}
if ( !errormsg.empty() )
{
m_validatorWindow->SetFocus();
wxMessageBox(errormsg, _("Validation conflict"),
wxOK | wxICON_EXCLAMATION, parent);
return false;
}
return true;
}
// ------------------------------------------------------------------
// Called to transfer data to the window
bool MyCellTextValidator::TransferToWindow()
{
if ( m_stringValue )
{
wxTextEntry * const text = GetTextEntry();
if ( !text )
return false;
text->SetValue(*m_stringValue);
}
return true;
}
// ------------------------------------------------------------------
// Called to transfer data to the window
bool MyCellTextValidator::TransferFromWindow()
{
if ( m_stringValue )
{
wxTextEntry * const text = GetTextEntry();
if ( !text )
return false;
*m_stringValue = text->GetValue();
}
return true;
}
// ------------------------------------------------------------------
// IRIX mipsPro refuses to compile wxStringCheck<func>() if func is inline so
// let's work around this by using this non-template function instead of
// wxStringCheck(). And while this might be fractionally less efficient because
// the function call won't be inlined like this, we don't care enough about
// this to add extra #ifs for non-IRIX case.
namespace
{
bool CheckString(bool (*func)(const wxUniChar&), const wxString& str)
{
for ( wxString::const_iterator i = str.begin(); i != str.end(); ++i )
{
if ( !func(*i) )
return false;
}
return true;
}
} // anonymous namespace
// ------------------------------------------------------------------
wxString MyCellTextValidator::IsValid(const wxString& val) const
{
// wxFILTER_EMPTY is checked for in wxTextValidator::Validate
if ( HasFlag(wxFILTER_ASCII) && !val.IsAscii() )
return _("'%s' should only contain ASCII characters.");
if ( HasFlag(wxFILTER_ALPHA) && !CheckString(wxIsalpha, val) )
return _("'%s' should only contain alphabetic characters.");
if ( HasFlag(wxFILTER_ALPHANUMERIC) && !CheckString(wxIsalnum, val) )
return _("'%s' should only contain alphabetic or numeric characters.");
if ( HasFlag(wxFILTER_DIGITS) && !CheckString(wxIsdigit, val) )
return _("'%s' should only contain digits.");
if ( HasFlag(wxFILTER_NUMERIC) && !wxIsNumeric(val) )
return _("'%s' should be numeric.");
if ( HasFlag(wxFILTER_INCLUDE_LIST) && m_includes.Index(val) == wxNOT_FOUND )
return _("'%s' is invalid");
if ( HasFlag(wxFILTER_INCLUDE_CHAR_LIST) && !ContainsOnlyIncludedCharacters(val) )
return _("'%s' is invalid");
if ( HasFlag(wxFILTER_EXCLUDE_LIST) && m_excludes.Index(val) != wxNOT_FOUND )
return _("'%s' is invalid");
if ( HasFlag(wxFILTER_EXCLUDE_CHAR_LIST) && ContainsExcludedCharacters(val) )
return _("'%s' is invalid");
return wxEmptyString;
}
// ------------------------------------------------------------------
bool MyCellTextValidator::ContainsOnlyIncludedCharacters(const wxString& val) const
{
for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i )
{
if (m_includes.Index((wxString) *i) == wxNOT_FOUND)
// one character of 'val' is NOT present in m_includes...
return false;
}
// all characters of 'val' are present in m_includes
return true;
}
// ------------------------------------------------------------------
bool MyCellTextValidator::ContainsExcludedCharacters(const wxString& val) const
{
for ( wxString::const_iterator i = val.begin(); i != val.end(); ++i )
{
if (m_excludes.Index((wxString) *i) != wxNOT_FOUND)
// one character of 'val' is present in m_excludes...
return true;
}
// all characters of 'val' are NOT present in m_excludes
return false;
}
//
void MyCellTextValidator::SetCharIncludes(const wxString& chars)
{
wxArrayString arr;
for ( wxString::const_iterator i = chars.begin(); i != chars.end(); ++i )
arr.Add(*i);
SetIncludes(arr);
}
// ------------------------------------------------------------------
void MyCellTextValidator::SetCharExcludes(const wxString& chars)
{
wxArrayString arr;
for ( wxString::const_iterator i = chars.begin(); i != chars.end(); ++i )
arr.Add(*i);
SetExcludes(arr);
}
// ==================================================================
void MyCellTextValidator::OnChar(wxKeyEvent& event)
{
if (!m_validatorWindow)
{
event.Skip();
return;
}
int keyCode = event.GetKeyCode();
#if 1
// ignore all but enter for now
// But NOTE: pressing the 'Enter' key will open a dir selection dialog
if (keyCode != WXK_RETURN )
{
m_iLastKeyCode = keyCode;
event.Skip();
return;
}
#else
// we don't filter special keys and delete
if (/*keyCode < WXK_SPACE || keyCode == WXK_DELETE ||*/ keyCode >= WXK_START)
{
m_iLastKeyCode = keyCode;
event.Skip();
return;
}
#endif
// get the current contents
wxString wsText;
#if 1
wxTextCtrl *pWinText = (wxTextCtrl *)event.GetEventObject();
#else
wxTextCtrl *pWinText =
(wxTextCtrl *)wxGetApp().m_frame->FindWindowById( wxID_GRID_CELL_EDITOR_TEXT );
#endif
wsText = pWinText->GetValue();
#if 0
m_lCurLen = wsText.Len();
/**
* these fudges are needed for the count to be accurate.
* It is also imperative to NOT give this text control any of the wxTE_RICH styles.
* These fudges will NOT work with those styles.
*/
if ( keyCode == WXK_BACK )
m_lCurLen--;
else
m_lCurLen++;
// update the displayed value
wxString wsT;
wxStaticText *pWin =
(wxStaticText *)wxGetApp().m_frame->FindWindowById( wxID_GRID_CELL_EDITOR_CUR_LEN );
wsT.Printf( _T("%ld" ), m_lCurLen );
pWin->SetLabel( wsT );
if( m_lCurLen >= m_lMaxLen )
{
if ( !wxValidator::IsSilent() )
wxBell();
// eat message
m_iLastKeyCode = keyCode;
return;
}
m_iLastKeyCode = keyCode;
#endif
event.Skip(); // pass on the keycode
}
// ------------------------------- eof ------------------------------