Path: blob/master/src/mac-app/PreferencePanelController.h
8814 views
//1// PreferencePanelController.h2//3// Created by Ivan Andrus on 26/6/10.4// Copyright 2010 __MyCompanyName__. All rights reserved.5//67#import <Cocoa/Cocoa.h>89@interface PreferencePanelController : NSObject {10IBOutlet id appController;11IBOutlet id prefWindow;1213IBOutlet id showInDock;14IBOutlet id TerminalApplescript;15IBOutlet id TerminalEmulator;16IBOutlet id SessionType;17IBOutlet id DefaultArgs;18}1920- (IBAction)apply:(id)sender;21- (IBAction)resetTerminalApplescript:(id)sender;22- (IBAction)addToPATH:(id)sender;23- (void)windowDidBecomeKey:(NSNotification *)aNotification;24- (void)comboBoxWillDismiss:(NSNotification *)notification;25- (void)controlTextDidEndEditing:(NSNotification *)aNotification;26- (void)updateForComboBoxChanges;2728@end293031