Document wxDataViewCheckIconText
This will make wrapping it in wxPython easier. Closes #23668. Closes #23669.
This commit is contained in:
parent
7669a7e1bd
commit
691adc8241
1 changed files with 38 additions and 0 deletions
|
|
@ -3782,6 +3782,44 @@ public:
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
@class wxDataViewCheckIconText
|
||||
|
||||
wxDataViewCheckIconText is used by wxDataViewCheckIconTextRenderer for data
|
||||
transfer.
|
||||
|
||||
This class can be converted to and from a wxVariant.
|
||||
|
||||
@library{wxcore}
|
||||
@category{dvc}
|
||||
*/
|
||||
class wxDataViewCheckIconText : public wxDataViewIconText
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
Constructor.
|
||||
*/
|
||||
wxDataViewCheckIconText(
|
||||
const wxString& text = wxEmptyString,
|
||||
const wxBitmapBundle& icon = wxBitmapBundle(),
|
||||
wxCheckBoxState checkedState = wxCHK_UNDETERMINED
|
||||
);
|
||||
wxDataViewCheckIconText(const wxDataViewCheckIconText& other);
|
||||
//@}
|
||||
|
||||
/**
|
||||
Sets the checked state.
|
||||
*/
|
||||
void SetCheckedState(wxCheckBoxState state);
|
||||
|
||||
/**
|
||||
Gets the checked state.
|
||||
*/
|
||||
wxCheckBoxState GetCheckedState() const;
|
||||
};
|
||||
|
||||
|
||||
|
||||
/**
|
||||
@class wxDataViewEvent
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue