#endif
#include "wx/defs.h"
+
+#if wxUSE_LISTBOX
+
#include "wx/object.h"
#include "wx/list.h"
#include "wx/control.h"
void Deselect( int n );
int FindString( const wxString &item ) const;
- int GetSelection(void) const;
+ int GetSelection() const;
int GetSelections( class wxArrayInt &) const;
wxString GetString( int n ) const;
- wxString GetStringSelection(void) const;
+ wxString GetStringSelection() const;
int Number();
bool Selected( int n );
void Set( int n, const wxString *choices );
// implementation
+ void DisableEvents();
+ void EnableEvents();
void AppendCommon( const wxString &item );
int GetIndex( GtkWidget *item ) const;
GtkWidget *GetConnectWidget();
#endif // wxUSE_CHECKLISTBOX
};
+#endif
+
#endif // __GTKLISTBOXH__