-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstructor-options.ts
164 lines (124 loc) · 3.9 KB
/
constructor-options.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/**
* Author: Thomas Goodwin
* Company: Geon Technologies, LLC
*
* Purpose: Constructor Options helper Class
*/
import {
IConstructorOptions,
IGridStyle,
IPlotColors
} from './sigplot';
import { SettingsOptions } from './settings-options';
import {
AutoScale,
CMode,
LineType,
Origin,
PHUnits,
RubberboxAction,
RubberboxMode,
XCNT
} from './enums/index';
import { Units } from '../m/index';
/**
* A helper class that implements enumerated interfaces where possible, etc.
* which makes it not compatible with the IConstructorOptions interface.
* Use the interface() method to get that interface.
* @preferred
*/
export class ConstructorOptions extends SettingsOptions {
no_legend_button: boolean;
nodragdrop: boolean;
scroll_time_interval: number;
x_scrollbar_location: any;
xlab: Units;
xlabel: string | ((...args: any[]) => string);
xdiv: number;
ylab: Units;
ylabel: string | ((...args: any[]) => string);
ydiv: number;
nsec: number;
anno_type: number;
/** Number of colors to draw (default is 16) */
ncolors: number;
always_show_marker: boolean;
autohide_readout: boolean;
autohide_panbars: boolean;
/**
* Combined with 'all' = true will cause y-axis to expand automatically to
* show all data.
*/
expand: boolean;
origin: Origin;
bufmax: number;
nokeypress: boolean;
hide_note: boolean;
font_family: string;
/** 'xi' stands for invert fg and bg defined in 'colors' */
set xi(b: boolean) { this.invert = b; }
get xi(): boolean { return this.invert; }
set nogrid(b: boolean) { this.grid = !b; }
get nogrid(): boolean { return !this.grid; }
set nopan(b: boolean) { this.pan = !b; }
get nopan(): boolean { return !this.pan; }
set nospecs(b: boolean) { this.specs = !b; }
get nospecs(): boolean { return !this.specs; }
set noxaxis(b: boolean) { this.show_x_axis = !b; }
get noxaxis(): boolean { return !this.show_x_axis; }
set noyaxis(b: boolean) { this.show_y_axis = !b; }
get noyaxis(): boolean { return !this.show_y_axis; }
set noreadout(b: boolean) { this.show_readout = !b; }
get noreadout(): boolean { return !this.show_readout; }
set smoothing(b: boolean) { this.rasterSmoothing = b; }
get smoothing(): boolean { return this.rasterSmoothing; }
constructor () {
super();
this.xlab = Units.Time;
this.ylab = Units.Amplitude;
this.xlabel = () => Units[this.xlab];
this.ylabel = () => Units[this.ylab];
}
/**
* Export the settings as an IConstructorOptions interface
*/
toInterface(): IConstructorOptions {
let o = super.toInterface() as IConstructorOptions;
// Copy in the remaining interface elements.
o.no_legend_button = this.no_legend_button;
o.nodragdrop = this.nodragdrop;
o.scroll_time_interval = this.scroll_time_interval;
o.x_scrollbar_location = this.x_scrollbar_location;
o.xlab = this.xlab;
o.xlabel = this.xlabel;
o.xdiv = this.xdiv;
o.ylab = this.ylab;
o.ylabel = this.ylabel;
o.ydiv = this.ydiv;
o.nsec = this.nsec;
o.anno_type = this.anno_type;
o.ncolors = this.ncolors;
o.xi = this.xi;
o.always_show_marker = this.always_show_marker;
o.autohide_readout = this.autohide_readout;
o.autohide_panbars = this.autohide_panbars;
o.expand = this.expand;
o.origin = this.origin;
o.bufmax = this.bufmax;
o.nokeypress = this.nokeypress;
o.hide_note = this.hide_note;
o.font_family = this.font_family;
o.nogrid = this.nogrid;
o.nopan = this.nopan;
o.nospecs = this.nospecs;
o.noxaxis = this.noxaxis;
o.noyaxis = this.noyaxis;
o.noreadout = this.noreadout;
o.smoothing = this.smoothing;
// Strip undefined members, re-set the x|ylabel ones.
o = JSON.parse(JSON.stringify(o));
o.xlabel = () => Units[this.xlab];
o.ylabel = () => Units[this.ylab];
return o;
}
}