1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: combobox.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Created: 01/02/97
|
1998-06-22 10:40:59 -04:00
|
|
|
// Id: $Id$
|
1998-10-26 05:56:58 -05:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-05-20 10:01:55 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKCOMBOBOXH__
|
|
|
|
#define __GTKCOMBOBOXH__
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-06-22 10:40:59 -04:00
|
|
|
#pragma interface "combobox.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-01-04 08:52:06 -05:00
|
|
|
|
1999-06-14 19:04:05 -04:00
|
|
|
#if wxUSE_COMBOBOX
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/object.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxComboBox;
|
|
|
|
|
1998-05-30 13:11:51 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2002-08-05 14:04:08 -04:00
|
|
|
extern const wxChar* wxComboBoxNameStr;
|
1999-04-12 18:20:19 -04:00
|
|
|
extern const wxChar* wxEmptyString;
|
1998-05-30 13:11:51 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxComboBox
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2003-09-20 12:31:06 -04:00
|
|
|
class wxComboBox : public wxControl, public wxComboBoxBase
|
1998-05-30 13:11:51 -04:00
|
|
|
{
|
1998-11-06 03:50:52 -05:00
|
|
|
public:
|
1999-10-11 06:05:36 -04:00
|
|
|
inline wxComboBox() {}
|
|
|
|
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
1998-05-30 13:11:51 -04:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-08-22 23:22:56 -04:00
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = 0,
|
1998-08-14 06:07:38 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
1998-05-30 13:11:51 -04:00
|
|
|
const wxString& name = wxComboBoxNameStr)
|
1999-10-11 06:05:36 -04:00
|
|
|
{
|
|
|
|
Create(parent, id, value, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
2004-01-31 13:21:45 -05:00
|
|
|
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& value,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, value, pos, size, choices, style, validator, name);
|
|
|
|
}
|
2003-09-20 12:31:06 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
~wxComboBox();
|
2003-09-20 12:31:06 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1998-05-30 13:11:51 -04:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-08-22 23:22:56 -04:00
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = 0,
|
1998-08-14 06:07:38 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
1998-05-30 13:11:51 -04:00
|
|
|
const wxString& name = wxComboBoxNameStr);
|
2004-01-31 13:21:45 -05:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& value,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr);
|
1998-05-30 13:11:51 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
void Clear();
|
|
|
|
void Delete( int n );
|
2003-07-09 17:55:04 -04:00
|
|
|
|
2003-09-20 12:31:06 -04:00
|
|
|
virtual int FindString( const wxString &item ) const;
|
1999-10-11 06:05:36 -04:00
|
|
|
int GetSelection() const;
|
|
|
|
wxString GetString( int n ) const;
|
|
|
|
wxString GetStringSelection() const;
|
2003-09-20 12:31:06 -04:00
|
|
|
int GetCount() const;
|
|
|
|
int Number() const { return GetCount(); }
|
1999-10-11 06:05:36 -04:00
|
|
|
void SetSelection( int n );
|
2003-09-20 12:31:06 -04:00
|
|
|
void Select( int n ) { return SetSelection( n ); }
|
2004-04-27 15:59:35 -04:00
|
|
|
bool SetStringSelection( const wxString &string );
|
2003-03-01 05:00:29 -05:00
|
|
|
void SetString(int n, const wxString &text);
|
1999-10-11 06:05:36 -04:00
|
|
|
|
|
|
|
wxString GetValue() const;
|
|
|
|
void SetValue(const wxString& value);
|
|
|
|
|
|
|
|
void Copy();
|
|
|
|
void Cut();
|
|
|
|
void Paste();
|
|
|
|
void SetInsertionPoint( long pos );
|
2003-09-20 12:31:06 -04:00
|
|
|
void SetInsertionPointEnd() { SetInsertionPoint( -1 ); }
|
1999-10-11 06:05:36 -04:00
|
|
|
long GetInsertionPoint() const;
|
|
|
|
long GetLastPosition() const;
|
2003-09-20 12:31:06 -04:00
|
|
|
void Remove(long from, long to) { Replace(from, to, wxEmptyString); }
|
1999-10-11 06:05:36 -04:00
|
|
|
void Replace( long from, long to, const wxString& value );
|
|
|
|
void SetSelection( long from, long to );
|
|
|
|
void SetEditable( bool editable );
|
2003-07-09 17:55:04 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
// implementation
|
2003-07-09 17:55:04 -04:00
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
virtual void SetFocus();
|
2003-07-09 17:55:04 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
void OnSize( wxSizeEvent &event );
|
|
|
|
void OnChar( wxKeyEvent &event );
|
2003-07-09 17:55:04 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
bool m_alreadySent;
|
|
|
|
wxList m_clientDataList;
|
|
|
|
wxList m_clientObjectList;
|
2001-08-06 17:06:13 -04:00
|
|
|
int m_prevSelection;
|
1999-10-11 06:05:36 -04:00
|
|
|
|
|
|
|
void DisableEvents();
|
|
|
|
void EnableEvents();
|
|
|
|
GtkWidget* GetConnectWidget();
|
|
|
|
bool IsOwnGtkWindow( GdkWindow *window );
|
|
|
|
void ApplyWidgetStyle();
|
2003-07-09 17:55:04 -04:00
|
|
|
|
2003-09-20 12:31:06 -04:00
|
|
|
wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
|
|
|
|
|
1999-11-19 16:01:20 -05:00
|
|
|
protected:
|
2003-09-20 12:31:06 -04:00
|
|
|
virtual int DoAppend(const wxString& item);
|
|
|
|
virtual int DoInsert(const wxString& item, int pos);
|
|
|
|
|
|
|
|
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-11-19 16:01:20 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
2003-07-09 17:55:04 -04:00
|
|
|
private:
|
2003-09-20 12:31:06 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxComboBox)
|
1999-10-11 06:05:36 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-30 13:11:51 -04:00
|
|
|
};
|
|
|
|
|
1999-06-14 19:04:05 -04:00
|
|
|
#endif
|
|
|
|
|
1999-01-04 08:52:06 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// __GTKCOMBOBOXH__
|