1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: valtext.h
|
|
|
|
// Purpose: wxTextValidator class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 29/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Julian Smart
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_VALTEXTH__
|
|
|
|
#define _WX_VALTEXTH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-08-31 11:29:13 +00:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#pragma interface "valtext.h"
|
|
|
|
#endif
|
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_VALIDATORS
|
1999-06-01 15:32:12 +00:00
|
|
|
|
2002-06-23 16:56:40 +00:00
|
|
|
#include "wx/textctrl.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/validate.h"
|
|
|
|
|
|
|
|
#define wxFILTER_NONE 0x0000
|
|
|
|
#define wxFILTER_ASCII 0x0001
|
|
|
|
#define wxFILTER_ALPHA 0x0002
|
|
|
|
#define wxFILTER_ALPHANUMERIC 0x0004
|
|
|
|
#define wxFILTER_NUMERIC 0x0008
|
|
|
|
#define wxFILTER_INCLUDE_LIST 0x0010
|
|
|
|
#define wxFILTER_EXCLUDE_LIST 0x0020
|
2002-04-14 11:05:18 +00:00
|
|
|
#define wxFILTER_INCLUDE_CHAR_LIST 0x0040
|
|
|
|
#define wxFILTER_EXCLUDE_CHAR_LIST 0x0080
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxTextValidator: public wxValidator
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxTextValidator)
|
|
|
|
public:
|
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
wxTextValidator(long style = wxFILTER_NONE, wxString *val = 0);
|
|
|
|
wxTextValidator(const wxTextValidator& val);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
~wxTextValidator();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00: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).
|
|
|
|
virtual wxObject *Clone() const { return new wxTextValidator(*this); }
|
|
|
|
bool Copy(const wxTextValidator& val);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
// Called when the value in the window must be validated.
|
|
|
|
// This function can pop up an error message.
|
|
|
|
virtual bool Validate(wxWindow *parent);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
// Called to transfer data to the window
|
|
|
|
virtual bool TransferToWindow();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
// Called to transfer data to the window
|
|
|
|
virtual bool TransferFromWindow();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
// ACCESSORS
|
|
|
|
inline long GetStyle() const { return m_validatorStyle; }
|
|
|
|
inline void SetStyle(long style) { m_validatorStyle = style; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
void SetIncludeList(const wxStringList& list);
|
|
|
|
inline wxStringList& GetIncludeList() { return m_includeList; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-12-24 12:12:30 +00:00
|
|
|
void SetExcludeList(const wxStringList& list);
|
|
|
|
inline wxStringList& GetExcludeList() { return m_excludeList; }
|
|
|
|
|
|
|
|
// Filter keystrokes
|
|
|
|
void OnChar(wxKeyEvent& event);
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2002-04-14 11:05:18 +00:00
|
|
|
bool IsInCharIncludeList(const wxString& val);
|
|
|
|
bool IsNotInCharExcludeList(const wxString& val);
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
protected:
|
|
|
|
long m_validatorStyle;
|
|
|
|
wxString * m_stringValue;
|
|
|
|
wxStringList m_includeList;
|
|
|
|
wxStringList m_excludeList;
|
2001-12-24 12:12:30 +00:00
|
|
|
|
|
|
|
bool CheckValidator() const
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( m_validatorWindow, FALSE,
|
|
|
|
_T("No window associated with validator") );
|
|
|
|
wxCHECK_MSG( m_validatorWindow->IsKindOf(CLASSINFO(wxTextCtrl)), FALSE,
|
|
|
|
_T("wxTextValidator is only for wxTextCtrl's") );
|
|
|
|
wxCHECK_MSG( m_stringValue, FALSE,
|
|
|
|
_T("No variable storage for validator") );
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-01-02 23:38:11 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Cannot use
|
|
|
|
// DECLARE_NO_COPY_CLASS(wxTextValidator)
|
|
|
|
// because copy constructor is explicitly declared above;
|
|
|
|
// but no copy assignment operator is defined, so declare
|
|
|
|
// it private to prevent the compiler from defining it:
|
|
|
|
wxTextValidator& operator=(const wxTextValidator&);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-06-15 20:21:59 +00:00
|
|
|
// wxUSE_VALIDATORS
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_VALTEXTH__
|