2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/radiobut.h
|
|
|
|
// Purpose: wxRadioButton declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 10.09.00
|
2001-07-02 19:42:27 +00:00
|
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_RADIOBUT_H_
|
|
|
|
#define _WX_UNIV_RADIOBUT_H_
|
|
|
|
|
|
|
|
#include "wx/checkbox.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxRadioButton : public wxCheckBox
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors
|
2004-01-15 13:49:22 +00:00
|
|
|
wxRadioButton() { Init(); }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
wxRadioButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxRadioButtonNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
|
|
|
}
|
2001-06-26 20:59:19 +00: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,
|
|
|
|
const wxString& name = wxRadioButtonNameStr);
|
|
|
|
|
|
|
|
// override some base class methods
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void ChangeValue(bool value) wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
protected:
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxBorder GetDefaultBorder() const wxOVERRIDE { return wxBORDER_NONE; }
|
2007-11-14 14:44:13 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// implement our own drawing
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void DoDraw(wxControlRenderer *renderer) wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// we use the radio button bitmaps for size calculation
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxSize GetBitmapSize() const wxOVERRIDE;
|
2001-06-26 20:59:19 +00: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-30 00:02:23 +00:00
|
|
|
virtual void OnCheck() wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// send event about radio button selection
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void SendEvent() wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxRadioButton);
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_RADIOBUT_H_
|