1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/valtext.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose: wxTextValidator class
|
|
|
|
// Author: Julian Smart
|
2009-01-30 12:22:05 -05:00
|
|
|
// Modified by: Francesco Montorsi
|
1998-05-20 10:01:55 -04:00
|
|
|
// Created: 29/01/98
|
|
|
|
// Copyright: (c) 1998 Julian Smart
|
2004-09-24 10:32:35 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-11-02 01:04:26 -04:00
|
|
|
#ifndef _WX_VALTEXT_H_
|
|
|
|
#define _WX_VALTEXT_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-06-15 16:21:59 -04:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2007-11-01 16:52:40 -04:00
|
|
|
#if wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX)
|
1999-06-01 11:32:12 -04:00
|
|
|
|
2007-11-02 01:04:26 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxTextEntry;
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/validate.h"
|
|
|
|
|
2009-01-09 07:43:20 -05:00
|
|
|
enum wxTextValidatorStyle
|
|
|
|
{
|
2009-02-03 16:21:47 -05:00
|
|
|
wxFILTER_NONE = 0x0,
|
|
|
|
wxFILTER_EMPTY = 0x1,
|
|
|
|
wxFILTER_ASCII = 0x2,
|
|
|
|
wxFILTER_ALPHA = 0x4,
|
|
|
|
wxFILTER_ALPHANUMERIC = 0x8,
|
|
|
|
wxFILTER_DIGITS = 0x10,
|
|
|
|
wxFILTER_NUMERIC = 0x20,
|
|
|
|
wxFILTER_INCLUDE_LIST = 0x40,
|
|
|
|
wxFILTER_INCLUDE_CHAR_LIST = 0x80,
|
|
|
|
wxFILTER_EXCLUDE_LIST = 0x100,
|
|
|
|
wxFILTER_EXCLUDE_CHAR_LIST = 0x200
|
2009-01-09 07:43:20 -05:00
|
|
|
};
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxTextValidator: public wxValidator
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-02-03 16:21:47 -05:00
|
|
|
wxTextValidator(long style = wxFILTER_NONE, wxString *val = NULL);
|
2001-12-24 07:12:30 -05:00
|
|
|
wxTextValidator(const wxTextValidator& val);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxTextValidator(){}
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-12-24 07:12:30 -05:00
|
|
|
// Make a clone of this validator (or return NULL) - currently necessary
|
|
|
|
// if you're passing a reference to a validator.
|
|
|
|
// Another possibility is to always pass a pointer to a new validator
|
|
|
|
// (so the calling code can use a copy constructor of the relevant class).
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual wxObject *Clone() const wxOVERRIDE { return new wxTextValidator(*this); }
|
2001-12-24 07:12:30 -05:00
|
|
|
bool Copy(const wxTextValidator& val);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-12-24 07:12:30 -05:00
|
|
|
// Called when the value in the window must be validated.
|
|
|
|
// This function can pop up an error message.
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool Validate(wxWindow *parent) wxOVERRIDE;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-12-24 07:12:30 -05:00
|
|
|
// Called to transfer data to the window
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool TransferToWindow() wxOVERRIDE;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-01-18 12:23:05 -05:00
|
|
|
// Called to transfer data from the window
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool TransferFromWindow() wxOVERRIDE;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2009-01-30 12:22:05 -05:00
|
|
|
// Filter keystrokes
|
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
|
2001-12-24 07:12:30 -05:00
|
|
|
// ACCESSORS
|
2009-02-03 16:21:47 -05:00
|
|
|
inline long GetStyle() const { return m_validatorStyle; }
|
|
|
|
void SetStyle(long style);
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2007-11-01 16:52:40 -04:00
|
|
|
wxTextEntry *GetTextEntry();
|
2005-02-07 18:46:42 -05:00
|
|
|
|
2009-01-31 17:41:51 -05:00
|
|
|
void SetCharIncludes(const wxString& chars);
|
2005-02-07 18:46:42 -05:00
|
|
|
void SetIncludes(const wxArrayString& includes) { m_includes = includes; }
|
|
|
|
inline wxArrayString& GetIncludes() { return m_includes; }
|
|
|
|
|
2009-01-31 17:41:51 -05:00
|
|
|
void SetCharExcludes(const wxString& chars);
|
2005-02-07 18:46:42 -05:00
|
|
|
void SetExcludes(const wxArrayString& excludes) { m_excludes = excludes; }
|
|
|
|
inline wxArrayString& GetExcludes() { return m_excludes; }
|
|
|
|
|
2009-02-03 16:21:47 -05:00
|
|
|
bool HasFlag(wxTextValidatorStyle style) const
|
2009-02-04 09:40:47 -05:00
|
|
|
{ return (m_validatorStyle & style) != 0; }
|
2009-02-03 16:21:47 -05:00
|
|
|
|
2009-01-30 12:22:05 -05:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// returns true if all characters of the given string are present in m_includes
|
2009-01-31 16:27:27 -05:00
|
|
|
bool ContainsOnlyIncludedCharacters(const wxString& val) const;
|
2001-12-24 07:12:30 -05:00
|
|
|
|
2009-02-05 13:50:43 -05:00
|
|
|
// returns true if at least one character of the given string is present in m_excludes
|
2009-01-31 16:27:27 -05:00
|
|
|
bool ContainsExcludedCharacters(const wxString& val) const;
|
2009-01-30 12:22:05 -05:00
|
|
|
|
2009-02-03 16:21:47 -05:00
|
|
|
// returns the error message if the contents of 'val' are invalid
|
|
|
|
virtual wxString IsValid(const wxString& val) const;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
protected:
|
2009-02-03 16:21:47 -05:00
|
|
|
long m_validatorStyle;
|
|
|
|
wxString* m_stringValue;
|
2009-01-09 07:43:20 -05:00
|
|
|
wxArrayString m_includes;
|
|
|
|
wxArrayString m_excludes;
|
2001-12-24 07:12:30 -05:00
|
|
|
|
2003-01-02 18:38:11 -05:00
|
|
|
private:
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_ASSIGN_CLASS(wxTextValidator);
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxTextValidator);
|
|
|
|
wxDECLARE_EVENT_TABLE();
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2007-11-01 16:52:40 -04:00
|
|
|
// wxUSE_VALIDATORS && (wxUSE_TEXTCTRL || wxUSE_COMBOBOX)
|
1999-06-15 16:21:59 -04:00
|
|
|
|
2007-11-02 01:04:26 -04:00
|
|
|
#endif // _WX_VALTEXT_H_
|