We used "depressed" or "selected"; replace both of them with hopefully more clear "checked". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        radiobut.h
 | 
						|
// Purpose:     interface of wxRadioButton
 | 
						|
// Author:      wxWidgets team
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
/**
 | 
						|
    @class wxRadioButton
 | 
						|
 | 
						|
    A radio button item is a button which usually denotes one of several
 | 
						|
    mutually exclusive options. It has a text label next to a (usually) round
 | 
						|
    button.
 | 
						|
 | 
						|
    You can create a group of mutually-exclusive radio buttons by specifying
 | 
						|
    @c wxRB_GROUP for the first in the group. The group ends when another
 | 
						|
    radio button group is created, or there are no more radio buttons.
 | 
						|
 | 
						|
    @beginStyleTable
 | 
						|
    @style{wxRB_GROUP}
 | 
						|
           Marks the beginning of a new group of radio buttons.
 | 
						|
    @style{wxRB_SINGLE}
 | 
						|
           In some circumstances, radio buttons that are not consecutive
 | 
						|
           siblings trigger a hang bug in Windows (only). If this happens, add
 | 
						|
           this style to mark the button as not belonging to a group, and
 | 
						|
           implement the mutually-exclusive group behaviour yourself.
 | 
						|
    @endStyleTable
 | 
						|
 | 
						|
    @beginEventEmissionTable{wxCommandEvent}
 | 
						|
    @event{EVT_RADIOBUTTON(id, func)}
 | 
						|
           Process a @c wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the
 | 
						|
           radiobutton is clicked.
 | 
						|
    @endEventTable
 | 
						|
 | 
						|
    @library{wxcore}
 | 
						|
    @category{ctrl}
 | 
						|
    @appearance{radiobutton.png}
 | 
						|
 | 
						|
    @see @ref overview_events, wxRadioBox, wxCheckBox
 | 
						|
*/
 | 
						|
class wxRadioButton : public wxControl
 | 
						|
{
 | 
						|
public:
 | 
						|
    /**
 | 
						|
        Default constructor.
 | 
						|
 | 
						|
        @see Create(), wxValidator
 | 
						|
    */
 | 
						|
    wxRadioButton();
 | 
						|
 | 
						|
    /**
 | 
						|
        Constructor, creating and showing a radio button.
 | 
						|
 | 
						|
        @param parent
 | 
						|
            Parent window. Must not be @NULL.
 | 
						|
        @param id
 | 
						|
            Window identifier. The value @c wxID_ANY indicates a default value.
 | 
						|
        @param label
 | 
						|
            Label for the radio button.
 | 
						|
        @param pos
 | 
						|
            Window position. If ::wxDefaultPosition is specified then a default
 | 
						|
            position is chosen.
 | 
						|
        @param size
 | 
						|
            Window size. If ::wxDefaultSize is specified then a default size
 | 
						|
            is chosen.
 | 
						|
        @param style
 | 
						|
            Window style. See wxRadioButton.
 | 
						|
        @param validator
 | 
						|
            Window validator.
 | 
						|
        @param name
 | 
						|
            Window name.
 | 
						|
 | 
						|
        @see Create(), wxValidator
 | 
						|
    */
 | 
						|
    wxRadioButton(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);
 | 
						|
 | 
						|
    /**
 | 
						|
        Destructor, destroying the radio button item.
 | 
						|
    */
 | 
						|
    virtual ~wxRadioButton();
 | 
						|
 | 
						|
    /**
 | 
						|
        Creates the choice for two-step construction. See wxRadioButton() for
 | 
						|
        further details.
 | 
						|
    */
 | 
						|
    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);
 | 
						|
 | 
						|
    /**
 | 
						|
        Returns @true if the radio button is checked, @false otherwise.
 | 
						|
    */
 | 
						|
    virtual bool GetValue() const;
 | 
						|
 | 
						|
    /**
 | 
						|
        Sets the radio button to checked or unchecked status. This does not cause a
 | 
						|
        @c wxEVT_COMMAND_RADIOBUTTON_SELECTED event to get emitted.
 | 
						|
 | 
						|
        If the radio button belongs to a radio group exactly one button in the
 | 
						|
        group may be checked and so this method can be only called with @a
 | 
						|
        value set to @true. To uncheck a radio button in a group you must check
 | 
						|
        another button in the same group.
 | 
						|
 | 
						|
        @param value
 | 
						|
            @true to check, @false to uncheck.
 | 
						|
    */
 | 
						|
    virtual void SetValue(bool value);
 | 
						|
};
 | 
						|
 |