From ee2868c9ffa3aef7a8463b90fb7958e5fec05931 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 29 Dec 2013 03:36:32 +0000 Subject: [PATCH] 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 --- interface/wx/listctrl.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/interface/wx/listctrl.h b/interface/wx/listctrl.h index aecce9956f..11af37f5a6 100644 --- a/interface/wx/listctrl.h +++ b/interface/wx/listctrl.h @@ -1543,6 +1543,45 @@ public: class wxListView : public wxListCtrl { 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.