The R Project SVN R-packages

Rev

Rev 1254 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1254 Rev 1255
Line 36... Line 36...
36
	IBOutlet NSTableView *listDataSource;	/* TableView for the list */ 
36
	IBOutlet NSTableView *listDataSource;	/* TableView for the list */ 
37
	id  SelectListWindow;
37
	id  SelectListWindow;
38
	
38
	
39
	int totalItems;
39
	int totalItems;
40
	NSString **listItem;
40
	NSString **listItem;
41
	BOOL *itemStatus;
-
 
42
	
41
	
43
	int result;
42
	int result;
44
	BOOL running;
43
	BOOL running;
45
	NSString *title;
44
	NSString *title;
46
}
45
}
Line 51... Line 50...
51
- (id) window;
50
- (id) window;
52
- (void) reloadData;
51
- (void) reloadData;
53
 
52
 
54
- (void) show;
53
- (void) show;
55
 
54
 
56
- (void) resetListItems; // removes all items data
-
 
57
- (void) updateListItems: (int) count withNames: (char**) item status: (BOOL*) stat multiple: (BOOL) multiple title: (NSString*) ttl;
55
- (int) selectList: (int) count withNames: (char**) item status: (BOOL*) stat multiple: (BOOL) multiple title: (NSString*) ttl;
58
				   
56
				   
59
- (int) count;
57
- (int) count;
60
 
58
 
61
- (IBAction)returnSelected:(id)sender;
59
- (IBAction)returnSelected:(id)sender;
62
- (IBAction)cancelSelection:(id)sender;
60
- (IBAction)cancelSelection:(id)sender;
63
- (BOOL)windowShouldClose:(id)sender;
61
- (BOOL)windowShouldClose:(id)sender;
64
 
62
 
65
- (int) runSelectList; // should be called only after updateListItems was called at least once
-
 
66
- (void) runFinished; // should be called to clean up any external buffer references - next round will be initiated by updateListItems:
-
 
67
 
-
 
68
@end
63
@end