-
Notifications
You must be signed in to change notification settings - Fork 0
/
CWAddPlotWindowController.h
35 lines (27 loc) · 1.02 KB
/
CWAddPlotWindowController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// CWNewPlotWindowController.h
// MMCourseWork
//
// Created by Alexey Streltsow on 12/21/09.
// Copyright 2009 Karma World LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
extern NSString* const kNotificationAddPlotMethod;
@interface CWAddPlotWindowController : NSWindowController<NSComboBoxDelegate> {
// add/edit method pane
NSButton* _methodAddButton;
NSComboBox* _methodNameComboBox;
NSComboBox* _methodKeyComboBox;
NSComboBox* _methodInputKeyComboBox;
NSColorWell* _methodColor;
NSTextField* _methodPrecision;
}
+ controller;
- (IBAction)performAdd:(id)sender;
@property (nonatomic, retain) IBOutlet NSButton* methodAddButton;
@property (nonatomic, retain) IBOutlet NSComboBox* methodNameComboBox;
@property (nonatomic, retain) IBOutlet NSComboBox* methodKeyComboBox;
@property (nonatomic, retain) IBOutlet NSComboBox* methodInputKeyComboBox;
@property (nonatomic, retain) IBOutlet NSColorWell* methodColor;
@property (nonatomic, retain) IBOutlet NSTextField* methodPrecision;
@end