-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnmrxiv.ts
More file actions
81 lines (79 loc) · 2.54 KB
/
nmrxiv.ts
File metadata and controls
81 lines (79 loc) · 2.54 KB
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
import type { InnerWorkspace } from '@zakodium/nmrium-core';
export function getNmrXivWorkspace(hidePanelOnLoad = false): InnerWorkspace {
return {
label: 'nmrXiv',
general: {
dimmedSpectraOpacity: 0.1,
verticalSplitterPosition: '160px',
verticalSplitterCloseThreshold: 600,
spectraRendering: 'auto',
loggingLevel: 'info',
invert: false,
popupLoggingLevel: 'error',
invertScroll: false,
},
display: {
general: {
experimentalFeatures: {
display: true,
visible: true,
},
hidePanelOnLoad,
hideHelp: true,
hideLogs: true,
hideWorkspaces: true,
hideGeneralSettings: true,
},
panels: {
spectraPanel: { display: true, visible: true, open: true },
informationPanel: { display: true, visible: true, open: false },
rangesPanel: { display: true, visible: true, open: false },
structuresPanel: { display: true, visible: true, open: false },
processingsPanel: { display: true, visible: true, open: false },
zonesPanel: { display: true, visible: true, open: false },
summaryPanel: { display: true, visible: true, open: false },
automaticAssignmentPanel: {
display: false,
visible: true,
open: false,
},
simulationPanel: { display: false, visible: true, open: false },
predictionPanel: { display: false, visible: true, open: false },
peaksPanel: { display: false, visible: true, open: false },
multipleSpectraAnalysisPanel: {
display: false,
visible: true,
open: false,
},
matrixGenerationPanel: { display: false, visible: true, open: false },
integralsPanel: { display: false, visible: true, open: false },
databasePanel: { display: false, visible: true, open: false },
},
toolBarButtons: {
baselineCorrection: true,
exclusionZones: true,
exportAs: true,
fft: true,
import: true,
multipleSpectraAnalysis: true,
phaseCorrection: true,
rangePicking: true,
realImaginary: true,
slicing: true,
spectraCenterAlignments: true,
spectraStackAlignments: true,
apodization: true,
zeroFilling: true,
zonePicking: true,
zoomOut: true,
zoom: true,
autoRangeAndZonePicking: true,
fftDimension1: true,
fftDimension2: true,
},
},
onLoadProcessing: {
autoProcessing: true,
},
};
}