]> git.saurik.com Git - wxWidgets.git/blame - src/osx/combobox_osx.cpp
Fix harmless warning in wxOSX with 10.7 SDK.
[wxWidgets.git] / src / osx / combobox_osx.cpp
CommitLineData
4ddfa282
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/osx/combobox_osx.cpp
3// Purpose: wxComboBox class using HIView ComboBox
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
b5b208a1 7// RCS-ID: $Id$
4ddfa282
SC
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
c84030e0 14#if wxUSE_COMBOBOX && wxOSX_USE_COCOA
4ddfa282
SC
15
16#include "wx/combobox.h"
f941a30b 17#include "wx/osx/private.h"
4ddfa282
SC
18
19#ifndef WX_PRECOMP
20#endif
21
22// work in progress
23
4ddfa282
SC
24wxComboBox::~wxComboBox()
25{
26}
27
28bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
29 const wxString& value,
30 const wxPoint& pos,
31 const wxSize& size,
32 const wxArrayString& choices,
33 long style,
34 const wxValidator& validator,
35 const wxString& name)
36{
37 wxCArrayString chs( choices );
38
39 return Create( parent, id, value, pos, size, chs.GetCount(),
40 chs.GetStrings(), style, validator, name );
41}
42
43bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
44 const wxString& value,
45 const wxPoint& pos,
46 const wxSize& size,
47 int n, const wxString choices[],
48 long style,
49 const wxValidator& validator,
50 const wxString& name)
51{
d15694e8
SC
52 DontCreatePeer();
53
4ddfa282
SC
54 m_text = NULL;
55 m_choice = NULL;
d15694e8 56
4ddfa282
SC
57 if ( !wxControl::Create( parent, id, pos, size, style, validator, name ) )
58 return false;
8e7262fc 59
8e7262fc
VZ
60 wxASSERT_MSG( !(style & wxCB_SORT),
61 "wxCB_SORT not currently supported by wxOSX/Cocoa");
62
22756322 63 SetPeer(wxWidgetImpl::CreateComboBox( this, parent, id, NULL, pos, size, style, GetExtraStyle() ));
4ddfa282
SC
64
65 MacPostControlCreate( pos, size );
66
4ddfa282
SC
67 Append(n, choices);
68
f25cb0af
VZ
69 // Set up the initial value, by default the first item is selected.
70 if ( !value.empty() )
71 SetValue(value);
72 else if (n > 0)
4ddfa282
SC
73 SetSelection( 0 );
74
75 // Needed because it is a wxControlWithItems
76 SetInitialSize( size );
77
78 return true;
79}
80
4ddfa282
SC
81void wxComboBox::DelegateTextChanged( const wxString& value )
82{
83 SetStringSelection( value );
84}
85
4ddfa282
SC
86void wxComboBox::DelegateChoice( const wxString& value )
87{
88 SetStringSelection( value );
89}
90
c84030e0
KO
91int wxComboBox::DoInsertItems(const wxArrayStringsAdapter& items,
92 unsigned int pos,
93 void **clientData, wxClientDataType type)
4ddfa282 94{
c84030e0
KO
95 const unsigned int numItems = items.GetCount();
96 for( unsigned int i = 0; i < numItems; ++i, ++pos )
97 {
98 unsigned int idx;
4ddfa282 99
c84030e0
KO
100 idx = pos;
101 GetComboPeer()->InsertItem( idx, items[i] );
4ddfa282 102
c84030e0
KO
103 if (idx > m_datas.GetCount())
104 m_datas.SetCount(idx);
105 m_datas.Insert( NULL, idx );
106 AssignNewItemClientData(idx, clientData, i, type);
107 }
4ddfa282 108
22756322 109 GetPeer()->SetMaximum( GetCount() );
4ddfa282 110
c84030e0 111 return pos - 1;
4ddfa282
SC
112}
113
c84030e0
KO
114// ----------------------------------------------------------------------------
115// client data
116// ----------------------------------------------------------------------------
117void wxComboBox::DoSetItemClientData(unsigned int n, void* clientData)
4ddfa282 118{
c84030e0 119 m_datas[n] = (char*)clientData ;
4ddfa282
SC
120}
121
c84030e0 122void * wxComboBox::DoGetItemClientData(unsigned int n) const
4ddfa282 123{
c84030e0 124 return (void *)m_datas[n];
4ddfa282
SC
125}
126
8e7262fc 127unsigned int wxComboBox::GetCount() const
f941a30b 128{
c84030e0 129 return GetComboPeer()->GetNumberOfItems();
4ddfa282
SC
130}
131
132void wxComboBox::DoDeleteOneItem(unsigned int n)
133{
c84030e0 134 GetComboPeer()->RemoveItem(n);
4ddfa282
SC
135}
136
137void wxComboBox::DoClear()
138{
c84030e0 139 GetComboPeer()->Clear();
4ddfa282
SC
140}
141
c84030e0
KO
142void wxComboBox::GetSelection(long *from, long *to) const
143{
144 wxTextEntry::GetSelection(from, to);
145}
8e7262fc 146
4ddfa282
SC
147int wxComboBox::GetSelection() const
148{
c84030e0 149 return GetComboPeer()->GetSelectedItem();
4ddfa282
SC
150}
151
c84030e0 152void wxComboBox::SetSelection(int n)
4ddfa282 153{
c84030e0 154 GetComboPeer()->SetSelectedItem(n);
f941a30b 155}
4ddfa282 156
c84030e0 157void wxComboBox::SetSelection(long from, long to)
f941a30b 158{
c84030e0 159 wxTextEntry::SetSelection(from, to);
4ddfa282
SC
160}
161
162int wxComboBox::FindString(const wxString& s, bool bCase) const
163{
ec073e73
KO
164 if (!bCase)
165 {
96dfe757 166 for (unsigned i = 0; i < GetCount(); i++)
ec073e73
KO
167 {
168 if (s.IsSameAs(GetString(i), false))
169 return i;
170 }
171 return wxNOT_FOUND;
172 }
8e7262fc 173
c84030e0 174 return GetComboPeer()->FindString(s);
4ddfa282
SC
175}
176
177wxString wxComboBox::GetString(unsigned int n) const
178{
6f07c007
VZ
179 wxCHECK_MSG( n < GetCount(), wxString(), "Invalid combobox index" );
180
c84030e0 181 return GetComboPeer()->GetStringAtIndex(n);
4ddfa282
SC
182}
183
184wxString wxComboBox::GetStringSelection() const
185{
6f07c007
VZ
186 const int sel = GetSelection();
187 return sel == wxNOT_FOUND ? wxString() : GetString(sel);
4ddfa282
SC
188}
189
190void wxComboBox::SetString(unsigned int n, const wxString& s)
191{
c84030e0
KO
192 Delete(n);
193 Insert(s, n);
194 SetValue(s); // changing the item in the list won't update the display item
f941a30b
KO
195}
196
de5361fa 197void wxComboBox::EnableTextChangedEvents(bool WXUNUSED(enable))
f941a30b 198{
e567904a
VZ
199 // nothing to do here, events are never generated when we change the
200 // control value programmatically anyhow by Cocoa
f941a30b
KO
201}
202
de5361fa 203bool wxComboBox::OSXHandleClicked( double WXUNUSED(timestampsec) )
4ddfa282
SC
204{
205 wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, m_windowId );
206 event.SetInt(GetSelection());
207 event.SetEventObject(this);
208 event.SetString(GetStringSelection());
209 ProcessCommand(event);
210 return true;
211}
212
c84030e0
KO
213wxComboWidgetImpl* wxComboBox::GetComboPeer() const
214{
22756322 215 return dynamic_cast<wxComboWidgetImpl*> (GetPeer());
c84030e0
KO
216}
217
ff8cb900
VZ
218void wxComboBox::Popup()
219{
220 GetComboPeer()->Popup();
221}
222
223void wxComboBox::Dismiss()
224{
225 GetComboPeer()->Dismiss();
226}
227
c84030e0 228#endif // wxUSE_COMBOBOX && wxOSX_USE_COCOA