#include "wx/cocoa/string.h"
#include "wx/cocoa/autorelease.h"
+#include "wx/cocoa/ObjcRef.h"
+#include "wx/cocoa/private/scrollview.h"
#include "wx/cocoa/NSTableDataSource.h"
#import <Foundation/NSArray.h>
#import <Foundation/NSEnumerator.h>
#import <AppKit/NSTableView.h>
#import <AppKit/NSTableColumn.h>
+#import <AppKit/NSScrollView.h>
-IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)
+IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControlWithItems)
BEGIN_EVENT_TABLE(wxListBox, wxListBoxBase)
END_EVENT_TABLE()
WX_IMPLEMENT_COCOA_OWNER(wxListBox,NSTableView,NSControl,NSView)
return false;
// Provide the data
- m_cocoaItems = [[NSMutableArray arrayWithCapacity:n] retain];
+ m_cocoaItems = wxGCSafeRetain([NSMutableArray arrayWithCapacity:n]);
for(int i=0; i < n; i++)
{
[m_cocoaItems addObject: wxNSStringWithWxString(choices[i])];
[GetNSTableView() setHeaderView: nil];
// Set up the data source
- m_cocoaDataSource = [[wxCocoaNSTableDataSource alloc] init];
+ m_cocoaDataSource = [[WX_GET_OBJC_CLASS(wxCocoaNSTableDataSource) alloc] init];
[GetNSTableView() setDataSource:m_cocoaDataSource];
// Add the single column
CocoaCreateNSScrollView();
SetInitialFrameRect(pos,size);
+ [m_wxCocoaScrollView->GetNSScrollView() setHasVerticalScroller:YES];
+ // Pre-10.3: Always show vertical scroller, never show horizontal scroller
+ // Post-10.3: Show scrollers dynamically (turn them both on, set auto-hide)
+ if([m_wxCocoaScrollView->GetNSScrollView() respondsToSelector:@selector(setAutohidesScrollers:)])
+ {
+ [m_wxCocoaScrollView->GetNSScrollView() setHasHorizontalScroller:YES];
+ [m_wxCocoaScrollView->GetNSScrollView() setAutohidesScrollers:YES];
+ }
+
// Set up extended/multiple selection flags
if ((style & wxLB_EXTENDED) || (style & wxLB_MULTIPLE))
//diff is that mult requires shift down for multi selection
{
[GetNSTableView() setDataSource: nil];
[m_cocoaDataSource release];
- [m_cocoaItems release];
+ wxGCSafeRelease(m_cocoaItems);
+ m_cocoaItems = nil;
DisassociateNSTableView(GetNSTableView());
}
return [GetNSTableView() numberOfSelectedRows];
}
-void wxListBox::DoInsertItems(const wxArrayString& items, unsigned int pos)
+int wxListBox::DoInsertItems(const wxArrayStringsAdapter & items, unsigned int pos, void **clientData, wxClientDataType type)
{
wxAutoNSAutoreleasePool pool;
- for(int i=int(items.GetCount())-1; i >= 0; i--)
+ const unsigned int numItems = items.GetCount();
+ for ( unsigned int i = 0; i < numItems; ++i, ++pos )
{
[m_cocoaItems insertObject: wxNSStringWithWxString(items[i])
atIndex: pos];
- m_itemClientData.Insert(NULL,pos);
+ m_itemClientData.Insert(NULL, pos);
+ AssignNewItemClientData(pos, clientData, i, type);
}
- [GetNSTableView() reloadData];
-}
-void wxListBox::DoSetItems(const wxArrayString& items, void **clientData)
-{
- wxAutoNSAutoreleasePool pool;
-
- // Remove everything
- [m_cocoaItems removeAllObjects];
- m_itemClientData.Clear();
- // Provide the data
- for(unsigned int i=0; i < items.GetCount(); i++)
- {
- [m_cocoaItems addObject: wxNSStringWithWxString(items[i])];
- m_itemClientData.Add(clientData[i]);
- }
[GetNSTableView() reloadData];
+ return pos - 1;
}
void wxListBox::DoSetFirstItem(int n)
// pure virtuals from wxItemContainer
// deleting items
-void wxListBox::Clear()
+void wxListBox::DoClear()
{
[m_cocoaItems removeAllObjects];
m_itemClientData.Clear();
[GetNSTableView() reloadData];
}
-void wxListBox::Delete(unsigned int n)
+void wxListBox::DoDeleteOneItem(unsigned int n)
{
[m_cocoaItems removeObjectAtIndex:n];
m_itemClientData.RemoveAt(n);
return [GetNSTableView() selectedRow];
}
-int wxListBox::DoAppend(const wxString& item)
-{
- wxAutoNSAutoreleasePool pool;
- [m_cocoaItems addObject:wxNSStringWithWxString(item)];
- [GetNSTableView() reloadData];
- m_itemClientData.Add(NULL);
- return [m_cocoaItems count];
-}
-
void wxListBox::DoSetItemClientData(unsigned int n, void* clientData)
{
m_itemClientData[n] = clientData;
return m_itemClientData[n];
}
-void wxListBox::DoSetItemClientObject(unsigned int n, wxClientData* clientData)
-{
- m_itemClientData[n] = (void*) clientData;
-}
-
-wxClientData* wxListBox::DoGetItemClientObject(unsigned int n) const
-{
- return (wxClientData*) m_itemClientData[n];
-}
-
-#endif
+#endif // wxUSE_LISTBOX