File sharing made easy.
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.
 
 
 
 

26 lines
629 B

//
// MGMAccountPane.h
// CocoaShare
//
// Created by Mr. Gecko on 1/15/11.
// Copyright (c) 2015 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
//
#import <Cocoa/Cocoa.h>
#import <MGMUsers/MGMUsers.h>
@class MGMController;
@interface MGMAccountPane : MGMPreferencesPane {
MGMController *controller;
IBOutlet NSView *view;
IBOutlet NSPopUpButton *typePopUp;
NSView *plugInView;
}
- (id)initWithPreferences:(MGMPreferences *)thePreferences;
+ (void)setUpToolbarItem:(NSToolbarItem *)theItem;
+ (NSString *)title;
- (NSView *)preferencesView;
- (IBAction)typeChanged:(id)sender;
@end