From bcaadf7eaee19621c4fe283e23320f5239aa7f88 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Mon, 18 Aug 2003 02:14:53 +0000 Subject: [PATCH] some more wxListBox support git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/cocoa/listbox.h | 14 +++++-- src/cocoa/listbox.mm | 83 ++++++++++++++++++++++++++++++++++---- 2 files changed, 87 insertions(+), 10 deletions(-) diff --git a/include/wx/cocoa/listbox.h b/include/wx/cocoa/listbox.h index 5dbce39779..5d2dec15ba 100644 --- a/include/wx/cocoa/listbox.h +++ b/include/wx/cocoa/listbox.h @@ -12,12 +12,14 @@ #ifndef __WX_COCOA_LISTBOX_H__ #define __WX_COCOA_LISTBOX_H__ -//#include "wx/cocoa/NSTableView.h" +#include "wx/cocoa/NSTableView.h" + +#include "wx/dynarray.h" // ======================================================================== // wxListBox // ======================================================================== -class WXDLLEXPORT wxListBox: public wxListBoxBase //, protected wxCocoaNSTableView +class WXDLLEXPORT wxListBox: public wxListBoxBase, protected wxCocoaNSTableView { DECLARE_DYNAMIC_CLASS(wxListBox) DECLARE_EVENT_TABLE() @@ -26,7 +28,7 @@ class WXDLLEXPORT wxListBox: public wxListBoxBase //, protected wxCocoaNSTableVi // initialization // ------------------------------------------------------------------------ public: - wxListBox() { } + wxListBox() { m_cocoaItems = NULL; } wxListBox(wxWindow *parent, wxWindowID winid, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, @@ -51,6 +53,12 @@ public: // Cocoa callbacks // ------------------------------------------------------------------------ protected: + virtual int CocoaDataSource_numberOfRows(); + virtual struct objc_object* CocoaDataSource_objectForTableColumn( + WX_NSTableColumn tableColumn, int rowIndex); + WX_NSMutableArray m_cocoaItems; + wxArrayPtrVoid m_clientData; + struct objc_object *m_cocoaDataSource; // ------------------------------------------------------------------------ // Implementation // ------------------------------------------------------------------------ diff --git a/src/cocoa/listbox.mm b/src/cocoa/listbox.mm index 4a00720bcc..384e24b6b4 100644 --- a/src/cocoa/listbox.mm +++ b/src/cocoa/listbox.mm @@ -13,12 +13,18 @@ #include "wx/listbox.h" #include "wx/log.h" -#import +#include "wx/cocoa/string.h" +#include "wx/cocoa/NSTableDataSource.h" + +#import +#import +#import +#import IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl) BEGIN_EVENT_TABLE(wxListBox, wxListBoxBase) END_EVENT_TABLE() -// WX_IMPLEMENT_COCOA_OWNER(wxListBox,NSButton,NSControl,NSView) +WX_IMPLEMENT_COCOA_OWNER(wxListBox,NSTableView,NSControl,NSView) bool wxListBox::Create(wxWindow *parent, wxWindowID winid, const wxPoint& pos, @@ -31,41 +37,104 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID winid, if(!CreateControl(parent,winid,pos,size,style,validator,name)) return false; - SetNSView([[NSView alloc] initWithFrame: NSMakeRect(10,10,20,20)]); + // Provide the data + m_cocoaItems = [[NSMutableArray arrayWithCapacity:n] retain]; + for(int i=0; i < n; i++) + { + [m_cocoaItems addObject: wxNSStringWithWxString(choices[i])]; + } + // Remove everything + m_clientData.Clear(); + // Initialize n elements to NULL + m_clientData.SetCount(n,NULL); + + SetNSTableView([[NSTableView alloc] initWithFrame: MakeDefaultNSRect(size)]); [m_cocoaNSView release]; + // Set up the data source + m_cocoaDataSource = [[wxCocoaNSTableDataSource alloc] init]; + [GetNSTableView() setDataSource:m_cocoaDataSource]; + + // Add the single column + NSTableColumn *tableColumn = [[NSTableColumn alloc] initWithIdentifier:nil]; + [GetNSTableView() addTableColumn: tableColumn]; +// [tableColumn release]; + + // Finish if(m_parent) m_parent->CocoaAddChild(this); + SetInitialFrameRect(pos,size); + return true; } wxListBox::~wxListBox() { - CocoaRemoveFromParent(); - SetNSView(NULL); + [GetNSTableView() setDataSource: nil]; + [m_cocoaDataSource release]; + [m_cocoaItems release]; + DisassociateNSTableView(m_cocoaNSView); +} + +int wxListBox::CocoaDataSource_numberOfRows() +{ + return [m_cocoaItems count]; +} + +struct objc_object* wxListBox::CocoaDataSource_objectForTableColumn( + WX_NSTableColumn tableColumn, int rowIndex) +{ + return [m_cocoaItems objectAtIndex:rowIndex]; } // pure virtuals from wxListBoxBase bool wxListBox::IsSelected(int n) const { - return false; + return [GetNSTableView() isRowSelected: n]; } void wxListBox::SetSelection(int n, bool select) { + if(select) + [GetNSTableView() selectRow: n byExtendingSelection:NO]; + else + [GetNSTableView() deselectRow: n]; } int wxListBox::GetSelections(wxArrayInt& aSelections) const { - return 0; + aSelections.Clear(); + NSEnumerator *enumerator = [GetNSTableView() selectedRowEnumerator]; + while(NSNumber *num = [enumerator nextObject]) + { + aSelections.Add([num intValue]); + } + return [GetNSTableView() numberOfSelectedRows]; } void wxListBox::DoInsertItems(const wxArrayString& items, int pos) { + for(int i=int(items.GetCount())-1; i >= 0; i--) + { + [m_cocoaItems insertObject: wxNSStringWithWxString(items[i]) + atIndex: pos]; + m_clientData.Insert(NULL,pos); + } + [GetNSTableView() reloadData]; } void wxListBox::DoSetItems(const wxArrayString& items, void **clientData) { + // Remove everything + [m_cocoaItems removeAllObjects]; + m_clientData.Clear(); + // Provide the data + for(size_t i=0; i < items.GetCount(); i++) + { + [m_cocoaItems addObject: wxNSStringWithWxString(items[i])]; + m_clientData.Add(clientData[i]); + } + [GetNSTableView() reloadData]; } void wxListBox::DoSetFirstItem(int n) -- 2.45.2