fix various Doxygen errors (#9578)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -71,11 +71,11 @@
|
|||||||
@style{wxLC_SINGLE_SEL}
|
@style{wxLC_SINGLE_SEL}
|
||||||
Single selection (default is multiple).
|
Single selection (default is multiple).
|
||||||
@style{wxLC_SORT_ASCENDING}
|
@style{wxLC_SORT_ASCENDING}
|
||||||
Sort in ascending order (must still supply a comparison callback in
|
Sort in ascending order. (You must still supply a comparison callback
|
||||||
SortItems.
|
in wxListCtrl::SortItems.)
|
||||||
@style{wxLC_SORT_DESCENDING}
|
@style{wxLC_SORT_DESCENDING}
|
||||||
Sort in descending order (must still supply a comparison callback
|
Sort in descending order. (You must still supply a comparison callback
|
||||||
in SortItems.
|
in wxListCtrl::SortItems.)
|
||||||
@style{wxLC_HRULES}
|
@style{wxLC_HRULES}
|
||||||
Draws light horizontal rules between rows in report mode.
|
Draws light horizontal rules between rows in report mode.
|
||||||
@style{wxLC_VRULES}
|
@style{wxLC_VRULES}
|
||||||
@@ -86,13 +86,18 @@
|
|||||||
@category{ctrl}
|
@category{ctrl}
|
||||||
<!-- @appearance{listctrl.png} -->
|
<!-- @appearance{listctrl.png} -->
|
||||||
|
|
||||||
@see @ref overview_wxlistctrloverview "wxListCtrl overview", wxListView,
|
@see @ref overview_listctrl "wxListCtrl Overview", wxListView,
|
||||||
wxListBox, wxTreeCtrl, wxImageList, wxListEvent, wxListItem
|
wxListBox, wxTreeCtrl, wxImageList, wxListEvent, wxListItem
|
||||||
*/
|
*/
|
||||||
class wxListCtrl : public wxControl
|
class wxListCtrl : public wxControl
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
//@{
|
//@{
|
||||||
|
/**
|
||||||
|
Constructor, creating and showing a list control.
|
||||||
|
*/
|
||||||
|
wxListCtrl();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Constructor, creating and showing a list control.
|
Constructor, creating and showing a list control.
|
||||||
|
|
||||||
@@ -104,8 +109,7 @@ public:
|
|||||||
Window position.
|
Window position.
|
||||||
@param size
|
@param size
|
||||||
Window size. If wxDefaultSize is specified then the window is
|
Window size. If wxDefaultSize is specified then the window is
|
||||||
sized
|
sized appropriately.
|
||||||
appropriately.
|
|
||||||
@param style
|
@param style
|
||||||
Window style. See wxListCtrl.
|
Window style. See wxListCtrl.
|
||||||
@param validator
|
@param validator
|
||||||
@@ -115,7 +119,6 @@ public:
|
|||||||
|
|
||||||
@see Create(), wxValidator
|
@see Create(), wxValidator
|
||||||
*/
|
*/
|
||||||
wxListCtrl();
|
|
||||||
wxListCtrl(wxWindow* parent, wxWindowID id,
|
wxListCtrl(wxWindow* parent, wxWindowID id,
|
||||||
const wxPoint& pos = wxDefaultPosition,
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
const wxSize& size = wxDefaultSize,
|
const wxSize& size = wxDefaultSize,
|
||||||
@@ -537,20 +540,39 @@ public:
|
|||||||
|
|
||||||
//@{
|
//@{
|
||||||
/**
|
/**
|
||||||
Insert an image/string item.
|
Insert a wxListItem.
|
||||||
|
|
||||||
@param info
|
@param info
|
||||||
wxListItem object
|
wxListItem object
|
||||||
|
*/
|
||||||
|
long InsertItem(wxListItem& info);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Insert an string item.
|
||||||
|
@param index
|
||||||
|
Index of the new item, supplied by the application
|
||||||
|
@param label
|
||||||
|
String label
|
||||||
|
*/
|
||||||
|
long InsertItem(long index, const wxString& label);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Insert an image item.
|
||||||
|
@param index
|
||||||
|
Index of the new item, supplied by the application
|
||||||
|
@param imageIndex
|
||||||
|
Index into the image list associated with this control and view style
|
||||||
|
*/
|
||||||
|
long InsertItem(long index, int imageIndex);
|
||||||
|
|
||||||
|
/**
|
||||||
|
Insert an image/string item.
|
||||||
@param index
|
@param index
|
||||||
Index of the new item, supplied by the application
|
Index of the new item, supplied by the application
|
||||||
@param label
|
@param label
|
||||||
String label
|
String label
|
||||||
@param imageIndex
|
@param imageIndex
|
||||||
index into the image list associated with this control and view style
|
Index into the image list associated with this control and view style
|
||||||
*/
|
*/
|
||||||
long InsertItem(wxListItem& info);
|
|
||||||
long InsertItem(long index, const wxString& label);
|
|
||||||
long InsertItem(long index, int imageIndex);
|
|
||||||
long InsertItem(long index, const wxString& label,
|
long InsertItem(long index, const wxString& label,
|
||||||
int imageIndex);
|
int imageIndex);
|
||||||
//@}
|
//@}
|
||||||
@@ -583,7 +605,7 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
This function must be overloaded in the derived class for a control with
|
This function must be overloaded in the derived class for a control with
|
||||||
@c wxLC_VIRTUAL style having an @ref setimagelist() "image list"
|
@c wxLC_VIRTUAL style having an @ref SetImageList() "image list"
|
||||||
(if the control doesn't have an image list, it is not necessary to overload
|
(if the control doesn't have an image list, it is not necessary to overload
|
||||||
it). It should return the index of the items image in the controls image list
|
it). It should return the index of the items image in the controls image list
|
||||||
or -1 for no image.
|
or -1 for no image.
|
||||||
@@ -681,7 +703,7 @@ public:
|
|||||||
Sets a string field at a particular column.
|
Sets a string field at a particular column.
|
||||||
*/
|
*/
|
||||||
bool SetItem(wxListItem& info);
|
bool SetItem(wxListItem& info);
|
||||||
long SetItem(long index, int col, const wxStringamp; label,
|
long SetItem(long index, int col, const wxString& label,
|
||||||
int imageId = -1);
|
int imageId = -1);
|
||||||
m_mask m_state field is valid.
|
m_mask m_state field is valid.
|
||||||
|
|
||||||
@@ -1047,7 +1069,7 @@ public:
|
|||||||
@library{wxbase}
|
@library{wxbase}
|
||||||
@category{FIXME}
|
@category{FIXME}
|
||||||
|
|
||||||
@see @ref overview_wxlistctrloverview "wxListCtrl overview", wxListCtrl,
|
@see @ref overview_listctrl "wxListCtrl Overview", wxListCtrl,
|
||||||
wxListItem
|
wxListItem
|
||||||
*/
|
*/
|
||||||
class wxListItemAttr
|
class wxListItemAttr
|
||||||
|
Reference in New Issue
Block a user