1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: choice.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCHOICEH__
|
|
|
|
#define __GTKCHOICEH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-10-18 15:45:28 +00:00
|
|
|
#pragma interface "choice.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2003-07-20 19:32:44 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxSortedArrayString;
|
2004-01-31 18:21:45 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxArrayString;
|
2003-07-20 19:32:44 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxChoice
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-10-18 15:45:28 +00:00
|
|
|
class wxChoice : public wxChoiceBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-11-06 08:50:52 +00:00
|
|
|
public:
|
1999-03-16 18:54:24 +00: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 13:12:04 +00:00
|
|
|
m_strings = (wxSortedArrayString *)NULL;
|
|
|
|
|
1999-03-16 18:54:24 +00:00
|
|
|
Create(parent, id, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
2004-01-31 18:21:45 +00:00
|
|
|
wxChoice( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxChoiceNameStr )
|
|
|
|
{
|
|
|
|
m_strings = (wxSortedArrayString *)NULL;
|
|
|
|
|
|
|
|
Create(parent, id, pos, size, choices, style, validator, name);
|
|
|
|
}
|
1999-03-16 18:54:24 +00:00
|
|
|
~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 );
|
2004-01-31 18:21:45 +00:00
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxChoiceNameStr );
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-10-18 15:45:28 +00:00
|
|
|
// implement base class pure virtuals
|
1999-03-16 18:54:24 +00:00
|
|
|
void Delete(int n);
|
1999-10-18 15:45:28 +00:00
|
|
|
void Clear();
|
|
|
|
|
|
|
|
int GetSelection() const;
|
|
|
|
void SetSelection( int n );
|
1999-03-16 18:54:24 +00:00
|
|
|
|
1999-10-18 15:45:28 +00:00
|
|
|
virtual int GetCount() const;
|
1999-10-22 18:00:39 +00:00
|
|
|
int FindString( const wxString& string ) const;
|
1999-03-16 18:54:24 +00:00
|
|
|
wxString GetString( int n ) const;
|
1999-10-22 18:00:39 +00:00
|
|
|
void SetString( int n, const wxString& string );
|
1999-03-16 18:54:24 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
|
|
|
|
1999-11-22 19:44:25 +00:00
|
|
|
protected:
|
1999-10-22 13:12:04 +00:00
|
|
|
wxList m_clientList; // contains the client data for the items
|
1999-03-16 18:54:24 +00:00
|
|
|
|
2004-06-14 17:34:00 +00:00
|
|
|
void DoApplyWidgetStyle(GtkRcStyle *style);
|
1999-10-18 15:45:28 +00:00
|
|
|
virtual int DoAppend(const wxString& item);
|
2003-05-09 12:58:28 +00:00
|
|
|
virtual int DoInsert(const wxString& item, int pos);
|
1999-10-18 15:45:28 +00:00
|
|
|
|
1999-10-22 18:00:39 +00: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 10:51:48 +00:00
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
2003-07-08 11:18:42 +00:00
|
|
|
virtual bool IsOwnGtkWindow( GdkWindow *window );
|
2004-05-06 17:26:25 +00:00
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
1999-10-22 13:12:04 +00:00
|
|
|
// common part of Create() and DoAppend()
|
2003-05-09 12:58:28 +00:00
|
|
|
int GtkAddHelper(GtkWidget *menu, int pos, const wxString& item);
|
1999-10-22 13:12:04 +00: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 10:05:36 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxChoice)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif // __GTKCHOICEH__
|