mirror of
https://github.com/textmate/textmate.git
synced 2026-02-14 16:34:57 -05:00
19 lines
540 B
Objective-C
19 lines
540 B
Objective-C
#import "PreferencesPane.h"
|
|
|
|
@interface TerminalPreferences : PreferencesPane
|
|
{
|
|
IBOutlet NSTextField* installStatusText;
|
|
IBOutlet NSTextField* installSummaryText;
|
|
IBOutlet NSPopUpButton* installPathPopUp;
|
|
IBOutlet NSButton* installButton;
|
|
NSImage* installIndicaitorImage;
|
|
IBOutlet NSTextField* rmateSummaryText;
|
|
|
|
std::string statusTextFormat;
|
|
std::string summaryTextFormat;
|
|
}
|
|
@property (nonatomic, retain) NSImage* installIndicaitorImage;
|
|
- (IBAction)performInstallMate:(id)sender;
|
|
- (IBAction)performUninstallMate:(id)sender;
|
|
@end
|