const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxListBoxNameStr )
{
+ m_hasCheckBoxes = FALSE;
Create(parent, id, pos, size, n, choices, style, validator, name);
}
~wxListBox();
void SetString( int n, const wxString &string );
void SetStringSelection( const wxString &string, bool select = TRUE );
+#if wxUSE_DRAG_AND_DROP
void SetDropTarget( wxDropTarget *dropTarget );
+#endif
// implementation
void ApplyWidgetStyle();
GtkList *m_list;
- wxList m_clientDataList;
- wxList m_clientObjectList;
+ wxList m_clientDataList;
+ wxList m_clientObjectList;
+ bool m_hasCheckBoxes;
};
#endif // __GTKLISTBOXH__