Password Practice allows you to practice your password with statistics on how many mistakes you made and how accurate you are.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
688 B

//
// MGMController.h
// Password Practice
//
// Created by Mr. Gecko's Media on 5/21/10.
//
#import <Cocoa/Cocoa.h>
@interface MGMController : NSObject {
IBOutlet NSWindow *passwordWindow;
IBOutlet NSTextField *pwPassword;
IBOutlet NSTextField *pwVerify;
NSString *password;
IBOutlet NSWindow *practiceWindow;
IBOutlet NSTextField *ppPassword;
IBOutlet NSTextField *ppTotal;
IBOutlet NSTextField *ppCorrect;
IBOutlet NSTextField *ppMistakes;
IBOutlet NSTextField *ppAccuracy;
int total;
int correct;
int mistakes;
IBOutlet NSButton *ppSounds;
NSSound *sound;
}
- (IBAction)pwContinue:(id)sender;
- (IBAction)ppCheck:(id)sender;
- (IBAction)ppSounds:(id)sender;
@end