2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: valtext.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxTextValidator
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2009-01-09 12:43:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Styles used by wxTextValidator.
|
|
|
|
*/
|
|
|
|
enum wxTextValidatorStyle
|
|
|
|
{
|
|
|
|
/// No filtering takes place.
|
|
|
|
wxFILTER_NONE,
|
|
|
|
|
2009-01-31 21:27:27 +00:00
|
|
|
/// Non-ASCII characters are filtered out. See wxString::IsAscii.
|
2009-01-09 12:43:20 +00:00
|
|
|
wxFILTER_ASCII,
|
|
|
|
|
|
|
|
/// Non-alpha characters are filtered out.
|
2009-01-31 21:27:27 +00:00
|
|
|
/// Uses the wxWidgets wrapper for the standard CRT function @c isalpha
|
|
|
|
/// (which is locale-dependent) on all characters of the string.
|
2009-01-09 12:43:20 +00:00
|
|
|
wxFILTER_ALPHA,
|
|
|
|
|
|
|
|
/// Non-alphanumeric characters are filtered out.
|
2009-01-31 21:27:27 +00:00
|
|
|
/// Uses the wxWidgets wrapper for the standard CRT function @c isalnum
|
|
|
|
/// (which is locale-dependent) on all characters of the string.
|
2009-01-09 12:43:20 +00:00
|
|
|
wxFILTER_ALPHANUMERIC,
|
|
|
|
|
|
|
|
/// Non-numeric characters are filtered out.
|
2009-01-31 21:27:27 +00:00
|
|
|
/// Uses the wxWidgets wrapper for the standard CRT function @c isdigit
|
|
|
|
/// (which is locale-dependent) on all characters of the string.
|
|
|
|
wxFILTER_SIMPLE_NUMBER,
|
|
|
|
|
|
|
|
/// Non-numeric characters are filtered out.
|
|
|
|
/// Works like @c wxFILTER_SIMPLE_NUMBER but allows also decimal points,
|
|
|
|
/// minus/plus signs and the 'e' or 'E' character to input exponents.
|
|
|
|
/// Note that this is not the same behaviour of wxString::IsNumber().
|
2009-01-09 12:43:20 +00:00
|
|
|
wxFILTER_NUMERIC,
|
|
|
|
|
|
|
|
/// Use an include list. The validator checks if the user input is on
|
|
|
|
/// the list, complaining if not. See wxTextValidator::SetIncludes().
|
|
|
|
wxFILTER_INCLUDE_LIST,
|
|
|
|
|
|
|
|
/// Use an exclude list. The validator checks if the user input is on
|
|
|
|
/// the list, complaining if it is. See wxTextValidator::SetExcludes().
|
|
|
|
wxFILTER_EXCLUDE_LIST,
|
|
|
|
|
|
|
|
/// Use an include list. The validator checks if each input character is
|
|
|
|
/// in the list (one character per list element), complaining if not.
|
|
|
|
/// See wxTextValidator::SetIncludes().
|
|
|
|
wxFILTER_INCLUDE_CHAR_LIST,
|
|
|
|
|
|
|
|
/// Use an include list. The validator checks if each input character is
|
|
|
|
/// in the list (one character per list element), complaining if it is.
|
|
|
|
/// See wxTextValidator::SetExcludes().
|
|
|
|
wxFILTER_EXCLUDE_CHAR_LIST
|
|
|
|
};
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
/**
|
|
|
|
@class wxTextValidator
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
wxTextValidator validates text controls, providing a variety of filtering
|
|
|
|
behaviours.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-22 06:01:48 +00:00
|
|
|
For more information, please see @ref overview_validator.
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxcore}
|
|
|
|
@category{validator}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-22 06:01:48 +00:00
|
|
|
@see @ref overview_validator, wxValidator, wxGenericValidator
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
class wxTextValidator : public wxValidator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2008-04-22 06:01:48 +00:00
|
|
|
Default constructor.
|
|
|
|
*/
|
|
|
|
wxTextValidator(const wxTextValidator& validator);
|
2009-01-09 12:43:20 +00:00
|
|
|
|
2008-04-22 06:01:48 +00:00
|
|
|
/**
|
|
|
|
Constructor taking a style and optional pointer to a wxString variable.
|
2008-03-20 13:45:17 +00:00
|
|
|
|
2008-03-08 14:43:31 +00:00
|
|
|
@param style
|
2009-01-09 12:43:20 +00:00
|
|
|
One of the ::wxTextValidatorStyle styles.
|
2008-03-08 14:43:31 +00:00
|
|
|
@param valPtr
|
2008-04-22 06:01:48 +00:00
|
|
|
A pointer to a wxString variable that contains the value. This
|
|
|
|
variable should have a lifetime equal to or longer than the
|
|
|
|
validator lifetime (which is usually determined by the lifetime of
|
|
|
|
the window).
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2009-01-09 12:43:20 +00:00
|
|
|
wxTextValidator(wxTextValidatorStyle style = wxFILTER_NONE, wxString* valPtr = NULL);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Clones the text validator using the copy constructor.
|
|
|
|
*/
|
2008-10-28 15:36:26 +00:00
|
|
|
virtual wxObject* Clone() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns a reference to the exclude list (the list of invalid values).
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
wxArrayString& GetExcludes();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns a reference to the include list (the list of valid values).
|
|
|
|
*/
|
2008-09-27 11:21:10 +00:00
|
|
|
wxArrayString& GetIncludes();
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the validator style.
|
|
|
|
*/
|
2009-01-10 22:42:09 +00:00
|
|
|
wxTextValidatorStyle GetStyle() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
2008-04-22 06:01:48 +00:00
|
|
|
Receives character input from the window and filters it according to
|
|
|
|
the current validator style.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the exclude list (invalid values for the user input).
|
|
|
|
*/
|
|
|
|
void SetExcludes(const wxArrayString& stringList);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the include list (valid values for the user input).
|
|
|
|
*/
|
|
|
|
void SetIncludes(const wxArrayString& stringList);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the validator style.
|
|
|
|
*/
|
2009-01-09 12:43:20 +00:00
|
|
|
void SetStyle(wxTextValidatorStyle style);
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Transfers the value in the text control to the string.
|
|
|
|
*/
|
|
|
|
virtual bool TransferFromWindow();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Transfers the string value to the text control.
|
|
|
|
*/
|
|
|
|
virtual bool TransferToWindow();
|
|
|
|
|
|
|
|
/**
|
2008-04-22 06:01:48 +00:00
|
|
|
Validates the window contents against the include or exclude lists,
|
|
|
|
depending on the validator style.
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
|
|
|
virtual bool Validate(wxWindow* parent);
|
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|