validate.cpp
来自「A*算法 A*算法 A*算法 A*算法A*算法A*算法」· C++ 代码 · 共 54 行
CPP
54 行
/////////////////////////////////////////////////////////////////////////////
// Name: validate.cpp
// Purpose: wxValidator
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// RCS-ID: $Id: validate.cpp,v 1.14 2004/09/24 14:32:33 ABX Exp $
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "validate.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/defs.h"
#endif
#if wxUSE_VALIDATORS
#ifndef WX_PRECOMP
#include "wx/window.h"
#endif
#include "wx/validate.h"
const wxValidator wxDefaultValidator;
IMPLEMENT_DYNAMIC_CLASS(wxValidator, wxEvtHandler)
// VZ: personally, I think true would be more appropriate - these bells are
// _annoying_
bool wxValidator::ms_isSilent = false;
wxValidator::wxValidator()
{
m_validatorWindow = (wxWindow *) NULL;
}
wxValidator::~wxValidator()
{
}
#endif
// wxUSE_VALIDATORS
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?