// Name: choice.h
// Purpose:
// Author: Robert Roebling
-// Created: 01/02/97
-// Id:
-// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id: $id$
+// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
const wxString& name = wxChoiceNameStr );
void Append( const wxString &item );
void Clear(void);
+ void Delete(int n);
int FindString( const wxString &string ) const;
int GetColumns(void) const;
int GetSelection(void);
void SetColumns( int n = 1 );
void SetSelection( int n );
void SetStringSelection( const wxString &string );
+
+ void SetFont( const wxFont &font );
};
#endif // __GTKCHOICEH__