//
//  AccountSetupWindowController.h
//  Proteus
//
//  Created by Julian Cain on 4/14/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>


@interface AccountSetupWindowController : NSWindowController {

    NSPopUpButton * _accountsPopupButton;
    NSTextField * _usernameTextField;
    NSSecureTextField * _passwordSecureTextField;
}

@property (nonatomic, retain) IBOutlet NSPopUpButton * accountsPopupButton;
@property (nonatomic, retain) IBOutlet NSTextField * usernameTextField;
@property (nonatomic, retain) IBOutlet NSSecureTextField * passwordSecureTextField;

- (IBAction)cancelAction:sender;
- (IBAction)doneAction:sender;

@end
