Files
textmate/Frameworks/Preferences/src/VariablesPreferences.h
Allan Odgaard 9894969e67 Initial commit
2012-08-09 16:25:56 +02:00

18 lines
525 B
Objective-C

#import <MASPreferences/MASPreferencesViewController.h>
@interface VariablesPreferences : NSViewController <MASPreferencesViewController>
{
IBOutlet NSTableView* variablesTableView;
NSMutableArray* variables;
BOOL canRemove;
}
@property (nonatomic, readonly) NSString* identifier;
@property (nonatomic, readonly) NSImage* toolbarItemImage;
@property (nonatomic, readonly) NSString* toolbarItemLabel;
@property (nonatomic, assign) BOOL canRemove;
- (IBAction)addVariable:(id)sender;
- (IBAction)delete:(id)sender;
@end