App/PlayerListDataSource.h

00001 //
00002 //  PlayerListDataSource.h
00003 //  MacTrek
00004 //
00005 //  Created by Aqua on 02/06/2006.
00006 //  Copyright 2006 Luky Soft. All rights reserved.
00007 //
00008 
00009 #import <Cocoa/Cocoa.h>
00010 #import "BaseClass.h"
00011 #import "Data.h"
00012 
00013 @interface PlayerListDataSource : BaseClass {
00014     IBOutlet NSTableView      *playerList;  
00015     IBOutlet NSPopUpButton    *toField;  // fill this to while we are at it
00016     Universe                  *universe; // must set this
00017     NSMutableArray            *players;
00018     
00019 }
00020 
00021 - (int)numberOfRowsInTableView:(NSTableView *)aTableView;
00022 
00023 - (id)tableView:(NSTableView *)aTableView
00024     objectValueForTableColumn:(NSTableColumn *)aTableColumn
00025             row:(int)rowIndex;
00026 
00027 - (void) refreshData;
00028 
00029 @end

Generated on Sat Aug 26 21:14:07 2006 for MacTrek by  doxygen 1.4.7