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"
17 #include "wx/button.h"
19 #include "wx/mac/uma.h"
21 IMPLEMENT_DYNAMIC_CLASS(wxComboBox
, wxControl
)
24 static int nextPopUpMenuId
= 1000 ;
26 MenuHandle
NewUniqueMenu()
28 MenuHandle handle
= NewMenu( nextPopUpMenuId
, "\pMenu" ) ;
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
39 // the margin between the text control and the choice
40 #if TARGET_API_MAC_OSX
41 // margin should be bigger on OS X due to blue highlight
42 // around text control.
43 static const wxCoord MARGIN
= 4;
44 // this is the border a focus rect on OSX is needing
45 static const int TEXTFOCUSBORDER
= 3 ;
47 static const wxCoord MARGIN
= 2;
48 static const int TEXTFOCUSBORDER
= 0 ;
50 static const int POPUPHEIGHT
= 23;
53 // ----------------------------------------------------------------------------
54 // wxComboBoxText: text control forwards events to combobox
55 // ----------------------------------------------------------------------------
57 class wxComboBoxText
: public wxTextCtrl
60 wxComboBoxText( wxComboBox
* cb
)
61 : wxTextCtrl( cb
, 1 )
67 void OnChar( wxKeyEvent
& event
)
69 // Allows processing the tab key to go to the next control
70 if (event
.GetKeyCode() == WXK_TAB
)
72 wxNavigationKeyEvent NavEvent
;
73 NavEvent
.SetEventObject(this);
74 NavEvent
.SetDirection(true);
75 NavEvent
.SetWindowChange(false);
77 // Get the parent of the combo and have it process the navigation?
78 if (m_cb
->GetParent()->GetEventHandler()->ProcessEvent(NavEvent
))
82 // send the event to the combobox class in case the user has bound EVT_CHAR
83 wxKeyEvent
kevt(event
);
84 kevt
.SetEventObject(m_cb
);
85 if (m_cb
->GetEventHandler()->ProcessEvent(kevt
))
86 // If the event was handled and not skipped then we're done
89 if ( event
.GetKeyCode() == WXK_RETURN
)
91 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_cb
->GetId());
92 event
.SetString( GetValue() );
93 event
.SetInt( m_cb
->GetSelection() );
94 event
.SetEventObject( m_cb
);
96 // This will invoke the dialog default action,
97 // such as the clicking the default button.
98 if (!m_cb
->GetEventHandler()->ProcessEvent( event
))
100 wxWindow
*parent
= GetParent();
101 while ( parent
&& !parent
->IsTopLevel() && parent
->GetDefaultItem() == NULL
)
102 parent
= parent
->GetParent() ;
104 if ( parent
&& parent
->GetDefaultItem() )
106 wxButton
*def
= wxDynamicCast(parent
->GetDefaultItem(), wxButton
);
107 if ( def
&& def
->IsEnabled() )
109 wxCommandEvent
event( wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
110 event
.SetEventObject(def
);
122 void OnKeyUp( wxKeyEvent
& event
)
124 event
.SetEventObject(m_cb
);
125 event
.SetId(m_cb
->GetId());
126 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
130 void OnKeyDown( wxKeyEvent
& event
)
132 event
.SetEventObject(m_cb
);
133 event
.SetId(m_cb
->GetId());
134 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
138 void OnText( wxCommandEvent
& event
)
140 event
.SetEventObject(m_cb
);
141 event
.SetId(m_cb
->GetId());
142 if (! m_cb
->GetEventHandler()->ProcessEvent(event
))
149 DECLARE_EVENT_TABLE()
152 BEGIN_EVENT_TABLE(wxComboBoxText
, wxTextCtrl
)
153 EVT_KEY_DOWN(wxComboBoxText::OnKeyDown
)
154 EVT_CHAR(wxComboBoxText::OnChar
)
155 EVT_KEY_UP(wxComboBoxText::OnKeyUp
)
156 EVT_TEXT(-1, wxComboBoxText::OnText
)
159 class wxComboBoxChoice
: public wxChoice
162 wxComboBoxChoice( wxComboBox
*cb
, int style
)
163 : wxChoice( cb
, 1 , wxDefaultPosition
, wxDefaultSize
, 0 , NULL
, style
& (wxCB_SORT
) )
168 int GetPopupWidth() const
170 switch ( GetWindowVariant() )
172 case wxWINDOW_VARIANT_NORMAL
:
173 case wxWINDOW_VARIANT_LARGE
:
182 void OnChoice( wxCommandEvent
& e
)
184 wxString s
= e
.GetString();
186 m_cb
->DelegateChoice( s
);
187 wxCommandEvent
event2(wxEVT_COMMAND_COMBOBOX_SELECTED
, m_cb
->GetId() );
188 event2
.SetInt(m_cb
->GetSelection());
189 event2
.SetEventObject(m_cb
);
190 event2
.SetString(m_cb
->GetStringSelection());
191 m_cb
->ProcessCommand(event2
);
193 // For consistency with MSW and GTK, also send a text updated event
194 // After all, the text is updated when a selection is made
195 wxCommandEvent
TextEvent( wxEVT_COMMAND_TEXT_UPDATED
, m_cb
->GetId() );
196 TextEvent
.SetString( m_cb
->GetStringSelection() );
197 TextEvent
.SetEventObject( m_cb
);
198 m_cb
->ProcessCommand( TextEvent
);
201 virtual wxSize
DoGetBestSize() const
203 wxSize sz
= wxChoice::DoGetBestSize() ;
204 if (! m_cb
->HasFlag(wxCB_READONLY
) )
205 sz
.x
= GetPopupWidth() ;
213 DECLARE_EVENT_TABLE()
216 BEGIN_EVENT_TABLE(wxComboBoxChoice
, wxChoice
)
217 EVT_CHOICE(-1, wxComboBoxChoice::OnChoice
)
220 wxComboBox::~wxComboBox()
222 // delete client objects
225 // delete the controls now, don't leave them alive even though they would
226 // still be eventually deleted by our parent - but it will be too late, the
227 // user code expects them to be gone now
234 if (m_choice
!= NULL
)
241 // ----------------------------------------------------------------------------
243 // ----------------------------------------------------------------------------
245 wxSize
wxComboBox::DoGetBestSize() const
247 if (!m_choice
&& !m_text
)
250 wxSize size
= m_choice
->GetBestSize();
252 if ( m_text
!= NULL
)
254 wxSize sizeText
= m_text
->GetBestSize();
255 if (sizeText
.y
> size
.y
)
258 size
.x
= m_choice
->GetPopupWidth() + sizeText
.x
+ MARGIN
;
259 size
.x
+= TEXTFOCUSBORDER
;
260 size
.y
+= 2 * TEXTFOCUSBORDER
;
264 // clipping is too tight
271 void wxComboBox::DoMoveWindow(int x
, int y
, int width
, int height
)
273 wxControl::DoMoveWindow( x
, y
, width
, height
);
275 if ( m_text
== NULL
)
277 // we might not be fully constructed yet, therefore watch out...
279 m_choice
->SetSize(0, 0 , width
, -1);
283 wxCoord wText
= width
- m_choice
->GetPopupWidth() - MARGIN
;
284 m_text
->SetSize(TEXTFOCUSBORDER
, TEXTFOCUSBORDER
, wText
, -1);
286 // put it at an inset of 1 to have outer area shadows drawn as well
287 m_choice
->SetSize(TEXTFOCUSBORDER
+ wText
+ MARGIN
- 1 , TEXTFOCUSBORDER
, m_choice
->GetPopupWidth() , -1);
291 // ----------------------------------------------------------------------------
292 // operations forwarded to the subcontrols
293 // ----------------------------------------------------------------------------
295 bool wxComboBox::Enable(bool enable
)
297 if ( !wxControl::Enable(enable
) )
301 m_text
->Enable(enable
);
306 bool wxComboBox::Show(bool show
)
308 if ( !wxControl::Show(show
) )
314 void wxComboBox::SetFocus()
320 void wxComboBox::DelegateTextChanged( const wxString
& value
)
322 SetStringSelection( value
);
325 void wxComboBox::DelegateChoice( const wxString
& value
)
327 SetStringSelection( value
);
330 bool wxComboBox::Create(wxWindow
*parent
,
332 const wxString
& value
,
335 const wxArrayString
& choices
,
337 const wxValidator
& validator
,
338 const wxString
& name
)
340 wxCArrayString
chs( choices
);
342 return Create( parent
, id
, value
, pos
, size
, chs
.GetCount(),
343 chs
.GetStrings(), style
, validator
, name
);
346 bool wxComboBox::Create(wxWindow
*parent
,
348 const wxString
& value
,
352 const wxString choices
[],
354 const wxValidator
& validator
,
355 const wxString
& name
)
357 if ( !wxControl::Create(parent
, id
, wxDefaultPosition
, wxDefaultSize
, style
,
363 m_choice
= new wxComboBoxChoice(this, style
);
365 if ( style
& wxCB_READONLY
)
371 m_text
= new wxComboBoxText(this);
374 csize
.y
= m_text
->GetSize().y
;
375 csize
.y
+= 2 * TEXTFOCUSBORDER
;
379 DoSetSize(pos
.x
, pos
.y
, csize
.x
, csize
.y
);
381 for ( int i
= 0 ; i
< n
; i
++ )
383 m_choice
->DoAppend( choices
[ i
] );
386 // Needed because it is a wxControlWithItems
388 SetStringSelection(value
);
393 wxString
wxComboBox::GetValue() const
397 if ( m_text
== NULL
)
398 result
= m_choice
->GetString( m_choice
->GetSelection() );
400 result
= m_text
->GetValue();
405 int wxComboBox::GetCount() const
407 return m_choice
->GetCount() ;
410 void wxComboBox::SetValue(const wxString
& value
)
412 if ( HasFlag(wxCB_READONLY
) )
413 SetStringSelection( value
) ;
415 m_text
->SetValue( value
);
418 // Clipboard operations
420 void wxComboBox::Copy()
422 if ( m_text
!= NULL
)
426 void wxComboBox::Cut()
428 if ( m_text
!= NULL
)
432 void wxComboBox::Paste()
434 if ( m_text
!= NULL
)
438 void wxComboBox::SetEditable(bool editable
)
440 if ( ( m_text
== NULL
) && editable
)
442 m_text
= new wxComboBoxText( this );
444 else if ( ( m_text
!= NULL
) && !editable
)
450 int currentX
, currentY
;
451 GetPosition( ¤tX
, ¤tY
);
453 int currentW
, currentH
;
454 GetSize( ¤tW
, ¤tH
);
456 DoMoveWindow( currentX
, currentY
, currentW
, currentH
);
459 void wxComboBox::SetInsertionPoint(long pos
)
464 void wxComboBox::SetInsertionPointEnd()
469 long wxComboBox::GetInsertionPoint() const
475 wxTextPos
wxComboBox::GetLastPosition() const
481 void wxComboBox::Replace(long from
, long to
, const wxString
& value
)
486 void wxComboBox::Remove(long from
, long to
)
491 void wxComboBox::SetSelection(long from
, long to
)
496 int wxComboBox::DoAppend(const wxString
& item
)
498 return m_choice
->DoAppend( item
) ;
501 int wxComboBox::DoInsert(const wxString
& item
, int pos
)
503 return m_choice
->DoInsert( item
, pos
) ;
506 void wxComboBox::DoSetItemClientData(int n
, void* clientData
)
508 return m_choice
->DoSetItemClientData( n
, clientData
) ;
511 void* wxComboBox::DoGetItemClientData(int n
) const
513 return m_choice
->DoGetItemClientData( n
) ;
516 void wxComboBox::DoSetItemClientObject(int n
, wxClientData
* clientData
)
518 return m_choice
->DoSetItemClientObject( n
, clientData
) ;
521 wxClientData
* wxComboBox::DoGetItemClientObject(int n
) const
523 return m_choice
->DoGetItemClientObject( n
) ;
526 void wxComboBox::FreeData()
528 if ( HasClientObjectData() )
530 size_t count
= GetCount();
531 for ( size_t n
= 0; n
< count
; n
++ )
533 SetClientObject( n
, NULL
);
538 void wxComboBox::Delete(int n
)
540 // force client object deletion
541 if( HasClientObjectData() )
542 SetClientObject( n
, NULL
);
543 m_choice
->Delete( n
);
546 void wxComboBox::Clear()
552 int wxComboBox::GetSelection() const
554 return m_choice
->GetSelection();
557 void wxComboBox::SetSelection(int n
)
559 m_choice
->SetSelection( n
);
561 if ( m_text
!= NULL
)
562 m_text
->SetValue( GetString( n
) );
565 int wxComboBox::FindString(const wxString
& s
, bool bCase
) const
567 return m_choice
->FindString( s
, bCase
);
570 wxString
wxComboBox::GetString(int n
) const
572 return m_choice
->GetString( n
);
575 wxString
wxComboBox::GetStringSelection() const
577 int sel
= GetSelection();
579 return wxString(this->GetString (sel
));
581 return wxEmptyString
;
584 void wxComboBox::SetString(int n
, const wxString
& s
)
586 m_choice
->SetString( n
, s
) ;
589 bool wxComboBox::IsEditable() const
591 return m_text
!= NULL
&& !HasFlag(wxCB_READONLY
);
594 void wxComboBox::Undo()
600 void wxComboBox::Redo()
606 void wxComboBox::SelectAll()
612 bool wxComboBox::CanCopy() const
615 return m_text
->CanCopy();
620 bool wxComboBox::CanCut() const
623 return m_text
->CanCut();
628 bool wxComboBox::CanPaste() const
631 return m_text
->CanPaste();
636 bool wxComboBox::CanUndo() const
639 return m_text
->CanUndo();
644 bool wxComboBox::CanRedo() const
647 return m_text
->CanRedo();
652 wxInt32
wxComboBox::MacControlHit( WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
655 For consistency with other platforms, clicking in the text area does not constitute a selection
656 wxCommandEvent event(wxEVT_COMMAND_COMBOBOX_SELECTED, m_windowId );
657 event.SetInt(GetSelection());
658 event.SetEventObject(this);
659 event.SetString(GetStringSelection());
660 ProcessCommand(event);