1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxListView documentation
4 %% Author: Vadim Zeitlin
8 %% Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwindows.org>
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxListView
}}\label{wxlistview
}
14 This class currently simply presents a simpler to use interface for the
15 \helpref{wxListCtrl
}{wxlistctrl
} -- it can be thought of as a
{\it fa
\c{c
}ade
}
16 for that complicated class. Using it is preferable to using
17 \helpref{wxListCtrl
}{wxlistctrl
} directly whenever possible because in the
18 future some ports might implement wxListView but not the full set of wxListCtrl
21 Other than different interface, this class is identical to wxListCtrl. In
22 particular, it uses the same events, same window styles and so on.
24 \wxheading{Derived from
}
26 \helpref{wxListCtrl
}{wxlistctrl
}\\
27 \helpref{wxControl
}{wxcontrol
}\\
28 \helpref{wxWindow
}{wxwindow
}\\
29 \helpref{wxEvtHandler
}{wxevthandler
}\\
30 \helpref{wxObject
}{wxobject
}
32 \wxheading{Include files
}
36 %%%%%%%%%%%%% Methods in alphabetic order %%%%%%%%%%%%%
37 \latexignore{\rtfignore{\wxheading{Members
}}}
39 \membersection{wxListView::ClearColumnImage
}\label{wxlistviewclearcolumnimage
}
41 \func{void
}{ClearColumnImage
}{\param{int
}{col
}}
43 Resets the column image -- after calling this function, no image will be shown.
45 \wxheading{Parameters
}
47 \docparam{col
}{the column to clear image for
}
51 \helpref{SetColumnImage
}{wxlistviewsetcolumnimage
}
54 \membersection{wxListView::Focus
}\label{wxlistviewfocus
}
56 \func{void
}{Focus
}{\param{long
}{index
}}
58 Sets focus to the item with the given
{\it index
}.
61 \membersection{wxListView::GetFirstSelected
}\label{wxlistviewgetfirstselected
}
63 \constfunc{long
}{GetFirstSelected
}{\void}
65 Returns the first selected item in a (presumably) multiple selection control.
66 Tigether with
\helpref{GetNextSelected
}{wxlistviewgetnextselected
} it can be
67 used to iterate over all selected items in the control.
69 \wxheading{Return value
}
71 The first selected item, if any, $-
1$ otherwise.
74 \membersection{wxListView::GetFocusedItem
}\label{wxlistviewgetfocuseditem
}
76 \constfunc{long
}{GetFocusedItem
}{\void}
78 Returns the currently focused item or $-
1$ if none.
82 \helpref{IsSelected
}{wxlistviewisselected
},\\
83 \helpref{Focus
}{wxlistviewfocus
}
86 \membersection{wxListView::GetNextSelected
}\label{wxlistviewgetnextselected
}
88 \constfunc{long
}{GetNextSelected
}{\param{long
}{item
}}
90 Used together with
\helpref{GetFirstSelected
}{wxlistviewgetfirstselected
} to
91 iterate over all selected items in the control.
93 \wxheading{Return value
}
95 Returns the next selected item or $-
1$ if there are no more of them.
98 \membersection{wxListView::IsSelected
}\label{wxlistviewisselected
}
100 \func{bool
}{IsSelected
}{\param{long
}{index
}}
102 Returns
{\tt true
} if the item with the given
{\it index
} is selected,
103 {\tt false
} otherwise.
107 \helpref{GetFirstSelected
}{wxlistviewgetfirstselected
},\\
108 \helpref{GetNextSelected
}{wxlistviewgetnextselected
}
111 \membersection{wxListView::Select
}\label{wxlistviewselect
}
113 \func{void
}{Select
}{long n,
\param{bool
}{on = true
}}
115 Selects or unselects the given item.
117 \wxheading{Parameters
}
119 \docparam{n
}{the item to select or unselect
}
121 \docparam{on
}{if
{\tt true
} (default), selects the item, otherwise unselects it
}
125 \helpref{SetItemState
}{wxlistctrlsetitemstate
}
128 \membersection{wxListView::SetColumnImage
}\label{wxlistviewsetcolumnimage
}
130 \func{void
}{SetColumnImage
}{\param{int
}{col
},
\param{int
}{image
}}
132 Sets the column image for the specified column. To use the column images, the
133 control must have a valid image list with at least one image.
135 \wxheading{Parameters
}
137 \docparam{col
}{the column to set image for
}
139 \docparam{image
}{the index of the column image in the controls image list
}
143 \helpref{ClearColumnImage
}{wxlistviewclearcolumnimage
},\\
144 \helpref{SetImageList
}{wxlistctrlsetimagelist
}