1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/cocoa/combobox.mm
4 // Author: Stefan Csomor
7 // RCS-ID: $Id: combobox.mm 54129 2008-06-11 19:30:52Z SC $
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/combobox.h"
20 #include "wx/dcclient.h"
23 #include "wx/osx/cocoa/private/textimpl.h"
27 @interface wxNSComboBox : NSComboBox
33 @implementation wxNSComboBox
37 static BOOL initialized = NO;
41 wxOSXCocoaClassAddWXMethods( self );
45 - (void)controlTextDidChange:(NSNotification *)aNotification
47 wxUnusedVar(aNotification);
48 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
51 wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
53 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, wxpeer->GetId());
54 event.SetEventObject( wxpeer );
55 event.SetString( static_cast<wxComboBox*>(wxpeer)->GetValue() );
56 wxpeer->HandleWindowEvent( event );
61 - (void)comboBoxSelectionDidChange:(NSNotification *)notification
63 wxUnusedVar(notification);
64 wxWidgetCocoaImpl* impl = (wxWidgetCocoaImpl* ) wxWidgetImpl::FindFromWXWidget( self );
67 wxWindow* wxpeer = (wxWindow*) impl->GetWXPeer();
69 wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, wxpeer->GetId());
70 event.SetEventObject( wxpeer );
71 event.SetInt( static_cast<wxComboBox*>(wxpeer)->GetSelection() );
72 // For some reason, wxComboBox::GetValue will not return the newly selected item
73 // while we're inside this callback, so use AddPendingEvent to make sure
74 // GetValue() returns the right value.
75 wxpeer->GetEventHandler()->AddPendingEvent( event );
81 wxNSComboBoxControl::wxNSComboBoxControl( wxWindow *wxPeer, WXWidget w ) : wxNSTextFieldControl(wxPeer, w)
83 m_comboBox = (NSComboBox*)w;
86 wxNSComboBoxControl::~wxNSComboBoxControl()
90 int wxNSComboBoxControl::GetSelectedItem() const
92 return [m_comboBox indexOfSelectedItem];
95 void wxNSComboBoxControl::SetSelectedItem(int item)
97 wxASSERT_MSG(item >= 0 && item < [m_comboBox numberOfItems], "Inavlid item index.");
98 [m_comboBox selectItemAtIndex: item];
101 int wxNSComboBoxControl::GetNumberOfItems() const
103 return [m_comboBox numberOfItems];
106 void wxNSComboBoxControl::InsertItem(int pos, const wxString& item)
108 [m_comboBox insertItemWithObjectValue:wxCFStringRef( item , m_wxPeer->GetFont().GetEncoding() ).AsNSString() atIndex:pos];
111 void wxNSComboBoxControl::RemoveItem(int pos)
113 [m_comboBox removeItemAtIndex:pos];
116 void wxNSComboBoxControl::Clear()
118 [m_comboBox removeAllItems];
121 wxString wxNSComboBoxControl::GetStringAtIndex(int pos) const
123 return wxCFStringRef::AsString([m_comboBox itemObjectValueAtIndex:pos], m_wxPeer->GetFont().GetEncoding());
126 int wxNSComboBoxControl::FindString(const wxString& text) const
128 int result = [m_comboBox indexOfItemWithObjectValue:wxCFStringRef( text , m_wxPeer->GetFont().GetEncoding() ).AsNSString()];
129 if (result == NSNotFound)
130 result = wxNOT_FOUND;
134 wxWidgetImplType* wxWidgetImpl::CreateComboBox( wxWindowMac* wxpeer,
135 wxWindowMac* WXUNUSED(parent),
136 wxWindowID WXUNUSED(id),
140 long WXUNUSED(style),
141 long WXUNUSED(extraStyle))
143 NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
144 wxNSComboBox* v = [[wxNSComboBox alloc] initWithFrame:r];
145 wxNSComboBoxControl* c = new wxNSComboBoxControl( wxpeer, v );
149 #endif // wxUSE_COMBOBOX