// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-#include "wx/app.h"
-#include "wx/listbox.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+ #include "wx/log.h"
+ #include "wx/app.h"
+ #include "wx/listbox.h"
+#endif //WX_PRECOMP
#include "wx/cocoa/string.h"
+#include "wx/cocoa/autorelease.h"
#include "wx/cocoa/NSTableDataSource.h"
#import <Foundation/NSArray.h>
END_EVENT_TABLE()
WX_IMPLEMENT_COCOA_OWNER(wxListBox,NSTableView,NSControl,NSView)
+bool wxListBox::Create(wxWindow *parent, wxWindowID winid,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style,
+ const wxValidator& validator,
+ const wxString& name)
+{
+ wxCArrayString chs(choices);
+
+ return Create(parent, winid, pos, size, chs.GetCount(), chs.GetStrings(),
+ style, validator, name);
+}
+
bool wxListBox::Create(wxWindow *parent, wxWindowID winid,
const wxPoint& pos,
const wxSize& size,
const wxValidator& validator,
const wxString& name)
{
+ wxAutoNSAutoreleasePool pool;
if(!CreateControl(parent,winid,pos,size,style,validator,name))
return false;
SetNSTableView([[NSTableView alloc] initWithFrame: MakeDefaultNSRect(size)]);
[m_cocoaNSView release];
+ [GetNSTableView() setHeaderView: nil];
// Set up the data source
m_cocoaDataSource = [[wxCocoaNSTableDataSource alloc] init];
// Add the single column
NSTableColumn *tableColumn = [[NSTableColumn alloc] initWithIdentifier:nil];
[GetNSTableView() addTableColumn: tableColumn];
-// [tableColumn release];
+ [tableColumn release];
+ [GetNSTableView() sizeToFit];
// Finish
if(m_parent)
m_parent->CocoaAddChild(this);
+ // NSTableView does WEIRD things with sizes. Wrapping it in an
+ // NSScrollView seems to be the only reasonable solution.
+ CocoaCreateNSScrollView();
SetInitialFrameRect(pos,size);
return true;
[GetNSTableView() setDataSource: nil];
[m_cocoaDataSource release];
[m_cocoaItems release];
- DisassociateNSTableView(m_cocoaNSView);
+ DisassociateNSTableView(GetNSTableView());
}
int wxListBox::CocoaDataSource_numberOfRows()