#if wxUSE_LISTBOX
#include "wx/listbox.h"
+#include "wx/dnd.h"
#ifndef WX_PRECOMP
#include "wx/log.h"
objectValueForTableColumn:(NSTableColumn *)aTableColumn
row:(NSInteger)rowIndex;
-- (id)tableView:(NSTableView *)aTableView
- setObjectValue:(NSTableColumn *)aTableColumn
+- (void)tableView:(NSTableView *)aTableView
+ setObjectValue:(id)value forTableColumn:(NSTableColumn *)aTableColumn
row:(NSInteger)rowIndex;
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
@interface wxNSTableView : NSTableView
{
- wxListWidgetCocoaImpl* impl;
}
-- (void)setImplementation: (wxListWidgetCocoaImpl *) theImplementation;
-- (wxListWidgetCocoaImpl*) implementation;
-
@end
//
}
virtual void UpdateLine( unsigned int n, wxListWidgetColumn* col = NULL ) ;
virtual void UpdateLineToEnd( unsigned int n);
+
+ virtual void controlAction(WXWidget slf, void* _cmd, void *sender);
+ virtual void controlDoubleAction(void* _cmd);
protected :
wxNSTableView* m_tableView ;
@implementation wxNSTableView
-- (void)setImplementation: (wxListWidgetCocoaImpl *) theImplementation
-{
- impl = theImplementation;
-}
-
-- (wxListWidgetCocoaImpl*) implementation
++ (void)initialize
{
- return impl;
+ static BOOL initialized = NO;
+ if (!initialized)
+ {
+ initialized = YES;
+ wxOSXCocoaClassAddWXMethods( self );
+ }
}
-
@end
//
wxListWidgetCocoaImpl::wxListWidgetCocoaImpl( wxWindowMac* peer, NSScrollView* view, wxNSTableView* tableview, wxNSTableDataSource* data ) :
wxWidgetCocoaImpl( peer, view ), m_tableView(tableview), m_dataSource(data)
{
+ InstallEventHandler( tableview );
}
wxListWidgetCocoaImpl::~wxListWidgetCocoaImpl()
{
[col1 setMaxWidth:defaultWidth];
[col1 setMinWidth:defaultWidth];
+ [col1 setWidth:defaultWidth];
}
-
+ else
+ {
+ [col1 setMaxWidth:1000];
+ [col1 setMinWidth:10];
+ // temporary hack, because I cannot get the automatic column resizing
+ // to work properly
+ [col1 setWidth:1000];
+ }
+ [col1 setResizingMask: NSTableColumnAutoresizingMask];
wxCocoaTableColumn* wxcol = new wxCocoaTableColumn( col1, editable );
[col1 setColumn:wxcol];
{
[col1 setMaxWidth:defaultWidth];
[col1 setMinWidth:defaultWidth];
+ [col1 setWidth:defaultWidth];
}
+ [col1 setResizingMask: NSTableColumnNoResizing];
wxCocoaTableColumn* wxcol = new wxCocoaTableColumn( col1, editable );
[col1 setColumn:wxcol];
int wxListWidgetCocoaImpl::ListGetSelection() const
{
- return 0;
+ return [m_tableView selectedRow];
}
int wxListWidgetCocoaImpl::ListGetSelections( wxArrayInt& aSelections ) const
{
- return 0;
+ aSelections.Empty();
+
+ int count = ListGetCount();
+
+ for ( int i = 0; i < count; ++i)
+ {
+ if ([m_tableView isRowSelected:count])
+ aSelections.Add(i);
+ }
+
+ return aSelections.Count();
}
bool wxListWidgetCocoaImpl::ListIsSelected( unsigned int n ) const
{
- return false;
+ return [m_tableView isRowSelected:n];
}
// display
[m_tableView reloadData];
}
+void wxListWidgetCocoaImpl::controlAction(WXWidget slf,void* _cmd, void *sender)
+{
+ wxListBox *list = static_cast<wxListBox*> ( GetWXPeer());
+ wxCHECK_RET( list != NULL , wxT("Listbox expected"));
+
+ wxCommandEvent event( wxEVT_COMMAND_LISTBOX_SELECTED, list->GetId() );
+
+ int sel = [m_tableView clickedRow];
+ if ((sel < 0) || (sel > (int) list->GetCount())) // OS X can select an item below the last item (why?)
+ return;
+
+ list->HandleLineEvent( sel, false );
+}
+
+void wxListWidgetCocoaImpl::controlDoubleAction(void* _cmd)
+{
+ wxListBox *list = static_cast<wxListBox*> ( GetWXPeer());
+ wxCHECK_RET( list != NULL , wxT("Listbox expected"));
+
+ int sel = [m_tableView clickedRow];
+ if ((sel < 0) || (sel > (int) list->GetCount())) // OS X can select an item below the last item (why?)
+ return;
+
+ list->HandleLineEvent( sel, true );
+}
// accessing content
long style,
long extraStyle)
{
- NSView* superv = (wxpeer->GetParent()->GetHandle() );
-
NSRect r = wxOSXGetFrameForControl( wxpeer, pos , size ) ;
NSScrollView* scrollview = [[NSScrollView alloc] initWithFrame:r];
[scrollview setHasHorizontalScroller:YES];
[scrollview setAutohidesScrollers: ((style & wxLB_ALWAYS_SB) ? NO : YES)];
-
+
// setting up the true table
wxNSTableView* tableview = [[wxNSTableView alloc] init];
- [scrollview setDocumentView:tableview];
- [tableview release];
-
// only one multi-select mode available
if ( (style & wxLB_EXTENDED) || (style & wxLB_MULTIPLE) )
[tableview setAllowsMultipleSelection:YES];
// simple listboxes have no header row
[tableview setHeaderView:nil];
- [tableview setColumnAutoresizingStyle:NSTableViewLastColumnOnlyAutoresizingStyle];
+ if ( style & wxLB_HSCROLL )
+ [tableview setColumnAutoresizingStyle:NSTableViewNoColumnAutoresizing];
+ else
+ [tableview setColumnAutoresizingStyle:NSTableViewLastColumnOnlyAutoresizingStyle];
+
wxNSTableDataSource* ds = [[ wxNSTableDataSource alloc] init];
[tableview setDataSource:ds];
- [superv addSubview:scrollview];
+ [scrollview setDocumentView:tableview];
+ [tableview release];
+
wxListWidgetCocoaImpl* c = new wxListWidgetCocoaImpl( wxpeer, scrollview, tableview, ds );
- [tableview setImplementation:c];
+
+ // temporary hook for dnd
+ [tableview registerForDraggedTypes:[NSArray arrayWithObjects:
+ NSStringPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPICTPboardType, NSPDFPboardType, nil]];
+
[ds setImplementation:c];
return c;
}