1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-27 16:54:43 +00:00
|
|
|
// Name: wx/motif/combobox.h
|
1998-09-18 10:19:10 +00:00
|
|
|
// Purpose: wxComboBox class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2005-01-19 16:25:34 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_COMBOBOX_H_
|
|
|
|
#define _WX_COMBOBOX_H_
|
|
|
|
|
|
|
|
#include "wx/choice.h"
|
2007-11-05 23:13:09 +00:00
|
|
|
#include "wx/textentry.h"
|
1998-09-18 10:19:10 +00:00
|
|
|
|
|
|
|
// Combobox item
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxComboBox : public wxChoice,
|
2007-11-05 23:13:09 +00:00
|
|
|
public wxTextEntry
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
1999-02-22 11:01:13 +00:00
|
|
|
public:
|
2003-03-26 22:20:59 +00:00
|
|
|
wxComboBox() { m_inSetSelection = false; }
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxComboBox();
|
2005-01-19 16:25:34 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
inline wxComboBox(wxWindow *parent, wxWindowID id,
|
2002-02-05 16:34:33 +00: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 11:01:13 +00:00
|
|
|
{
|
2003-03-26 22:20:59 +00:00
|
|
|
m_inSetSelection = false;
|
2002-12-08 18:48:05 +00:00
|
|
|
Create(parent, id, value, pos, size, n, choices,
|
|
|
|
style, validator, name);
|
1999-02-22 11:01:13 +00:00
|
|
|
}
|
2005-01-19 16:25:34 +00:00
|
|
|
|
2004-01-31 18:21:45 +00: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 16:25:34 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2002-02-05 16:34:33 +00: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 16:25:34 +00:00
|
|
|
|
2004-01-31 18:21:45 +00: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 16:25:34 +00:00
|
|
|
|
2011-08-21 12:06:16 +00:00
|
|
|
// See wxComboBoxBase discussion of IsEmpty().
|
|
|
|
bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
|
|
|
|
bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
|
|
|
|
|
2007-11-05 23:13:09 +00: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 18:48:05 +00:00
|
|
|
// implementation of wxControlWithItems
|
2007-07-26 13:54:14 +00:00
|
|
|
virtual int DoInsertItems(const wxArrayStringsAdapter& items,
|
|
|
|
unsigned int pos,
|
|
|
|
void **clientData, wxClientDataType type);
|
|
|
|
virtual void DoDeleteOneItem(unsigned int n);
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual int GetSelection() const ;
|
|
|
|
virtual void SetSelection(int n);
|
2005-09-27 16:54:43 +00:00
|
|
|
virtual int FindString(const wxString& s, bool bCase = false) const;
|
2006-03-23 22:05:23 +00:00
|
|
|
virtual wxString GetString(unsigned int n) const ;
|
|
|
|
virtual void SetString(unsigned int n, const wxString& s);
|
2003-02-04 21:09:03 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
// Implementation
|
2005-01-19 16:25:34 +00:00
|
|
|
virtual void ChangeFont(bool keepOriginalSize = true);
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void ChangeBackgroundColour();
|
|
|
|
virtual void ChangeForegroundColour();
|
|
|
|
WXWidget GetTopWidget() const { return m_mainWidget; }
|
|
|
|
WXWidget GetMainWidget() const { return m_mainWidget; }
|
2002-12-08 18:48:05 +00:00
|
|
|
|
2011-11-17 07:51:04 +00:00
|
|
|
//Copied from wxComboBoxBase because for wxMOTIF wxComboBox does not inherit from it.
|
|
|
|
virtual void Popup() { wxFAIL_MSG( wxT("Not implemented") ); };
|
|
|
|
virtual void Dismiss() { wxFAIL_MSG( wxT("Not implemented") ); };
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
protected:
|
2007-11-05 23:13:09 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void DoSetSize(int x, int y,
|
2007-11-05 23:13:09 +00:00
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
2009-03-02 12:25:01 +00:00
|
|
|
// implement wxTextEntry pure virtual methods
|
|
|
|
virtual wxWindow *GetEditableWindow() { return this; }
|
2007-11-05 23:13:09 +00:00
|
|
|
virtual WXWidget GetTextWidget() const;
|
|
|
|
|
2003-02-23 20:33:43 +00:00
|
|
|
private:
|
|
|
|
// only implemented for native combo box
|
|
|
|
void AdjustDropDownListSize();
|
2003-03-26 22:20:59 +00:00
|
|
|
|
|
|
|
// implementation detail, should really be private
|
|
|
|
public:
|
|
|
|
bool m_inSetSelection;
|
2007-11-05 23:13:09 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxComboBox)
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
2007-11-05 23:13:09 +00:00
|
|
|
#endif // _WX_COMBOBOX_H_
|