1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: choice.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1999-03-16 13:54:24 -05:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCHOICEH__
|
|
|
|
#define __GTKCHOICEH__
|
|
|
|
|
2002-09-07 08:28:46 -04:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
1999-10-18 11:45:28 -04:00
|
|
|
#pragma interface "choice.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxChoice
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-10-18 11:45:28 -04:00
|
|
|
class wxChoice : public wxChoiceBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-11-06 03:50:52 -05:00
|
|
|
public:
|
1999-03-16 13:54:24 -05:00
|
|
|
wxChoice();
|
|
|
|
wxChoice( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxChoiceNameStr )
|
|
|
|
{
|
1999-10-22 09:12:04 -04:00
|
|
|
m_strings = (wxSortedArrayString *)NULL;
|
|
|
|
|
1999-03-16 13:54:24 -05:00
|
|
|
Create(parent, id, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
|
|
|
~wxChoice();
|
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = (wxString *) NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxChoiceNameStr );
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-10-18 11:45:28 -04:00
|
|
|
// implement base class pure virtuals
|
1999-03-16 13:54:24 -05:00
|
|
|
void Delete(int n);
|
1999-10-18 11:45:28 -04:00
|
|
|
void Clear();
|
|
|
|
|
|
|
|
int GetSelection() const;
|
|
|
|
void SetSelection( int n );
|
1999-03-16 13:54:24 -05:00
|
|
|
|
1999-10-18 11:45:28 -04:00
|
|
|
virtual int GetCount() const;
|
1999-10-22 14:00:39 -04:00
|
|
|
int FindString( const wxString& string ) const;
|
1999-03-16 13:54:24 -05:00
|
|
|
wxString GetString( int n ) const;
|
1999-10-22 14:00:39 -04:00
|
|
|
void SetString( int n, const wxString& string );
|
1999-03-16 13:54:24 -05:00
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
protected:
|
1999-10-22 09:12:04 -04:00
|
|
|
wxList m_clientList; // contains the client data for the items
|
1999-03-16 13:54:24 -05:00
|
|
|
|
|
|
|
void ApplyWidgetStyle();
|
1999-10-18 11:45:28 -04:00
|
|
|
virtual int DoAppend(const wxString& item);
|
|
|
|
|
1999-10-22 14:00:39 -04:00
|
|
|
virtual void DoSetItemClientData( int n, void* clientData );
|
|
|
|
virtual void* DoGetItemClientData( int n ) const;
|
|
|
|
virtual void DoSetItemClientObject( int n, wxClientData* clientData );
|
|
|
|
virtual wxClientData* DoGetItemClientObject( int n ) const;
|
1999-10-19 06:51:48 -04:00
|
|
|
|
1999-11-19 16:01:20 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
private:
|
1999-10-22 09:12:04 -04:00
|
|
|
// common part of Create() and DoAppend()
|
1999-11-22 14:44:25 -05:00
|
|
|
size_t GtkAppendHelper(GtkWidget *menu, const wxString& item);
|
1999-10-22 09:12:04 -04:00
|
|
|
|
|
|
|
// this array is only used for controls with wxCB_SORT style, so only
|
|
|
|
// allocate it if it's needed (hence using pointer)
|
|
|
|
wxSortedArrayString *m_strings;
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxChoice)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
1999-06-15 16:21:59 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif // __GTKCHOICEH__
|