Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/mac-app/PreferencePanelController.h
8814 views
1
//
2
// PreferencePanelController.h
3
//
4
// Created by Ivan Andrus on 26/6/10.
5
// Copyright 2010 __MyCompanyName__. All rights reserved.
6
//
7
8
#import <Cocoa/Cocoa.h>
9
10
@interface PreferencePanelController : NSObject {
11
IBOutlet id appController;
12
IBOutlet id prefWindow;
13
14
IBOutlet id showInDock;
15
IBOutlet id TerminalApplescript;
16
IBOutlet id TerminalEmulator;
17
IBOutlet id SessionType;
18
IBOutlet id DefaultArgs;
19
}
20
21
- (IBAction)apply:(id)sender;
22
- (IBAction)resetTerminalApplescript:(id)sender;
23
- (IBAction)addToPATH:(id)sender;
24
- (void)windowDidBecomeKey:(NSNotification *)aNotification;
25
- (void)comboBoxWillDismiss:(NSNotification *)notification;
26
- (void)controlTextDidEndEditing:(NSNotification *)aNotification;
27
- (void)updateForComboBoxChanges;
28
29
@end
30
31