Document ctors and dtor for wxListView

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-12-29 03:36:32 +00:00
parent 6c0da6f516
commit ee2868c9ff

View File

@@ -1543,6 +1543,45 @@ public:
class wxListView : public wxListCtrl class wxListView : public wxListCtrl
{ {
public: public:
/**
Default constructor.
*/
wxListView();
/**
Constructor, creating and showing a listview control.
@param parent
Parent window. Must not be @NULL.
@param id
Window identifier. The value wxID_ANY indicates a default value.
@param pos
Window position.
If ::wxDefaultPosition is specified then a default position is chosen.
@param size
Window size.
If ::wxDefaultSize is specified then the window is sized appropriately.
@param style
Window style. See wxListCtrl.
@param validator
Window validator.
@param name
Window name.
@see Create(), wxValidator
*/
wxListView(wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxLC_ICON,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxListCtrlNameStr);
/**
Destructor, destroying the listview control.
*/
virtual ~wxListView();
/** /**
Resets the column image -- after calling this function, no image will be shown. Resets the column image -- after calling this function, no image will be shown.