summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemCardController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxrMemCardController.h')
-rw-r--r--macosx/PcsxrMemCardController.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/macosx/PcsxrMemCardController.h b/macosx/PcsxrMemCardController.h
new file mode 100644
index 00000000..61019d82
--- /dev/null
+++ b/macosx/PcsxrMemCardController.h
@@ -0,0 +1,27 @@
+//
+// PcsxrMemCardManager.h
+// Pcsxr
+//
+// Created by Charles Betts on 11/23/11.
+// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface PcsxrMemCardController : NSWindowController
+{
+ IBOutlet NSCollectionView *memCard1view;
+ IBOutlet NSCollectionView *memCard2view;
+ IBOutlet NSButton *leftMove;
+ IBOutlet NSButton *rightMove;
+ NSMutableArray *memCard1Array;
+ NSMutableArray *memCard2Array;
+}
+
+- (IBAction)moveToLeft:(id)sender;
+- (IBAction)moveToRight:(id)sender;
+- (IBAction)formatCard:(id)sender;
+- (IBAction)deleteMemoryObject:(id)sender;
+- (void)loadMemoryCardInfoForCard:(int)theCard;
+@end