Struct winsafe::gui::ListViewOpts[][src]

pub struct ListViewOpts {
    pub position: POINT,
    pub size: SIZE,
    pub list_view_style: LVS,
    pub list_view_ex_style: LVS_EX,
    pub window_style: WS,
    pub window_ex_style: WS_EX,
    pub ctrl_id: u16,
    pub context_menu: Option<HMENU>,
    pub columns: Vec<(String, u32)>,
}
Expand description

Options to create a ListView programmatically with ListView::new.

Fields

position: POINT

Control position within parent client area, in pixels, to be created.

Will be adjusted to match current system DPI.

Defaults to 0 x 0.

size: SIZE

Control size, in pixels, to be created.

Will be adjusted to match current system DPI.

Defaults to 50 x 50.

list_view_style: LVS

List view styles to be created.

Defaults to LVS::REPORT | LVS::NOSORTHEADER | LVS::SHOWSELALWAYS | LVS::SHAREIMAGELISTS.

list_view_ex_style: LVS_EX

Extended list view styles to be created.

Defaults to LVS_EX::NoValue.

window_style: WS

Window styles to be created.

Defaults to WS::CHILD | WS::VISIBLE | WS::TABSTOP | WS::GROUP.

window_ex_style: WS_EX

Extended window styles to be created.

Defaults to WS_EX::LEFT | WS_EX::CLIENTEDGE.

ctrl_id: u16

The control ID.

Defaults to an auto-generated ID.

context_menu: Option<HMENU>

Context popup menu.

This menu is shared: it must be destroyed manually after the control is destroyed. But note that menus loaded from resources don’t need to be destroyed.

Defaults to None.

columns: Vec<(String, u32)>

Text and width of columns to be added right away. The columns only show in report mode.

Defaults to none.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.