GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxListView(3) Erlang Module Definition wxListView(3)

wxListView - Functions for wxListView class

This class currently simply presents a simpler to use interface for the wxListCtrl - it can be thought of as a façade for that complicated class.

Using it is preferable to using wxListCtrl directly whenever possible because in the future some ports might implement wxListView but not the full set of wxListCtrl features.

Other than different interface, this class is identical to wxListCtrl. In particular, it uses the same events, same window styles and so on.

See: setColumnImage/3

This class is derived (and can use functions) from: wxControl wxWindow wxEvtHandler

wxWidgets docs: wxListView

wxListView() = wx:wx_object()

clearColumnImage(This, Col) -> ok


Types:

This = wxListView()
Col = integer()

Resets the column image - after calling this function, no image will be shown.

See: setColumnImage/3

focus(This, Index) -> ok


Types:

This = wxListView()
Index = integer()

Sets focus to the item with the given index.

getFirstSelected(This) -> integer()


Types:

This = wxListView()

Returns the first selected item in a (presumably) multiple selection control.

Together with getNextSelected/2 it can be used to iterate over all selected items in the control.

Return: The first selected item, if any, -1 otherwise.

getFocusedItem(This) -> integer()


Types:

This = wxListView()

Returns the currently focused item or -1 if none.

See: isSelected/2, focus/2

getNextSelected(This, Item) -> integer()


Types:

This = wxListView()
Item = integer()

Used together with getFirstSelected/1 to iterate over all selected items in the control.

Return: Returns the next selected item or -1 if there are no more of them.

isSelected(This, Index) -> boolean()


Types:

This = wxListView()
Index = integer()

Returns true if the item with the given index is selected, false otherwise.

See: getFirstSelected/1, getNextSelected/2

select(This, N) -> ok


Types:

This = wxListView()
N = integer()

select(This, N, Options :: [Option]) -> ok


Types:

This = wxListView()
N = integer()
Option = {on, boolean()}

Selects or unselects the given item.

Notice that this method inherits the unusual behaviour of wxListCtrl:setItemState/4 which sends a wxEVT_LIST_ITEM_SELECTED event when it is used to select an item, contrary to the usual rule that only the user actions result in selection.

setColumnImage(This, Col, Image) -> ok


Types:

This = wxListView()
Col = Image = integer()

Sets the column image for the specified column.

To use the column images, the control must have a valid image list with at least one image.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.