mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Presently the new file type is not setup to use tmProperties as the way this is specified (in tmProperties) needs special-casing. Will likely change that.
20 lines
728 B
Objective-C
20 lines
728 B
Objective-C
#import <MASPreferences/MASPreferencesViewController.h>
|
|
|
|
@interface PreferencesPane : NSViewController <MASPreferencesViewController>
|
|
{
|
|
NSString* label;
|
|
NSImage* image;
|
|
NSDictionary* defaultsProperties; // property → defaults key
|
|
NSDictionary* tmProperties; // property → tmProperties key
|
|
}
|
|
@property (nonatomic, readonly) NSString* identifier;
|
|
@property (nonatomic, readonly) NSString* toolbarItemLabel;
|
|
@property (nonatomic, readonly) NSImage* toolbarItemImage;
|
|
@property (nonatomic, retain) NSDictionary* defaultsProperties;
|
|
@property (nonatomic, retain) NSDictionary* tmProperties;
|
|
|
|
- (id)initWithNibName:(NSString*)aNibName label:(NSString*)aLabel image:(NSImage*)anImage;
|
|
|
|
- (IBAction)help:(id)sender;
|
|
@end
|