1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-27 12:54:43 -04:00
|
|
|
// Name: wx/motif/combobox.h
|
1998-09-18 06:19:10 -04:00
|
|
|
// Purpose: wxComboBox class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2005-01-19 11:25:34 -05:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 06:19:10 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_COMBOBOX_H_
|
|
|
|
#define _WX_COMBOBOX_H_
|
|
|
|
|
|
|
|
#include "wx/choice.h"
|
2007-11-05 18:13:09 -05:00
|
|
|
#include "wx/textentry.h"
|
1998-09-18 06:19:10 -04:00
|
|
|
|
|
|
|
// Combobox item
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
|
2007-11-05 18:13:09 -05:00
|
|
|
public wxTextEntry
|
1998-09-18 06:19:10 -04:00
|
|
|
{
|
1999-02-22 06:01:13 -05:00
|
|
|
public:
|
2003-03-26 17:20:59 -05:00
|
|
|
wxComboBox() { m_inSetSelection = false; }
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxComboBox();
|
2005-01-19 11:25:34 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
2002-02-05 11:34:33 -05:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr)
|
1999-02-22 06:01:13 -05:00
|
|
|
{
|
2003-03-26 17:20:59 -05:00
|
|
|
m_inSetSelection = false;
|
2002-12-08 13:48:05 -05:00
|
|
|
Create(parent, id, value, pos, size, n, choices,
|
|
|
|
style, validator, name);
|
1999-02-22 06:01:13 -05:00
|
|
|
}
|
2005-01-19 11:25:34 -05:00
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
m_inSetSelection = false;
|
|
|
|
Create(parent, id, value, pos, size, choices,
|
|
|
|
style, validator, name);
|
|
|
|
}
|
2005-01-19 11:25:34 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2002-02-05 11:34:33 -05:00
|
|
|
const wxString& value = wxEmptyString,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxComboBoxNameStr);
|
2005-01-19 11:25:34 -05:00
|
|
|
|
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);
|
2005-01-19 11:25:34 -05:00
|
|
|
|
2007-11-05 18:13:09 -05:00
|
|
|
// resolve ambiguities among virtual functions inherited from both base
|
|
|
|
// classes
|
|
|
|
virtual void Clear();
|
|
|
|
virtual wxString GetValue() const { return wxTextEntry::GetValue(); }
|
|
|
|
virtual void SetValue(const wxString& value);
|
|
|
|
virtual wxString GetStringSelection() const
|
|
|
|
{ return wxChoice::GetStringSelection(); }
|
|
|
|
|
|
|
|
virtual void SetSelection(long from, long to)
|
|
|
|
{ wxTextEntry::SetSelection(from, to); }
|
|
|
|
virtual void GetSelection(long *from, long *to) const
|
|
|
|
{ wxTextEntry::GetSelection(from, to); }
|
|
|
|
|
|
|
|
|
2002-12-08 13:48:05 -05:00
|
|
|
// implementation of wxControlWithItems
|
2007-07-26 09:54:14 -04:00
|
|
|
virtual int DoInsertItems(const wxArrayStringsAdapter& items,
|
|
|
|
unsigned int pos,
|
|
|
|
void **clientData, wxClientDataType type);
|
|
|
|
virtual void DoDeleteOneItem(unsigned int n);
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual int GetSelection() const ;
|
|
|
|
virtual void SetSelection(int n);
|
2005-09-27 12:54:43 -04:00
|
|
|
virtual int FindString(const wxString& s, bool bCase = false) const;
|
2006-03-23 17:05:23 -05:00
|
|
|
virtual wxString GetString(unsigned int n) const ;
|
|
|
|
virtual void SetString(unsigned int n, const wxString& s);
|
2003-02-04 16:09:03 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
// Implementation
|
2005-01-19 11:25:34 -05:00
|
|
|
virtual void ChangeFont(bool keepOriginalSize = true);
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void ChangeBackgroundColour();
|
|
|
|
virtual void ChangeForegroundColour();
|
|
|
|
WXWidget GetTopWidget() const { return m_mainWidget; }
|
|
|
|
WXWidget GetMainWidget() const { return m_mainWidget; }
|
2002-12-08 13:48:05 -05:00
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
protected:
|
2007-11-05 18:13:09 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void DoSetSize(int x, int y,
|
2007-11-05 18:13:09 -05:00
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
|
|
|
virtual WXWidget GetTextWidget() const;
|
|
|
|
|
2003-02-23 15:33:43 -05:00
|
|
|
private:
|
|
|
|
// only implemented for native combo box
|
|
|
|
void AdjustDropDownListSize();
|
2003-03-26 17:20:59 -05:00
|
|
|
|
|
|
|
// implementation detail, should really be private
|
|
|
|
public:
|
|
|
|
bool m_inSetSelection;
|
2007-11-05 18:13:09 -05:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxComboBox)
|
1998-09-18 06:19:10 -04:00
|
|
|
};
|
|
|
|
|
2007-11-05 18:13:09 -05:00
|
|
|
#endif // _WX_COMBOBOX_H_
|