1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/combobox.cpp
3 // Purpose: wxComboBox class
4 // Author: Stefan Csomor, Dan "Bud" Keith (composite combobox)
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/combobox.h"
19 #include "wx/button.h"
21 #include "wx/containr.h"
22 #include "wx/toplevel.h"
25 #include "wx/mac/uma.h"
27 IMPLEMENT_DYNAMIC_CLASS(wxComboBox
, wxControl
)
29 WX_DELEGATE_TO_CONTROL_CONTAINER(wxComboBox
, wxControl
)
31 BEGIN_EVENT_TABLE(wxComboBox
, wxControl
)
32 WX_EVENT_TABLE_CONTROL_CONTAINER(wxComboBox
)
36 static int nextPopUpMenuId
= 1000 ;
38 MenuHandle
NewUniqueMenu()
40 MenuHandle handle
= UMANewMenu(nextPopUpMenuId
, wxString(wxT("Menu")), wxFont::GetDefaultEncoding() );
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 // the margin between the text control and the choice
52 #if TARGET_API_MAC_OSX
53 // margin should be bigger on OS X due to blue highlight
54 // around text control.
55 static const wxCoord MARGIN
= 4;
56 // this is the border a focus rect on OSX is needing
57 static const int TEXTFOCUSBORDER
= 3 ;
59 static const wxCoord MARGIN
= 2;
60 static const int TEXTFOCUSBORDER
= 0 ;
62 static const int POPUPHEIGHT
= 23;
65 // ----------------------------------------------------------------------------
66 // wxComboBoxText: text control forwards events to combobox
67 // ----------------------------------------------------------------------------
69 class wxComboBoxText
: public wxTextCtrl
72 wxComboBoxText( wxComboBox
* cb
)
73 : wxTextCtrl( cb
, 1 )
76 SetTriggerOnSetValue( false );
80 void OnChar( wxKeyEvent
& event
)
82 // Allows processing the tab key to go to the next control
83 if (event
.GetKeyCode() == WXK_TAB
)
85 wxNavigationKeyEvent NavEvent
;
86 NavEvent
.SetEventObject(this);
87 NavEvent
.SetDirection(true);
88 NavEvent
.SetWindowChange(false);
90 // Get the parent of the combo and have it process the navigation?
91 if (m_cb
->GetParent()->GetEventHandler()->ProcessEvent(NavEvent
))
95 // send the event to the combobox class in case the user has bound EVT_CHAR
96 wxKeyEvent
kevt(event
);
97 kevt
.SetEventObject(m_cb
);
98 if (m_cb
->GetEventHandler()->ProcessEvent(kevt
))
99 // If the event was handled and not skipped then we're done
102 if ( event
.GetKeyCode() == WXK_RETURN
)
104 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_cb
->GetId());
105 event
.SetString( GetValue() );
106 event
.SetInt( m_cb
->GetSelection() );
107 event
.SetEventObject( m_cb
);
109 // This will invoke the dialog default action,
110 // such as the clicking the default button.
111 if (!m_cb
->GetEventHandler()->ProcessEvent( event
))
113 wxTopLevelWindow
*tlw
= wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow
);
114 if ( tlw
&& tlw
->GetDefaultItem() )
116 wxButton
*def
= wxDynamicCast(tlw
->GetDefaultItem(), wxButton
);
117 if ( def
&& def
->IsEnabled() )
119 wxCommandEvent
event( wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
120 event
.SetEventObject(def
);
132 void OnKeyUp( wxKeyEvent
& event
)
134 event
.SetEventObject(m_cb
);
135 event
.SetId(m_cb
->GetId());
136 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
140 void OnKeyDown( wxKeyEvent
& event
)
142 event
.SetEventObject(m_cb
);
143 event
.SetId(m_cb
->GetId());
144 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
148 void OnText( wxCommandEvent
& event
)
150 event
.SetEventObject(m_cb
);
151 event
.SetId(m_cb
->GetId());
152 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
159 DECLARE_EVENT_TABLE()
162 BEGIN_EVENT_TABLE(wxComboBoxText
, wxTextCtrl
)
163 EVT_KEY_DOWN(wxComboBoxText::OnKeyDown
)
164 EVT_CHAR(wxComboBoxText::OnChar
)
165 EVT_KEY_UP(wxComboBoxText::OnKeyUp
)
166 EVT_TEXT(wxID_ANY
, wxComboBoxText::OnText
)
169 class wxComboBoxChoice
: public wxChoice
172 wxComboBoxChoice( wxComboBox
*cb
, int style
)
173 : wxChoice( cb
, 1 , wxDefaultPosition
, wxDefaultSize
, 0 , NULL
, style
& (wxCB_SORT
) )
178 int GetPopupWidth() const
180 switch ( GetWindowVariant() )
182 case wxWINDOW_VARIANT_NORMAL
:
183 case wxWINDOW_VARIANT_LARGE
:
192 void OnChoice( wxCommandEvent
& e
)
194 wxString s
= e
.GetString();
196 m_cb
->DelegateChoice( s
);
197 wxCommandEvent
event2(wxEVT_COMMAND_COMBOBOX_SELECTED
, m_cb
->GetId() );
198 event2
.SetInt(m_cb
->GetSelection());
199 event2
.SetEventObject(m_cb
);
200 event2
.SetString(m_cb
->GetStringSelection());
201 m_cb
->ProcessCommand(event2
);
203 // For consistency with MSW and GTK, also send a text updated event
204 // After all, the text is updated when a selection is made
205 wxCommandEvent
TextEvent( wxEVT_COMMAND_TEXT_UPDATED
, m_cb
->GetId() );
206 TextEvent
.SetString( m_cb
->GetStringSelection() );
207 TextEvent
.SetEventObject( m_cb
);
208 m_cb
->ProcessCommand( TextEvent
);
211 virtual wxSize
DoGetBestSize() const
213 wxSize sz
= wxChoice::DoGetBestSize() ;
214 if (! m_cb
->HasFlag(wxCB_READONLY
) )
215 sz
.x
= GetPopupWidth() ;
223 friend class wxComboBox
;
225 DECLARE_EVENT_TABLE()
228 BEGIN_EVENT_TABLE(wxComboBoxChoice
, wxChoice
)
229 EVT_CHOICE(wxID_ANY
, wxComboBoxChoice::OnChoice
)
232 wxComboBox::~wxComboBox()
234 // delete client objects
237 // delete the controls now, don't leave them alive even though they would
238 // still be eventually deleted by our parent - but it will be too late, the
239 // user code expects them to be gone now
246 if (m_choice
!= NULL
)
253 // ----------------------------------------------------------------------------
255 // ----------------------------------------------------------------------------
257 wxSize
wxComboBox::DoGetBestSize() const
259 if (!m_choice
&& !m_text
)
262 wxSize size
= m_choice
->GetBestSize();
264 if ( m_text
!= NULL
)
266 wxSize sizeText
= m_text
->GetBestSize();
267 if (sizeText
.y
> size
.y
)
270 size
.x
= m_choice
->GetPopupWidth() + sizeText
.x
+ MARGIN
;
271 size
.x
+= TEXTFOCUSBORDER
;
272 size
.y
+= 2 * TEXTFOCUSBORDER
;
276 // clipping is too tight
283 void wxComboBox::DoMoveWindow(int x
, int y
, int width
, int height
)
285 wxControl::DoMoveWindow( x
, y
, width
, height
);
287 if ( m_text
== NULL
)
289 // we might not be fully constructed yet, therefore watch out...
291 m_choice
->SetSize(0, 0 , width
, -1);
295 wxCoord wText
= width
- m_choice
->GetPopupWidth() - MARGIN
;
296 m_text
->SetSize(TEXTFOCUSBORDER
, TEXTFOCUSBORDER
, wText
, -1);
298 // put it at an inset of 1 to have outer area shadows drawn as well
299 m_choice
->SetSize(TEXTFOCUSBORDER
+ wText
+ MARGIN
- 1 , TEXTFOCUSBORDER
, m_choice
->GetPopupWidth() , -1);
303 // ----------------------------------------------------------------------------
304 // operations forwarded to the subcontrols
305 // ----------------------------------------------------------------------------
307 bool wxComboBox::Enable(bool enable
)
309 if ( !wxControl::Enable(enable
) )
313 m_text
->Enable(enable
);
318 bool wxComboBox::Show(bool show
)
320 if ( !wxControl::Show(show
) )
326 void wxComboBox::DelegateTextChanged( const wxString
& value
)
328 SetStringSelection( value
);
331 void wxComboBox::DelegateChoice( const wxString
& value
)
333 SetStringSelection( value
);
336 void wxComboBox::Init()
338 m_container
.SetContainerWindow(this);
341 bool wxComboBox::Create(wxWindow
*parent
,
343 const wxString
& value
,
346 const wxArrayString
& choices
,
348 const wxValidator
& validator
,
349 const wxString
& name
)
351 wxCArrayString
chs( choices
);
353 return Create( parent
, id
, value
, pos
, size
, chs
.GetCount(),
354 chs
.GetStrings(), style
, validator
, name
);
357 bool wxComboBox::Create(wxWindow
*parent
,
359 const wxString
& value
,
363 const wxString choices
[],
365 const wxValidator
& validator
,
366 const wxString
& name
)
368 if ( !wxControl::Create(parent
, id
, wxDefaultPosition
, wxDefaultSize
, style
,
374 m_choice
= new wxComboBoxChoice(this, style
);
376 if ( style
& wxCB_READONLY
)
382 m_text
= new wxComboBoxText(this);
385 csize
.y
= m_text
->GetSize().y
;
386 csize
.y
+= 2 * TEXTFOCUSBORDER
;
390 DoSetSize(pos
.x
, pos
.y
, csize
.x
, csize
.y
);
392 for ( int i
= 0 ; i
< n
; i
++ )
394 m_choice
->DoAppend( choices
[ i
] );
397 // Needed because it is a wxControlWithItems
399 SetStringSelection(value
);
404 wxString
wxComboBox::GetValue() const
408 if ( m_text
== NULL
)
409 result
= m_choice
->GetString( m_choice
->GetSelection() );
411 result
= m_text
->GetValue();
416 unsigned int wxComboBox::GetCount() const
418 return m_choice
->GetCount() ;
421 void wxComboBox::SetValue(const wxString
& value
)
423 if ( HasFlag(wxCB_READONLY
) )
424 SetStringSelection( value
) ;
426 m_text
->SetValue( value
);
429 // Clipboard operations
431 void wxComboBox::Copy()
433 if ( m_text
!= NULL
)
437 void wxComboBox::Cut()
439 if ( m_text
!= NULL
)
443 void wxComboBox::Paste()
445 if ( m_text
!= NULL
)
449 void wxComboBox::SetEditable(bool editable
)
451 if ( ( m_text
== NULL
) && editable
)
453 m_text
= new wxComboBoxText( this );
455 else if ( ( m_text
!= NULL
) && !editable
)
461 int currentX
, currentY
;
462 GetPosition( ¤tX
, ¤tY
);
464 int currentW
, currentH
;
465 GetSize( ¤tW
, ¤tH
);
467 DoMoveWindow( currentX
, currentY
, currentW
, currentH
);
470 void wxComboBox::SetInsertionPoint(long pos
)
475 void wxComboBox::SetInsertionPointEnd()
480 long wxComboBox::GetInsertionPoint() const
486 wxTextPos
wxComboBox::GetLastPosition() const
492 void wxComboBox::Replace(long from
, long to
, const wxString
& value
)
497 void wxComboBox::Remove(long from
, long to
)
502 void wxComboBox::SetSelection(long from
, long to
)
507 int wxComboBox::DoAppend(const wxString
& item
)
509 return m_choice
->DoAppend( item
) ;
512 int wxComboBox::DoInsert(const wxString
& item
, unsigned int pos
)
514 return m_choice
->DoInsert( item
, pos
) ;
517 void wxComboBox::DoSetItemClientData(unsigned int n
, void* clientData
)
519 return m_choice
->DoSetItemClientData( n
, clientData
) ;
522 void* wxComboBox::DoGetItemClientData(unsigned int n
) const
524 return m_choice
->DoGetItemClientData( n
) ;
527 void wxComboBox::DoSetItemClientObject(unsigned int n
, wxClientData
* clientData
)
529 return m_choice
->DoSetItemClientObject(n
, clientData
);
532 wxClientData
* wxComboBox::DoGetItemClientObject(unsigned int n
) const
534 return m_choice
->DoGetItemClientObject( n
) ;
537 void wxComboBox::FreeData()
539 if ( HasClientObjectData() )
541 unsigned int count
= GetCount();
542 for ( unsigned int n
= 0; n
< count
; n
++ )
544 SetClientObject( n
, NULL
);
549 void wxComboBox::Delete(unsigned int n
)
551 // force client object deletion
552 if( HasClientObjectData() )
553 SetClientObject( n
, NULL
);
554 m_choice
->Delete( n
);
557 void wxComboBox::Clear()
563 int wxComboBox::GetSelection() const
565 return m_choice
->GetSelection();
568 void wxComboBox::SetSelection(int n
)
570 m_choice
->SetSelection( n
);
572 if ( m_text
!= NULL
)
573 m_text
->SetValue(GetString(n
));
576 int wxComboBox::FindString(const wxString
& s
, bool bCase
) const
578 return m_choice
->FindString( s
, bCase
);
581 wxString
wxComboBox::GetString(unsigned int n
) const
583 return m_choice
->GetString( n
);
586 wxString
wxComboBox::GetStringSelection() const
588 int sel
= GetSelection();
589 if (sel
!= wxNOT_FOUND
)
590 return wxString(this->GetString((unsigned int)sel
));
592 return wxEmptyString
;
595 void wxComboBox::SetString(unsigned int n
, const wxString
& s
)
597 m_choice
->SetString( n
, s
);
600 bool wxComboBox::IsEditable() const
602 return m_text
!= NULL
&& !HasFlag(wxCB_READONLY
);
605 void wxComboBox::Undo()
611 void wxComboBox::Redo()
617 void wxComboBox::SelectAll()
623 bool wxComboBox::CanCopy() const
626 return m_text
->CanCopy();
631 bool wxComboBox::CanCut() const
634 return m_text
->CanCut();
639 bool wxComboBox::CanPaste() const
642 return m_text
->CanPaste();
647 bool wxComboBox::CanUndo() const
650 return m_text
->CanUndo();
655 bool wxComboBox::CanRedo() const
658 return m_text
->CanRedo();
663 wxInt32
wxComboBox::MacControlHit( WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
666 For consistency with other platforms, clicking in the text area does not constitute a selection
667 wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, m_windowId );
668 event.SetInt(GetSelection());
669 event.SetEventObject(this);
670 event.SetString(GetStringSelection());
671 ProcessCommand(event);
677 #endif // wxUSE_COMBOBOX