// Gets the number of columns in the list control
int GetColumnCount() const;
+ void SetItemSpacing( int spacing, bool isSmall = false );
wxSize GetItemSpacing() const;
// Gets the number of selected items in the list control
// list or report view
long GetTopItem() const ;
+ // are we in report mode?
+ bool InReportView() const { return HasFlag(wxLC_REPORT); }
+
bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL); }
// Add or remove a single window style
return m_count;
}
+void wxListCtrl::SetItemSpacing( int spacing, bool isSmall )
+{
+ if (m_genericImpl)
+ m_genericImpl->SetItemSpacing(spacing, isSmall);
+}
+
wxSize wxListCtrl::GetItemSpacing() const
{
if (m_genericImpl)