mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 19:11:08 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
85 lines
2.8 KiB
C++
85 lines
2.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/valgen.h
|
|
// Purpose: wxGenericValidator class
|
|
// Author: Kevin Smith
|
|
// Created: Jan 22 1999
|
|
// RCS-ID: $Id: valgen.h 67254 2011-03-20 00:14:35Z DS $
|
|
// Copyright: (c) 1999 Julian Smart (assigned from Kevin)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_VALGENH__
|
|
#define _WX_VALGENH__
|
|
|
|
#include "wx/validate.h"
|
|
|
|
#if wxUSE_VALIDATORS
|
|
|
|
class WXDLLIMPEXP_FWD_BASE wxDateTime;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxGenericValidator performs data transfer between many standard controls and
|
|
// variables of the type corresponding to their values.
|
|
//
|
|
// It doesn't do any validation so its name is a slight misnomer.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxGenericValidator: public wxValidator
|
|
{
|
|
public:
|
|
// Different constructors: each of them creates a validator which can only
|
|
// be used with some controls, the comments before each constructor
|
|
// indicate which ones:
|
|
// wxCheckBox, wxRadioButton, wx(Bitmap)ToggleButton
|
|
wxGenericValidator(bool* val);
|
|
// wxChoice, wxGauge, wxRadioBox, wxScrollBar, wxSlider, wxSpinButton
|
|
wxGenericValidator(int* val);
|
|
// wxComboBox, wxTextCtrl, wxButton, wxStaticText (read-only)
|
|
wxGenericValidator(wxString* val);
|
|
// wxListBox, wxCheckListBox
|
|
wxGenericValidator(wxArrayInt* val);
|
|
#if wxUSE_DATETIME
|
|
// wxDatePickerCtrl
|
|
wxGenericValidator(wxDateTime* val);
|
|
#endif // wxUSE_DATETIME
|
|
wxGenericValidator(const wxGenericValidator& copyFrom);
|
|
|
|
virtual ~wxGenericValidator(){}
|
|
|
|
// 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 wxGenericValidator(*this); }
|
|
bool Copy(const wxGenericValidator& val);
|
|
|
|
// Called when the value in the window must be validated: this is not used
|
|
// by this class
|
|
virtual bool Validate(wxWindow * WXUNUSED(parent)) { return true; }
|
|
|
|
// Called to transfer data to the window
|
|
virtual bool TransferToWindow();
|
|
|
|
// Called to transfer data to the window
|
|
virtual bool TransferFromWindow();
|
|
|
|
protected:
|
|
void Initialize();
|
|
|
|
bool* m_pBool;
|
|
int* m_pInt;
|
|
wxString* m_pString;
|
|
wxArrayInt* m_pArrayInt;
|
|
#if wxUSE_DATETIME
|
|
wxDateTime* m_pDateTime;
|
|
#endif // wxUSE_DATETIME
|
|
|
|
private:
|
|
DECLARE_CLASS(wxGenericValidator)
|
|
wxDECLARE_NO_ASSIGN_CLASS(wxGenericValidator);
|
|
};
|
|
|
|
#endif // wxUSE_VALIDATORS
|
|
|
|
#endif // _WX_VALGENH__
|