MCPcopy Create free account
hub / github.com/SOUI2/soui / SMCListView

Method SMCListView

SOUI/src/control/SMCListView.cpp:43–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41// SMCListView
42
43 SMCListView::SMCListView()
44 :m_pHeader(NULL)
45 ,m_iSelItem(-1)
46 ,m_iFirstVisible(-1)
47 ,m_pHoverItem(NULL)
48 ,m_itemCapture(NULL)
49 ,m_pSkinDivider(NULL)
50 ,m_bWantTab(FALSE)
51 ,m_bDatasetInvalidated(TRUE)
52 ,m_bPendingUpdate(false)
53 ,m_iPendingUpdateItem(-2)
54 {
55 m_bFocusable = TRUE;
56 m_bClipClient = TRUE;
57 m_dwUpdateInterval=40;
58 m_nHeaderHeight.fromString(L"25dp");
59 m_observer.Attach(new SMCListViewDataSetObserver(this));
60
61 m_evtSet.addEvent(EVENTID(EventLVSelChanging));
62 m_evtSet.addEvent(EVENTID(EventLVSelChanged));
63 }
64
65 SMCListView::~SMCListView()
66 {

Callers

nothing calls this directly

Calls 3

fromStringMethod · 0.80
AttachMethod · 0.45
addEventMethod · 0.45

Tested by

no test coverage detected