2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/radiobut.h
|
|
|
|
// Purpose: wxRadioButton declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10.09.00
|
2001-07-02 15:42:27 -04:00
|
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_RADIOBUT_H_
|
|
|
|
#define _WX_UNIV_RADIOBUT_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2020-09-21 11:59:22 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxRadioButton : public wxRadioButtonBase
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors
|
2004-01-15 08:49:22 -05:00
|
|
|
wxRadioButton() { Init(); }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
wxRadioButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxRadioButtonNameStr))
|
2004-01-15 08:49:22 -05:00
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
|
|
|
}
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxRadioButtonNameStr));
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2020-09-21 10:08:16 -04:00
|
|
|
// (re)implement pure virtuals from wxRadioButtonBase
|
|
|
|
virtual void SetValue(bool value) wxOVERRIDE { return wxCheckBox::SetValue(value); }
|
|
|
|
virtual bool GetValue() const wxOVERRIDE { return wxCheckBox::GetValue(); }
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// override some base class methods
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual void ChangeValue(bool value) wxOVERRIDE;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
protected:
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual wxBorder GetDefaultBorder() const wxOVERRIDE { return wxBORDER_NONE; }
|
2007-11-14 09:44:13 -05:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// implement our own drawing
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual void DoDraw(wxControlRenderer *renderer) wxOVERRIDE;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// we use the radio button bitmaps for size calculation
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual wxSize GetBitmapSize() const wxOVERRIDE;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// the radio button can only be cleared using this method, not
|
|
|
|
// ChangeValue() above - and it is protected as it can only be called by
|
|
|
|
// another radiobutton
|
|
|
|
void ClearValue();
|
|
|
|
|
|
|
|
// called when the radio button becomes checked: we clear all the buttons
|
|
|
|
// in the same group with us here
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual void OnCheck() wxOVERRIDE;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// send event about radio button selection
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual void SendEvent() wxOVERRIDE;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxRadioButton);
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_RADIOBUT_H_
|