summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemCardController.h
blob: 8e92de95888afa2e952851ae6489472ab0db9070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  PcsxrMemCardManager.h
//  Pcsxr
//
//  Created by Charles Betts on 11/23/11.
//  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface PcsxrMemCardController : NSViewController
{
	IBOutlet NSCollectionView *memCard1view;
	IBOutlet NSCollectionView *memCard2view;
	IBOutlet NSTextField *memCard1Label;
	IBOutlet NSTextField *memCard2Label;
	
	NSMutableArray *memCard1Array;
	NSMutableArray *memCard2Array;
	NSTimer *imageAnimateTimer;
}

- (IBAction)moveBlock:(id)sender;
- (IBAction)formatCard:(id)sender;
- (IBAction)deleteMemoryObject:(id)sender;
- (IBAction)newMemCard:(id)sender;
- (IBAction)changeMemCard:(id)sender;
- (void)loadMemoryCardInfoForCard:(int)theCard;
- (BOOL)isMemoryBlockEmptyOnCard:(int)aCard block:(int)aBlock;
- (int)countFreeBlocksOnCard:(int)aCard;
@end