1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/combobox.h
3 // Purpose: wxComboBox class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COMBOBOX_H_
13 #define _WX_COMBOBOX_H_
15 #include "wx/choice.h"
16 #include "wx/textentry.h"
19 class WXDLLIMPEXP_CORE wxComboBox
: public wxChoice
,
23 wxComboBox() { m_inSetSelection
= false; }
24 virtual ~wxComboBox();
26 inline wxComboBox(wxWindow
*parent
, wxWindowID id
,
27 const wxString
& value
= wxEmptyString
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
30 int n
= 0, const wxString choices
[] = NULL
,
32 const wxValidator
& validator
= wxDefaultValidator
,
33 const wxString
& name
= wxComboBoxNameStr
)
35 m_inSetSelection
= false;
36 Create(parent
, id
, value
, pos
, size
, n
, choices
,
37 style
, validator
, name
);
40 inline wxComboBox(wxWindow
*parent
, wxWindowID id
,
41 const wxString
& value
,
44 const wxArrayString
& choices
,
46 const wxValidator
& validator
= wxDefaultValidator
,
47 const wxString
& name
= wxComboBoxNameStr
)
49 m_inSetSelection
= false;
50 Create(parent
, id
, value
, pos
, size
, choices
,
51 style
, validator
, name
);
54 bool Create(wxWindow
*parent
, wxWindowID id
,
55 const wxString
& value
= wxEmptyString
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
,
58 int n
= 0, const wxString choices
[] = NULL
,
60 const wxValidator
& validator
= wxDefaultValidator
,
61 const wxString
& name
= wxComboBoxNameStr
);
63 bool Create(wxWindow
*parent
, wxWindowID id
,
64 const wxString
& value
,
67 const wxArrayString
& choices
,
69 const wxValidator
& validator
= wxDefaultValidator
,
70 const wxString
& name
= wxComboBoxNameStr
);
72 // See wxComboBoxBase discussion of IsEmpty().
73 bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
74 bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
76 // resolve ambiguities among virtual functions inherited from both base
79 virtual wxString
GetValue() const { return wxTextEntry::GetValue(); }
80 virtual void SetValue(const wxString
& value
);
81 virtual wxString
GetStringSelection() const
82 { return wxChoice::GetStringSelection(); }
84 virtual void SetSelection(long from
, long to
)
85 { wxTextEntry::SetSelection(from
, to
); }
86 virtual void GetSelection(long *from
, long *to
) const
87 { wxTextEntry::GetSelection(from
, to
); }
90 // implementation of wxControlWithItems
91 virtual int DoInsertItems(const wxArrayStringsAdapter
& items
,
93 void **clientData
, wxClientDataType type
);
94 virtual void DoDeleteOneItem(unsigned int n
);
95 virtual int GetSelection() const ;
96 virtual void SetSelection(int n
);
97 virtual int FindString(const wxString
& s
, bool bCase
= false) const;
98 virtual wxString
GetString(unsigned int n
) const ;
99 virtual void SetString(unsigned int n
, const wxString
& s
);
102 virtual void ChangeFont(bool keepOriginalSize
= true);
103 virtual void ChangeBackgroundColour();
104 virtual void ChangeForegroundColour();
105 WXWidget
GetTopWidget() const { return m_mainWidget
; }
106 WXWidget
GetMainWidget() const { return m_mainWidget
; }
108 //Copied from wxComboBoxBase because for wxMOTIF wxComboBox does not inherit from it.
109 virtual void Popup() { wxFAIL_MSG( wxT("Not implemented") ); };
110 virtual void Dismiss() { wxFAIL_MSG( wxT("Not implemented") ); };
113 virtual wxSize
DoGetBestSize() const;
114 virtual void DoSetSize(int x
, int y
,
115 int width
, int height
,
116 int sizeFlags
= wxSIZE_AUTO
);
118 // implement wxTextEntry pure virtual methods
119 virtual wxWindow
*GetEditableWindow() { return this; }
120 virtual WXWidget
GetTextWidget() const;
123 // only implemented for native combo box
124 void AdjustDropDownListSize();
126 // implementation detail, should really be private
128 bool m_inSetSelection
;
130 DECLARE_DYNAMIC_CLASS(wxComboBox
)
133 #endif // _WX_COMBOBOX_H_