1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/listbox.cpp
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
17 #include "wx/listbox.h"
18 #include "wx/button.h"
19 #include "wx/settings.h"
20 #include "wx/toplevel.h"
21 #include "wx/dynarray.h"
26 #include "wx/mac/uma.h"
28 const short kTextColumnId
= 1024 ;
30 // new DataBrowser-based version:
31 // because of the limited insert functionality of DataBrowser,
32 // we just introduce IDs corresponding to the line number
35 IMPLEMENT_DYNAMIC_CLASS(wxListBox
, wxControl
)
37 BEGIN_EVENT_TABLE(wxListBox
, wxControl
)
39 // EVT_SIZE( wxListBox::OnSize )
40 EVT_CHAR( wxListBox::OnChar
)
45 DataBrowserItemDataUPP gDataBrowserItemDataUPP
= NULL
;
46 DataBrowserItemNotificationUPP gDataBrowserItemNotificationUPP
= NULL
;
47 DataBrowserDrawItemUPP gDataBrowserDrawItemUPP
= NULL
;
50 #if TARGET_API_MAC_OSX
51 static pascal void DataBrowserItemNotificationProc(ControlRef browser
, DataBrowserItemID itemID
,
52 DataBrowserItemNotification message
, DataBrowserItemDataRef itemData
)
54 static pascal void DataBrowserItemNotificationProc(ControlRef browser
, DataBrowserItemID itemID
,
55 DataBrowserItemNotification message
)
58 long ref
= GetControlReference( browser
) ;
61 wxListBox
* list
= wxDynamicCast( (wxObject
*) ref
, wxListBox
) ;
63 if (i
>= 0 && i
< list
->GetCount() )
65 bool trigger
= false ;
66 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_SELECTED
, list
->GetId() );
69 case kDataBrowserItemDeselected
:
70 if ( list
->HasMultipleSelection() )
71 trigger
= !list
->MacIsSelectionSuppressed() ;
74 case kDataBrowserItemSelected
:
75 trigger
= !list
->MacIsSelectionSuppressed() ;
78 case kDataBrowserItemDoubleClicked
:
79 event
.SetEventType( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
) ;
89 event
.SetEventObject( list
);
90 if ( list
->HasClientObjectData() )
91 event
.SetClientObject( list
->GetClientObject( i
) );
92 else if ( list
->HasClientUntypedData() )
93 event
.SetClientData( list
->GetClientData( i
) );
94 event
.SetString( list
->GetString( i
) );
96 event
.SetExtraLong( list
->HasMultipleSelection() ? message
== kDataBrowserItemSelected
: true );
97 wxPostEvent( list
->GetEventHandler() , event
) ;
98 // direct notification is not always having the listbox GetSelection() having in synch with event
99 // list->GetEventHandler()->ProcessEvent(event) ;
105 static pascal OSStatus
ListBoxGetSetItemData(ControlRef browser
,
106 DataBrowserItemID itemID
, DataBrowserPropertyID property
,
107 DataBrowserItemDataRef itemData
, Boolean changeValue
)
109 OSStatus err
= errDataBrowserPropertyNotSupported
;
117 long ref
= GetControlReference( browser
) ;
120 wxListBox
* list
= wxDynamicCast( (wxObject
*) ref
, wxListBox
) ;
122 if (i
>= 0 && i
< list
->GetCount() )
124 wxMacCFStringHolder
cf( list
->GetString( i
) , list
->GetFont().GetEncoding() ) ;
125 verify_noerr( ::SetDataBrowserItemDataText( itemData
, cf
) ) ;
140 static pascal void ListBoxDrawProc( ControlRef browser
, DataBrowserItemID item
, DataBrowserPropertyID property
,
141 DataBrowserItemState itemState
, const Rect
*itemRect
, SInt16 depth
, Boolean isColorDevice
)
143 CFStringRef cfString
;
144 ThemeDrawingState themeState
;
147 GetThemeDrawingState( &themeState
) ;
148 cfString
= CFStringCreateWithFormat( NULL
, NULL
, CFSTR("Row %d"), item
);
150 // In this sample we handle the "selected" state; all others fall through to our "active" state
151 if ( itemState
== kDataBrowserItemIsSelected
)
153 ThemeBrush colorBrushID
;
155 Gestalt( gestaltSystemVersion
, &systemVersion
);
157 // TODO: switch over to wxSystemSettingsNative::GetColour() when kThemeBrushSecondaryHighlightColor is incorporated
158 // Panther DB starts using kThemeBrushSecondaryHighlightColor for inactive browser hilighting
159 if ( (systemVersion
>= 0x00001030) && !IsControlActive( browser
) )
160 colorBrushID
= kThemeBrushSecondaryHighlightColor
;
162 colorBrushID
= kThemeBrushPrimaryHighlightColor
;
164 // First paint the hilite rect, then the text on top
165 SetThemePen( colorBrushID
, 32, true );
166 PaintRect( itemRect
);
167 SetThemeDrawingState( themeState
, false ) ;
170 DrawThemeTextBox( cfString
, kThemeApplicationFont
, kThemeStateActive
, true, itemRect
, teFlushDefault
, NULL
);
171 SetThemeDrawingState( themeState
, true ) ;
173 if ( cfString
!= NULL
)
174 CFRelease( cfString
);
178 wxListBox::wxListBox()
183 m_suppressSelection
= false ;
186 bool wxListBox::Create(wxWindow
*parent
,
190 const wxArrayString
& choices
,
192 const wxValidator
& validator
,
193 const wxString
& name
)
195 wxCArrayString
chs(choices
);
197 return Create(parent
, id
, pos
, size
, chs
.GetCount(), chs
.GetStrings(),
198 style
, validator
, name
);
201 bool wxListBox::Create(wxWindow
*parent
,
206 const wxString choices
[],
208 const wxValidator
& validator
,
209 const wxString
& name
)
211 m_macIsUserPane
= false ;
213 wxASSERT_MSG( !(style
& wxLB_MULTIPLE
) || !(style
& wxLB_EXTENDED
),
214 _T("only one of listbox selection modes can be specified") );
216 if ( !wxListBoxBase::Create(parent
, id
, pos
, size
, style
& ~(wxHSCROLL
|wxVSCROLL
), validator
, name
) )
219 m_noItems
= 0 ; // this will be increased by our append command
222 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
224 m_peer
= new wxMacControl( this ) ;
226 ::CreateDataBrowserControl(
227 MAC_WXHWND(parent
->MacGetTopLevelWindowRef()), &bounds
,
228 kDataBrowserListView
, m_peer
->GetControlRefAddr() ) );
230 DataBrowserSelectionFlags options
= kDataBrowserDragSelect
;
231 if ( style
& wxLB_MULTIPLE
)
232 options
|= kDataBrowserAlwaysExtendSelection
| kDataBrowserCmdTogglesSelection
;
233 else if ( style
& wxLB_EXTENDED
)
234 ; // default behaviour
236 options
|= kDataBrowserSelectOnlyOne
;
238 verify_noerr( m_peer
->SetSelectionFlags( options
) );
240 if ( gDataBrowserItemDataUPP
== NULL
)
241 gDataBrowserItemDataUPP
= NewDataBrowserItemDataUPP(ListBoxGetSetItemData
) ;
242 if ( gDataBrowserItemNotificationUPP
== NULL
)
244 gDataBrowserItemNotificationUPP
=
245 #if TARGET_API_MAC_OSX
246 (DataBrowserItemNotificationUPP
) NewDataBrowserItemNotificationWithItemUPP(DataBrowserItemNotificationProc
) ;
248 NewDataBrowserItemNotificationUPP(DataBrowserItemNotificationProc
) ;
252 if ( gDataBrowserDrawItemUPP
== NULL
)
253 gDataBrowserDrawItemUPP
= NewDataBrowserDrawItemUPP(ListBoxDrawProc
) ;
255 DataBrowserCallbacks callbacks
;
256 InitializeDataBrowserCallbacks( &callbacks
, kDataBrowserLatestCallbacks
) ;
258 callbacks
.u
.v1
.itemDataCallback
= gDataBrowserItemDataUPP
;
259 callbacks
.u
.v1
.itemNotificationCallback
= gDataBrowserItemNotificationUPP
;
260 m_peer
->SetCallbacks( &callbacks
);
262 DataBrowserCustomCallbacks customCallbacks
;
263 InitializeDataBrowserCustomCallbacks( &customCallbacks
, kDataBrowserLatestCustomCallbacks
) ;
265 customCallbacks
.u
.v1
.drawItemCallback
= gDataBrowserDrawItemUPP
;
267 SetDataBrowserCustomCallbacks( m_peer
->GetControlRef() , &customCallbacks
) ;
269 DataBrowserListViewColumnDesc columnDesc
;
270 columnDesc
.headerBtnDesc
.titleOffset
= 0;
271 columnDesc
.headerBtnDesc
.version
= kDataBrowserListViewLatestHeaderDesc
;
272 columnDesc
.headerBtnDesc
.btnFontStyle
.flags
= kControlUseFontMask
| kControlUseJustMask
;
273 columnDesc
.headerBtnDesc
.btnContentInfo
.contentType
= kControlNoContent
;
274 columnDesc
.headerBtnDesc
.btnFontStyle
.just
= teFlushDefault
;
275 columnDesc
.headerBtnDesc
.minimumWidth
= 0;
276 columnDesc
.headerBtnDesc
.maximumWidth
= 10000;
278 columnDesc
.headerBtnDesc
.btnFontStyle
.font
= kControlFontViewSystemFont
;
279 columnDesc
.headerBtnDesc
.btnFontStyle
.style
= normal
;
280 columnDesc
.headerBtnDesc
.titleString
= NULL
; // CFSTR( "" );
282 columnDesc
.propertyDesc
.propertyID
= kTextColumnId
;
283 columnDesc
.propertyDesc
.propertyType
= kDataBrowserTextType
; // kDataBrowserCustomType;
284 columnDesc
.propertyDesc
.propertyFlags
= kDataBrowserTableViewSelectionColumn
;
286 #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
287 columnDesc
.propertyDesc
.propertyFlags
|= kDataBrowserListViewTypeSelectColumn
;
290 verify_noerr( m_peer
->AddListViewColumn( &columnDesc
, kDataBrowserListViewAppendColumn
) ) ;
291 verify_noerr( m_peer
->AutoSizeListViewColumns() ) ;
292 verify_noerr( m_peer
->SetHasScrollBars( false, true ) ) ;
293 verify_noerr( m_peer
->SetTableViewHiliteStyle( kDataBrowserTableViewFillHilite
) ) ;
294 verify_noerr( m_peer
->SetListViewHeaderBtnHeight( 0 ) ) ;
297 // shouldn't be necessary anymore under 10.2
298 m_peer
->SetData( kControlNoPart
, kControlDataBrowserIncludesFrameAndFocusTag
, (Boolean
) false ) ;
299 m_peer
->SetNeedsFocusRect( true ) ;
302 MacPostControlCreate( pos
, size
) ;
304 for ( int i
= 0 ; i
< n
; i
++ )
306 Append( choices
[i
] ) ;
309 // Needed because it is a wxControlWithItems
315 wxListBox::~wxListBox()
317 m_peer
->SetReference( 0 ) ;
320 // avoid access during destruction
325 void wxListBox::FreeData()
327 if ( HasClientObjectData() )
329 for ( size_t n
= 0; n
< (size_t)m_noItems
; n
++ )
331 delete GetClientObject( n
);
336 void wxListBox::DoSetSize(int x
, int y
,
337 int width
, int height
,
340 wxControl::DoSetSize( x
, y
, width
, height
, sizeFlags
) ;
343 void wxListBox::DoSetFirstItem(int n
)
348 void wxListBox::Delete(int n
)
350 wxCHECK_RET( n
>= 0 && n
< m_noItems
,
351 wxT("invalid index in wxListBox::Delete") );
353 if ( HasClientObjectData() )
354 delete GetClientObject( n
);
356 m_stringArray
.RemoveAt( n
) ;
357 m_dataArray
.RemoveAt( n
) ;
363 int wxListBox::DoAppend(const wxString
& item
)
365 InvalidateBestSize();
367 int index
= m_noItems
;
368 m_stringArray
.Add( item
) ;
369 m_dataArray
.Add( NULL
);
371 DoSetItemClientData( index
, NULL
) ;
377 void wxListBox::DoSetItems(const wxArrayString
& choices
, void** clientData
)
380 int n
= choices
.GetCount();
382 for ( int i
= 0 ; i
< n
; ++i
)
385 Append( choices
[i
] , clientData
[i
] ) ;
387 Append( choices
[i
] ) ;
391 int wxListBox::FindString(const wxString
& s
, bool bCase
) const
393 if ( s
.Right(1) == wxT("*") )
395 wxString search
= s
.Left( s
.Length() - 1 ) ;
396 int len
= search
.Length() ;
398 wxMacStringToPascal( search
, s2
) ;
400 for ( int i
= 0 ; i
< m_noItems
; ++ i
)
402 wxMacStringToPascal( m_stringArray
[i
].Left( len
) , s1
) ;
404 if ( EqualString( s1
, s2
, bCase
, false ) )
408 if ( s
.Left(1) == wxT("*") && s
.Length() > 1 )
413 for ( int i
= 0 ; i
< m_noItems
; ++i
)
415 if ( GetString( i
).Lower().Matches(st
) )
424 wxMacStringToPascal( s
, s2
) ;
426 for ( int i
= 0 ; i
< m_noItems
; ++ i
)
428 wxMacStringToPascal( m_stringArray
[i
] , s1
) ;
430 if ( EqualString( s1
, s2
, bCase
, false ) )
438 void wxListBox::Clear()
442 m_stringArray
.Empty() ;
443 m_dataArray
.Empty() ;
447 void wxListBox::DoSetSelection(int n
, bool select
)
449 wxCHECK_RET( n
== wxNOT_FOUND
|| (n
>= 0 && n
< m_noItems
) ,
450 wxT("invalid index in wxListBox::SetSelection") );
452 if ( n
== wxNOT_FOUND
)
455 MacSetSelection( n
, select
) ;
458 bool wxListBox::IsSelected(int n
) const
460 wxCHECK_MSG( n
>= 0 && n
< m_noItems
, false,
461 wxT("invalid index in wxListBox::Selected") );
463 return MacIsSelected( n
) ;
466 void *wxListBox::DoGetItemClientData(int n
) const
468 wxCHECK_MSG( n
>= 0 && n
< m_noItems
, NULL
,
469 wxT("invalid index in wxListBox::GetClientData"));
471 return (void *)m_dataArray
[n
];
474 wxClientData
*wxListBox::DoGetItemClientObject(int n
) const
476 return (wxClientData
*) DoGetItemClientData( n
) ;
479 void wxListBox::DoSetItemClientData(int n
, void *clientData
)
481 wxCHECK_RET( n
>= 0 && n
< m_noItems
,
482 wxT("invalid index in wxListBox::SetClientData") );
484 wxASSERT_MSG( m_dataArray
.GetCount() >= (size_t) n
, wxT("invalid client_data array") ) ;
486 if ( m_dataArray
.GetCount() > (size_t) n
)
487 m_dataArray
[n
] = (char*)clientData
;
489 m_dataArray
.Add( (char*)clientData
) ;
492 void wxListBox::DoSetItemClientObject(int n
, wxClientData
* clientData
)
494 DoSetItemClientData(n
, clientData
);
497 // Return number of selections and an array of selected integers
498 int wxListBox::GetSelections(wxArrayInt
& aSelections
) const
500 return MacGetSelections( aSelections
) ;
503 // Get single selection, for single choice list items
504 int wxListBox::GetSelection() const
506 return MacGetSelection() ;
509 // Find string for position
510 wxString
wxListBox::GetString(int n
) const
512 wxCHECK_MSG( n
>= 0 && n
< m_noItems
, wxEmptyString
,
513 wxT("invalid index in wxListBox::GetString") );
515 return m_stringArray
[n
] ;
518 void wxListBox::DoInsertItems(const wxArrayString
& items
, int pos
)
520 wxCHECK_RET( pos
>= 0 && pos
<= m_noItems
,
521 wxT("invalid index in wxListBox::InsertItems") );
523 InvalidateBestSize();
525 int nItems
= items
.GetCount();
527 for ( int i
= 0 ; i
< nItems
; i
++ )
529 m_stringArray
.Insert( items
[i
] , pos
+ i
) ;
530 m_dataArray
.Insert( NULL
, pos
+ i
) ;
532 MacInsert( pos
+ i
, items
[i
] ) ;
536 void wxListBox::SetString(int n
, const wxString
& s
)
538 m_stringArray
[n
] = s
;
542 wxSize
wxListBox::DoGetBestSize() const
544 int lbWidth
= 100; // some defaults
549 wxMacPortStateHelper
st( UMAGetWindowPort( (WindowRef
)MacGetTopLevelWindowRef() ) ) ;
551 // TODO: clean this up
554 ::TextFont( m_font
.MacGetFontNum() ) ;
555 ::TextSize( m_font
.MacGetFontSize() ) ;
556 ::TextFace( m_font
.MacGetFontStyle() ) ;
560 ::TextFont( kFontIDMonaco
) ;
565 // Find the widest line
566 for (int i
= 0; i
< GetCount(); i
++)
568 wxString
str( GetString( i
) );
571 Point bounds
= {0, 0} ;
574 // NB: what if m_font.Ok() == false ???
575 ::GetThemeTextDimensions(
576 wxMacCFStringHolder( str
, m_font
.GetEncoding() ) ,
577 kThemeCurrentPortFont
,
584 wLine
= ::TextWidth( str
.c_str() , 0 , str
.Length() ) ;
587 lbWidth
= wxMax( lbWidth
, wLine
);
590 // Add room for the scrollbar
591 lbWidth
+= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
593 // And just a bit more
595 int cx
= ::TextWidth( "X" , 0 , 1 ) ;
598 // don't make the listbox too tall (limit height to around 10 items)
599 // but don't make it too small neither
600 lbHeight
= wxMax( (cy
+ 4) * wxMin( wxMax( GetCount(), 3 ), 10 ), 70 );
603 return wxSize( lbWidth
, lbHeight
);
606 int wxListBox::GetCount() const
611 void wxListBox::Refresh(bool eraseBack
, const wxRect
*rect
)
613 wxControl::Refresh( eraseBack
, rect
) ;
616 // Some custom controls depend on this
617 /* static */ wxVisualAttributes
618 wxListBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
620 wxVisualAttributes attr
;
622 attr
.colFg
= wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT
);
623 attr
.colBg
= wxSystemSettings::GetColour( wxSYS_COLOUR_LISTBOX
);
624 attr
.font
= wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
629 // ============================================================================
630 // list box control implementation
631 // ============================================================================
633 void wxListBox::MacDelete( int n
)
635 wxArrayInt selectionBefore
;
636 MacGetSelections( selectionBefore
) ;
638 UInt32 id
= m_noItems
+ 1 ;
640 verify_noerr( m_peer
->RemoveItems( kDataBrowserNoItem
, 1 , (UInt32
*) &id
, kDataBrowserItemNoProperty
) ) ;
641 for ( size_t i
= 0 ; i
< selectionBefore
.GetCount() ; ++i
)
643 int current
= selectionBefore
[i
] ;
646 // selection was deleted
647 MacSetSelection( current
, false ) ;
649 else if ( current
> n
)
651 // something behind the deleted item was selected -> move up
652 MacSetSelection( current
- 1 , true ) ;
653 MacSetSelection( current
, false ) ;
660 kDataBrowserNoItem
, 1, (UInt32
*)kDataBrowserNoItem
,
661 kDataBrowserItemNoProperty
, kDataBrowserItemNoProperty
) ) ;
664 void wxListBox::MacInsert( int n
, const wxString
& text
)
666 wxArrayInt selectionBefore
;
667 MacGetSelections( selectionBefore
) ;
669 // this has already been increased
670 UInt32 id
= m_noItems
;
671 verify_noerr( m_peer
->AddItems( kDataBrowserNoItem
, 1 , (UInt32
*) &id
, kDataBrowserItemNoProperty
) ) ;
673 for ( int i
= selectionBefore
.GetCount()-1 ; i
>= 0 ; --i
)
675 int current
= selectionBefore
[i
] ;
678 MacSetSelection( current
+ 1 , true ) ;
679 MacSetSelection( current
, false ) ;
686 kDataBrowserNoItem
, 1, (UInt32
*)kDataBrowserNoItem
,
687 kDataBrowserItemNoProperty
, kDataBrowserItemNoProperty
) ) ;
690 void wxListBox::MacAppend( const wxString
& text
)
692 UInt32 id
= m_noItems
; // this has already been increased
693 verify_noerr( m_peer
->AddItems( kDataBrowserNoItem
, 1 , (UInt32
*) &id
, kDataBrowserItemNoProperty
) ) ;
694 // no need to deal with selections nor refreshed, as we have appended
697 void wxListBox::MacClear()
699 verify_noerr( m_peer
->RemoveItems( kDataBrowserNoItem
, 0 , NULL
, kDataBrowserItemNoProperty
) ) ;
702 void wxListBox::MacDeselectAll()
704 bool former
= MacSuppressSelection( true ) ;
705 verify_noerr(m_peer
->SetSelectedItems( 0 , NULL
, kDataBrowserItemsRemove
) ) ;
706 MacSuppressSelection( former
) ;
709 void wxListBox::MacSetSelection( int n
, bool select
)
711 bool former
= MacSuppressSelection( true ) ;
714 if ( m_peer
->IsItemSelected( id
) != select
)
717 verify_noerr( m_peer
->SetSelectedItems( 1 , & id
, HasMultipleSelection() ? kDataBrowserItemsAdd
: kDataBrowserItemsAssign
) ) ;
719 verify_noerr( m_peer
->SetSelectedItems( 1 , & id
, kDataBrowserItemsRemove
) ) ;
723 MacSuppressSelection( former
) ;
726 bool wxListBox::MacSuppressSelection( bool suppress
)
728 bool former
= m_suppressSelection
;
729 m_suppressSelection
= suppress
;
733 bool wxListBox::MacIsSelected( int n
) const
735 return m_peer
->IsItemSelected( n
+ 1 ) ;
738 int wxListBox::MacGetSelection() const
740 for ( int i
= 0 ; i
< GetCount() ; ++i
)
742 if ( m_peer
->IsItemSelected( i
+ 1 ) )
749 int wxListBox::MacGetSelections( wxArrayInt
& aSelections
) const
755 UInt32 first
, last
;
756 m_peer
->GetSelectionAnchor( &first
, &last
) ;
757 if ( first
!= kDataBrowserNoItem
)
759 for ( size_t i
= first
; i
<= last
; ++i
)
761 if ( m_peer
->IsItemSelected( i
) )
763 aSelections
.Add( i
- 1 ) ;
772 void wxListBox::MacSet( int n
, const wxString
& text
)
774 // as we don't store the strings we only have to issue a redraw
776 verify_noerr( m_peer
->UpdateItems( kDataBrowserNoItem
, 1 , &id
, kDataBrowserItemNoProperty
, kDataBrowserItemNoProperty
) ) ;
779 void wxListBox::MacScrollTo( int n
)
782 verify_noerr( m_peer
->RevealItem( id
, kTextColumnId
, kDataBrowserRevealWithoutSelecting
) ) ;
785 #if !TARGET_API_MAC_OSX
787 void wxListBox::OnChar(wxKeyEvent
& event
)
789 // TODO: trigger proper events here
793 if ( event
.GetKeyCode() == WXK_RETURN
|| event
.GetKeyCode() == WXK_NUMPAD_ENTER
)
795 wxWindow
* parent
= GetParent() ;
797 while ( parent
&& !parent
->IsTopLevel() && parent
->GetDefaultItem() == NULL
)
798 parent
= parent
->GetParent() ;
800 if ( parent
&& parent
->GetDefaultItem() )
802 wxButton
*def
= wxDynamicCast(parent
->GetDefaultItem(), wxButton
);
803 if ( def
&& def
->IsEnabled() )
805 wxCommandEvent
event( wxEVT_COMMAND_BUTTON_CLICKED
, def
->GetId() );
806 event
.SetEventObject( def
);
807 def
->Command( event
);
816 /* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
817 else if (event
.GetKeyCode() == WXK_ESCAPE
|| (event
.GetKeyCode() == '.' && event
.MetaDown() ) )
819 // FIXME: look in ancestors, not just parent.
820 wxWindow
* win
= GetParent()->FindWindow( wxID_CANCEL
) ;
823 wxCommandEvent
new_event(wxEVT_COMMAND_BUTTON_CLICKED
,wxID_CANCEL
);
824 new_event
.SetEventObject( win
);
825 win
->GetEventHandler()->ProcessEvent( new_event
);
828 else if ( event
.GetKeyCode() == WXK_TAB
)
830 wxNavigationKeyEvent new_event
;
831 new_event
.SetEventObject( this );
832 new_event
.SetDirection( !event
.ShiftDown() );
833 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
834 new_event
.SetWindowChange( event
.ControlDown() );
835 new_event
.SetCurrentFocus( this );
836 if ( !GetEventHandler()->ProcessEvent( new_event
) )
839 else if ( event
.GetKeyCode() == WXK_DOWN
|| event
.GetKeyCode() == WXK_UP
)
841 // perform the default key handling first
842 wxControl::OnKeyDown( event
) ;
844 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_SELECTED
, m_windowId
);
845 event
.SetEventObject( this );
847 wxArrayInt aSelections
;
848 int n
, count
= GetSelections(aSelections
);
852 if ( HasClientObjectData() )
853 event
.SetClientObject( GetClientObject( n
) );
854 else if ( HasClientUntypedData() )
855 event
.SetClientData( GetClientData( n
) );
856 event
.SetString( GetString( n
) );
865 GetEventHandler()->ProcessEvent(event
);
869 if ( event
.GetTimestamp() > m_lastTypeIn
+ 60 )
870 m_typeIn
= wxEmptyString
;
872 m_lastTypeIn
= event
.GetTimestamp() ;
873 m_typeIn
+= (char) event
.GetKeyCode() ;
874 int line
= FindString( wxT("*") + m_typeIn
+ wxT("*") ) ;
877 if ( GetSelection() != line
)
879 SetSelection( line
) ;
881 wxCommandEvent
event( wxEVT_COMMAND_LISTBOX_SELECTED
, m_windowId
);
882 event
.SetEventObject( this );
884 if ( HasClientObjectData() )
885 event
.SetClientObject( GetClientObject( line
) );
886 else if ( HasClientUntypedData() )
887 event
.SetClientData( GetClientData( line
) );
888 event
.SetString( GetString( line
) );
889 event
.SetInt( line
);
891 GetEventHandler()->ProcessEvent(event
);
897 #endif // !TARGET_API_MAC_OSX