Upstream tarball 10146
[amule.git] / platforms / MacOSX / cocoa-mule / DownloadsViewController.h
blob261cd0e3e72103f833dc77890599582c60c05e77
1 #import <Cocoa/Cocoa.h>
3 #import "amuleData.h"
5 @interface DownloadsViewController : NSObject {
7 IBOutlet NSTableView *m_tableview;
9 amuleFileSet *m_fileset;
10 amuleData *m_amuledata;
13 - (void)saveGui;
15 // TableView datasource methods
16 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
17 - (int)numberOfRowsInTableView:(NSTableView *)aTableView;
19 - (void)linkAmuleData:(amuleData *)amuledata;
21 - (void)reload;
23 @end