cog/Preferences/General/PreferencePane.h

32 lines
608 B
C
Raw Normal View History

2006-09-04 18:06:23 +00:00
//
// PreferencePane.h
// Preferences
//
// Created by Zaphod Beeblebrox on 9/4/06.
// Copyright 2006 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "SS_PreferencePaneProtocol.h"
@interface PreferencePane : NSObject <SS_PreferencePaneProtocol> {
IBOutlet NSView *view;
NSString *name;
NSImage *icon;
}
- (NSView *)paneView;
- (NSString *)paneName;
- (NSImage *)paneIcon;
- (NSString *)paneToolTip;
- (BOOL)allowsHorizontalResizing;
- (BOOL)allowsVerticalResizing;
- (void)setName:(NSString *)s;
- (void)setIcon:(NSString *)i;
- (void)setToolTip:(NSString *)t;
@end