From e542a8ec7278272ae06117cc09f9352dcff49de9 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Thu, 24 Nov 2011 05:17:27 +0000 Subject: First steps to make a memory card manager for Mac. Currently it only allows to to wipe a memory card and see what's saved on it. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72586 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/PcsxrMemCardController.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 macosx/PcsxrMemCardController.h (limited to 'macosx/PcsxrMemCardController.h') 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 + + +@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 -- cgit v1.2.3