2006-09-04 18:06:23 +00:00
|
|
|
//
|
|
|
|
// PreferencePane.h
|
|
|
|
// Preferences
|
|
|
|
//
|
2006-09-04 18:46:18 +00:00
|
|
|
// Created by Vincent Spader on 9/4/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
2006-09-04 18:06:23 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "SS_PreferencePaneProtocol.h"
|
|
|
|
|
|
|
|
@interface PreferencePane : NSObject <SS_PreferencePaneProtocol> {
|
|
|
|
IBOutlet NSView *view;
|
|
|
|
|
|
|
|
NSString *name;
|
|
|
|
NSImage *icon;
|
|
|
|
}
|
|
|
|
|
2007-02-28 00:35:27 +00:00
|
|
|
+ (PreferencePane *)preferencePaneWithView:(NSView *)v name:(NSString *)n icon:(NSString *)i;
|
|
|
|
|
2006-09-04 18:06:23 +00:00
|
|
|
- (NSView *)paneView;
|
|
|
|
- (NSString *)paneName;
|
|
|
|
- (NSImage *)paneIcon;
|
|
|
|
- (NSString *)paneToolTip;
|
|
|
|
|
|
|
|
- (BOOL)allowsHorizontalResizing;
|
|
|
|
- (BOOL)allowsVerticalResizing;
|
|
|
|
|
2007-02-28 00:35:27 +00:00
|
|
|
- (void)setView:(NSView *)v;
|
2006-09-04 18:06:23 +00:00
|
|
|
- (void)setName:(NSString *)s;
|
|
|
|
- (void)setIcon:(NSString *)i;
|
|
|
|
|
|
|
|
@end
|