blob: a20fb4a8ff20cf6d3361c57830b1ca879532ce95 (
plain) (
blame)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>StatsWidget</class>
<widget class="QWidget" name="Statistics">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>555</width>
<height>848</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<layout class="QVBoxLayout" name="headerLayout">
<item>
<widget class="QToolButton" name="close">
<property name="text">
<string>Close</string>
</property>
<property name="icon">
<iconset><normaloff>:filter-close</normaloff>:filter-close</iconset>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum>
</property>
</widget>
</item>
<item>
<widget class="QGroupBox" name="var1Group">
<property name="title">
<string>Base variable</string>
</property>
<layout class="QVBoxLayout" name="var1Layout">
<item>
<widget class="QComboBox" name="var1" />
</item>
<item>
<widget class="QLabel" name="var1BinnerLabel">
<property name="text">
<string>Binning</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="var1Binner" />
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="var2Group">
<property name="title">
<string>Data</string>
</property>
<layout class="QVBoxLayout" name="var2Layout">
<item>
<widget class="QComboBox" name="var2" />
</item>
<item>
<widget class="QLabel" name="var2BinnerLabel">
<property name="text">
<string>Binning</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="var2Binner" />
</item>
<item>
<widget class="QLabel" name="var2OperationLabel">
<property name="text">
<string>Operation</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="var2Operation" />
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="chartGroup">
<property name="title">
<string>Chart</string>
</property>
<layout class="QVBoxLayout" name="chartLayout">
<item>
<widget class="QComboBox" name="chartType" />
</item>
<item>
<layout class="QVBoxLayout" name="features" />
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<widget class="QQuickWidget" name="stats">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../subsurface.qrc"/>
</resources>
<connections/>
</ui>
|