Auto status change to "Under Review"
@@ -0,0 +1,21 | |||||
|
1 | #ifndef CATALOGUEEVENTSWIDGET_H | |||
|
2 | #define CATALOGUEEVENTSWIDGET_H | |||
|
3 | ||||
|
4 | #include <QWidget> | |||
|
5 | ||||
|
6 | namespace Ui { | |||
|
7 | class CatalogueEventsWidget; | |||
|
8 | } | |||
|
9 | ||||
|
10 | class CatalogueEventsWidget : public QWidget { | |||
|
11 | Q_OBJECT | |||
|
12 | ||||
|
13 | public: | |||
|
14 | explicit CatalogueEventsWidget(QWidget *parent = 0); | |||
|
15 | ~CatalogueEventsWidget(); | |||
|
16 | ||||
|
17 | private: | |||
|
18 | Ui::CatalogueEventsWidget *ui; | |||
|
19 | }; | |||
|
20 | ||||
|
21 | #endif // CATALOGUEEVENTSWIDGET_H |
@@ -0,0 +1,21 | |||||
|
1 | #ifndef CATALOGUEINSPECTORWIDGET_H | |||
|
2 | #define CATALOGUEINSPECTORWIDGET_H | |||
|
3 | ||||
|
4 | #include <QWidget> | |||
|
5 | ||||
|
6 | namespace Ui { | |||
|
7 | class CatalogueInspectorWidget; | |||
|
8 | } | |||
|
9 | ||||
|
10 | class CatalogueInspectorWidget : public QWidget { | |||
|
11 | Q_OBJECT | |||
|
12 | ||||
|
13 | public: | |||
|
14 | explicit CatalogueInspectorWidget(QWidget *parent = 0); | |||
|
15 | ~CatalogueInspectorWidget(); | |||
|
16 | ||||
|
17 | private: | |||
|
18 | Ui::CatalogueInspectorWidget *ui; | |||
|
19 | }; | |||
|
20 | ||||
|
21 | #endif // CATALOGUEINSPECTORWIDGET_H |
@@ -0,0 +1,21 | |||||
|
1 | #ifndef CATALOGUESIDEBARWIDGET_H | |||
|
2 | #define CATALOGUESIDEBARWIDGET_H | |||
|
3 | ||||
|
4 | #include <QWidget> | |||
|
5 | ||||
|
6 | namespace Ui { | |||
|
7 | class CatalogueSideBarWidget; | |||
|
8 | } | |||
|
9 | ||||
|
10 | class CatalogueSideBarWidget : public QWidget { | |||
|
11 | Q_OBJECT | |||
|
12 | ||||
|
13 | public: | |||
|
14 | explicit CatalogueSideBarWidget(QWidget *parent = 0); | |||
|
15 | ~CatalogueSideBarWidget(); | |||
|
16 | ||||
|
17 | private: | |||
|
18 | Ui::CatalogueSideBarWidget *ui; | |||
|
19 | }; | |||
|
20 | ||||
|
21 | #endif // CATALOGUESIDEBARWIDGET_H |
@@ -0,0 +1,13 | |||||
|
1 | #include "Catalogue/CatalogueEventsWidget.h" | |||
|
2 | #include "ui_CatalogueEventsWidget.h" | |||
|
3 | ||||
|
4 | CatalogueEventsWidget::CatalogueEventsWidget(QWidget *parent) | |||
|
5 | : QWidget(parent), ui(new Ui::CatalogueEventsWidget) | |||
|
6 | { | |||
|
7 | ui->setupUi(this); | |||
|
8 | } | |||
|
9 | ||||
|
10 | CatalogueEventsWidget::~CatalogueEventsWidget() | |||
|
11 | { | |||
|
12 | delete ui; | |||
|
13 | } |
@@ -0,0 +1,13 | |||||
|
1 | #include "Catalogue/CatalogueInspectorWidget.h" | |||
|
2 | #include "ui_CatalogueInspectorWidget.h" | |||
|
3 | ||||
|
4 | CatalogueInspectorWidget::CatalogueInspectorWidget(QWidget *parent) | |||
|
5 | : QWidget(parent), ui(new Ui::CatalogueInspectorWidget) | |||
|
6 | { | |||
|
7 | ui->setupUi(this); | |||
|
8 | } | |||
|
9 | ||||
|
10 | CatalogueInspectorWidget::~CatalogueInspectorWidget() | |||
|
11 | { | |||
|
12 | delete ui; | |||
|
13 | } |
@@ -0,0 +1,13 | |||||
|
1 | #include "Catalogue/CatalogueSideBarWidget.h" | |||
|
2 | #include "ui_CatalogueSideBarWidget.h" | |||
|
3 | ||||
|
4 | CatalogueSideBarWidget::CatalogueSideBarWidget(QWidget *parent) | |||
|
5 | : QWidget(parent), ui(new Ui::CatalogueSideBarWidget) | |||
|
6 | { | |||
|
7 | ui->setupUi(this); | |||
|
8 | } | |||
|
9 | ||||
|
10 | CatalogueSideBarWidget::~CatalogueSideBarWidget() | |||
|
11 | { | |||
|
12 | delete ui; | |||
|
13 | } |
@@ -0,0 +1,19 | |||||
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |||
|
2 | <ui version="4.0"> | |||
|
3 | <class>CatalogueEventsWidget</class> | |||
|
4 | <widget class="QWidget" name="CatalogueEventsWidget"> | |||
|
5 | <property name="geometry"> | |||
|
6 | <rect> | |||
|
7 | <x>0</x> | |||
|
8 | <y>0</y> | |||
|
9 | <width>400</width> | |||
|
10 | <height>300</height> | |||
|
11 | </rect> | |||
|
12 | </property> | |||
|
13 | <property name="windowTitle"> | |||
|
14 | <string>Form</string> | |||
|
15 | </property> | |||
|
16 | </widget> | |||
|
17 | <resources/> | |||
|
18 | <connections/> | |||
|
19 | </ui> |
@@ -0,0 +1,19 | |||||
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |||
|
2 | <ui version="4.0"> | |||
|
3 | <class>CatalogueInspectorWidget</class> | |||
|
4 | <widget class="QWidget" name="CatalogueInspectorWidget"> | |||
|
5 | <property name="geometry"> | |||
|
6 | <rect> | |||
|
7 | <x>0</x> | |||
|
8 | <y>0</y> | |||
|
9 | <width>400</width> | |||
|
10 | <height>300</height> | |||
|
11 | </rect> | |||
|
12 | </property> | |||
|
13 | <property name="windowTitle"> | |||
|
14 | <string>Form</string> | |||
|
15 | </property> | |||
|
16 | </widget> | |||
|
17 | <resources/> | |||
|
18 | <connections/> | |||
|
19 | </ui> |
@@ -0,0 +1,19 | |||||
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |||
|
2 | <ui version="4.0"> | |||
|
3 | <class>CatalogueSideBarWidget</class> | |||
|
4 | <widget class="QWidget" name="CatalogueSideBarWidget"> | |||
|
5 | <property name="geometry"> | |||
|
6 | <rect> | |||
|
7 | <x>0</x> | |||
|
8 | <y>0</y> | |||
|
9 | <width>400</width> | |||
|
10 | <height>300</height> | |||
|
11 | </rect> | |||
|
12 | </property> | |||
|
13 | <property name="windowTitle"> | |||
|
14 | <string>Form</string> | |||
|
15 | </property> | |||
|
16 | </widget> | |||
|
17 | <resources/> | |||
|
18 | <connections/> | |||
|
19 | </ui> |
@@ -1,170 +1,170 | |||||
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |
2 | <ui version="4.0"> |
|
2 | <ui version="4.0"> | |
3 | <class>MainWindow</class> |
|
3 | <class>MainWindow</class> | |
4 | <widget class="QMainWindow" name="MainWindow"> |
|
4 | <widget class="QMainWindow" name="MainWindow"> | |
5 | <property name="geometry"> |
|
5 | <property name="geometry"> | |
6 | <rect> |
|
6 | <rect> | |
7 | <x>0</x> |
|
7 | <x>0</x> | |
8 | <y>0</y> |
|
8 | <y>0</y> | |
9 | <width>800</width> |
|
9 | <width>800</width> | |
10 | <height>600</height> |
|
10 | <height>600</height> | |
11 | </rect> |
|
11 | </rect> | |
12 | </property> |
|
12 | </property> | |
13 | <property name="windowTitle"> |
|
13 | <property name="windowTitle"> | |
14 | <string>SciQlop v0.0.1</string> |
|
14 | <string>SciQlop v0.0.1</string> | |
15 | </property> |
|
15 | </property> | |
16 | <property name="dockNestingEnabled"> |
|
16 | <property name="dockNestingEnabled"> | |
17 | <bool>true</bool> |
|
17 | <bool>true</bool> | |
18 | </property> |
|
18 | </property> | |
19 | <widget class="QWidget" name="centralWidget"> |
|
19 | <widget class="QWidget" name="centralWidget"> | |
20 | <property name="enabled"> |
|
20 | <property name="enabled"> | |
21 | <bool>true</bool> |
|
21 | <bool>true</bool> | |
22 | </property> |
|
22 | </property> | |
23 | <property name="sizePolicy"> |
|
23 | <property name="sizePolicy"> | |
24 | <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> |
|
24 | <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
25 | <horstretch>0</horstretch> |
|
25 | <horstretch>0</horstretch> | |
26 | <verstretch>0</verstretch> |
|
26 | <verstretch>0</verstretch> | |
27 | </sizepolicy> |
|
27 | </sizepolicy> | |
28 | </property> |
|
28 | </property> | |
29 | <property name="maximumSize"> |
|
29 | <property name="maximumSize"> | |
30 | <size> |
|
30 | <size> | |
31 | <width>16777215</width> |
|
31 | <width>16777215</width> | |
32 | <height>16777215</height> |
|
32 | <height>16777215</height> | |
33 | </size> |
|
33 | </size> | |
34 | </property> |
|
34 | </property> | |
35 | <layout class="QHBoxLayout" name="horizontalLayout"> |
|
35 | <layout class="QHBoxLayout" name="horizontalLayout"> | |
36 | <property name="spacing"> |
|
36 | <property name="spacing"> | |
37 | <number>0</number> |
|
37 | <number>0</number> | |
38 | </property> |
|
38 | </property> | |
39 | <property name="leftMargin"> |
|
39 | <property name="leftMargin"> | |
40 | <number>0</number> |
|
40 | <number>0</number> | |
41 | </property> |
|
41 | </property> | |
42 | <property name="topMargin"> |
|
42 | <property name="topMargin"> | |
43 | <number>0</number> |
|
43 | <number>0</number> | |
44 | </property> |
|
44 | </property> | |
45 | <property name="rightMargin"> |
|
45 | <property name="rightMargin"> | |
46 | <number>0</number> |
|
46 | <number>0</number> | |
47 | </property> |
|
47 | </property> | |
48 | <property name="bottomMargin"> |
|
48 | <property name="bottomMargin"> | |
49 | <number>0</number> |
|
49 | <number>0</number> | |
50 | </property> |
|
50 | </property> | |
51 | <item> |
|
51 | <item> | |
52 | <widget class="QSplitter" name="splitter"> |
|
52 | <widget class="QSplitter" name="splitter"> | |
53 | <property name="orientation"> |
|
53 | <property name="orientation"> | |
54 | <enum>Qt::Horizontal</enum> |
|
54 | <enum>Qt::Horizontal</enum> | |
55 | </property> |
|
55 | </property> | |
56 | <widget class="QWidget" name="leftMainInspectorWidget" native="true"> |
|
56 | <widget class="QWidget" name="leftMainInspectorWidget" native="true"> | |
57 | <layout class="QVBoxLayout" name="verticalLayout"> |
|
57 | <layout class="QVBoxLayout" name="verticalLayout"> | |
58 | <property name="spacing"> |
|
58 | <property name="spacing"> | |
59 | <number>0</number> |
|
59 | <number>0</number> | |
60 | </property> |
|
60 | </property> | |
61 | <property name="leftMargin"> |
|
61 | <property name="leftMargin"> | |
62 | <number>0</number> |
|
62 | <number>0</number> | |
63 | </property> |
|
63 | </property> | |
64 | <property name="topMargin"> |
|
64 | <property name="topMargin"> | |
65 | <number>0</number> |
|
65 | <number>0</number> | |
66 | </property> |
|
66 | </property> | |
67 | <property name="rightMargin"> |
|
67 | <property name="rightMargin"> | |
68 | <number>0</number> |
|
68 | <number>0</number> | |
69 | </property> |
|
69 | </property> | |
70 | <property name="bottomMargin"> |
|
70 | <property name="bottomMargin"> | |
71 | <number>0</number> |
|
71 | <number>0</number> | |
72 | </property> |
|
72 | </property> | |
73 | <item> |
|
73 | <item> | |
74 | <widget class="DataSourceWidget" name="dataSourceWidget" native="true"/> |
|
74 | <widget class="DataSourceWidget" name="dataSourceWidget" native="true"/> | |
75 | </item> |
|
75 | </item> | |
76 | <item> |
|
76 | <item> | |
77 | <widget class="QWidget" name="dateTimeWidget" native="true"/> |
|
77 | <widget class="QWidget" name="dateTimeWidget" native="true"/> | |
78 | </item> |
|
78 | </item> | |
79 | <item> |
|
79 | <item> | |
80 | <widget class="VariableInspectorWidget" name="variableInspectorWidget" native="true"/> |
|
80 | <widget class="VariableInspectorWidget" name="variableInspectorWidget" native="true"/> | |
81 | </item> |
|
81 | </item> | |
82 | </layout> |
|
82 | </layout> | |
83 | </widget> |
|
83 | </widget> | |
84 | <widget class="SqpSidePane" name="leftInspectorSidePane" native="true"/> |
|
84 | <widget class="SqpSidePane" name="leftInspectorSidePane" native="true"/> | |
85 | <widget class="VisualizationWidget" name="view" native="true"> |
|
85 | <widget class="VisualizationWidget" name="view" native="true"> | |
86 | <property name="sizePolicy"> |
|
86 | <property name="sizePolicy"> | |
87 | <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> |
|
87 | <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> | |
88 | <horstretch>0</horstretch> |
|
88 | <horstretch>0</horstretch> | |
89 | <verstretch>0</verstretch> |
|
89 | <verstretch>0</verstretch> | |
90 | </sizepolicy> |
|
90 | </sizepolicy> | |
91 | </property> |
|
91 | </property> | |
92 | </widget> |
|
92 | </widget> | |
93 | <widget class="SqpSidePane" name="rightInspectorSidePane" native="true"/> |
|
93 | <widget class="SqpSidePane" name="rightInspectorSidePane" native="true"/> | |
94 | <widget class="QWidget" name="rightMainInspectorWidget" native="true"> |
|
94 | <widget class="QWidget" name="rightMainInspectorWidget" native="true"> | |
95 | <layout class="QVBoxLayout" name="verticalLayout_3"> |
|
95 | <layout class="QVBoxLayout" name="verticalLayout_3"> | |
96 | <property name="spacing"> |
|
96 | <property name="spacing"> | |
97 | <number>0</number> |
|
97 | <number>0</number> | |
98 | </property> |
|
98 | </property> | |
99 | <property name="leftMargin"> |
|
99 | <property name="leftMargin"> | |
100 | <number>0</number> |
|
100 | <number>0</number> | |
101 | </property> |
|
101 | </property> | |
102 | <property name="topMargin"> |
|
102 | <property name="topMargin"> | |
103 | <number>0</number> |
|
103 | <number>0</number> | |
104 | </property> |
|
104 | </property> | |
105 | <property name="rightMargin"> |
|
105 | <property name="rightMargin"> | |
106 | <number>0</number> |
|
106 | <number>0</number> | |
107 | </property> |
|
107 | </property> | |
108 | <property name="bottomMargin"> |
|
108 | <property name="bottomMargin"> | |
109 | <number>0</number> |
|
109 | <number>0</number> | |
110 | </property> |
|
110 | </property> | |
111 | <item> |
|
111 | <item> | |
112 | <widget class="QWidget" name="commonPropertyInspectorWidget" native="true"/> |
|
112 | <widget class="QWidget" name="commonPropertyInspectorWidget" native="true"/> | |
113 | </item> |
|
113 | </item> | |
114 | <item> |
|
114 | <item> | |
115 | <widget class="QTreeWidget" name="catalogWidget"> |
|
115 | <widget class="QTreeWidget" name="catalogWidget"> | |
116 | <column> |
|
116 | <column> | |
117 | <property name="text"> |
|
117 | <property name="text"> | |
118 | <string notr="true">Name</string> |
|
118 | <string notr="true">Name</string> | |
119 | </property> |
|
119 | </property> | |
120 | </column> |
|
120 | </column> | |
121 | </widget> |
|
121 | </widget> | |
122 | </item> |
|
122 | </item> | |
123 | </layout> |
|
123 | </layout> | |
124 | </widget> |
|
124 | </widget> | |
125 | </widget> |
|
125 | </widget> | |
126 | </item> |
|
126 | </item> | |
127 | </layout> |
|
127 | </layout> | |
128 | </widget> |
|
128 | </widget> | |
129 | <widget class="QMenuBar" name="menuBar"> |
|
129 | <widget class="QMenuBar" name="menuBar"> | |
130 | <property name="geometry"> |
|
130 | <property name="geometry"> | |
131 | <rect> |
|
131 | <rect> | |
132 | <x>0</x> |
|
132 | <x>0</x> | |
133 | <y>0</y> |
|
133 | <y>0</y> | |
134 | <width>800</width> |
|
134 | <width>800</width> | |
135 |
<height>2 |
|
135 | <height>21</height> | |
136 | </rect> |
|
136 | </rect> | |
137 | </property> |
|
137 | </property> | |
138 | </widget> |
|
138 | </widget> | |
139 | <widget class="QStatusBar" name="statusBar"/> |
|
139 | <widget class="QStatusBar" name="statusBar"/> | |
140 | </widget> |
|
140 | </widget> | |
141 | <layoutdefault spacing="6" margin="11"/> |
|
141 | <layoutdefault spacing="6" margin="11"/> | |
142 | <customwidgets> |
|
142 | <customwidgets> | |
143 | <customwidget> |
|
143 | <customwidget> | |
144 | <class>VisualizationWidget</class> |
|
144 | <class>VisualizationWidget</class> | |
145 | <extends>QWidget</extends> |
|
145 | <extends>QWidget</extends> | |
146 | <header location="global">Visualization/VisualizationWidget.h</header> |
|
146 | <header location="global">Visualization/VisualizationWidget.h</header> | |
147 | <container>1</container> |
|
147 | <container>1</container> | |
148 | </customwidget> |
|
148 | </customwidget> | |
149 | <customwidget> |
|
149 | <customwidget> | |
150 | <class>SqpSidePane</class> |
|
150 | <class>SqpSidePane</class> | |
151 | <extends>QWidget</extends> |
|
151 | <extends>QWidget</extends> | |
152 | <header location="global">SidePane/SqpSidePane.h</header> |
|
152 | <header location="global">SidePane/SqpSidePane.h</header> | |
153 | <container>1</container> |
|
153 | <container>1</container> | |
154 | </customwidget> |
|
154 | </customwidget> | |
155 | <customwidget> |
|
155 | <customwidget> | |
156 | <class>DataSourceWidget</class> |
|
156 | <class>DataSourceWidget</class> | |
157 | <extends>QWidget</extends> |
|
157 | <extends>QWidget</extends> | |
158 | <header location="global">DataSource/DataSourceWidget.h</header> |
|
158 | <header location="global">DataSource/DataSourceWidget.h</header> | |
159 | <container>1</container> |
|
159 | <container>1</container> | |
160 | </customwidget> |
|
160 | </customwidget> | |
161 | <customwidget> |
|
161 | <customwidget> | |
162 | <class>VariableInspectorWidget</class> |
|
162 | <class>VariableInspectorWidget</class> | |
163 | <extends>QWidget</extends> |
|
163 | <extends>QWidget</extends> | |
164 | <header location="global">Variable/VariableInspectorWidget.h</header> |
|
164 | <header location="global">Variable/VariableInspectorWidget.h</header> | |
165 | <container>1</container> |
|
165 | <container>1</container> | |
166 | </customwidget> |
|
166 | </customwidget> | |
167 | </customwidgets> |
|
167 | </customwidgets> | |
168 | <resources/> |
|
168 | <resources/> | |
169 | <connections/> |
|
169 | <connections/> | |
170 | </ui> |
|
170 | </ui> |
@@ -1,113 +1,122 | |||||
1 |
|
1 | |||
2 | gui_moc_headers = [ |
|
2 | gui_moc_headers = [ | |
3 | 'include/DataSource/DataSourceWidget.h', |
|
3 | 'include/DataSource/DataSourceWidget.h', | |
4 | 'include/Settings/SqpSettingsDialog.h', |
|
4 | 'include/Settings/SqpSettingsDialog.h', | |
5 | 'include/Settings/SqpSettingsGeneralWidget.h', |
|
5 | 'include/Settings/SqpSettingsGeneralWidget.h', | |
6 | 'include/SidePane/SqpSidePane.h', |
|
6 | 'include/SidePane/SqpSidePane.h', | |
7 | 'include/SqpApplication.h', |
|
7 | 'include/SqpApplication.h', | |
8 | 'include/DragAndDrop/DragDropScroller.h', |
|
8 | 'include/DragAndDrop/DragDropScroller.h', | |
9 | 'include/DragAndDrop/DragDropTabSwitcher.h', |
|
9 | 'include/DragAndDrop/DragDropTabSwitcher.h', | |
10 | 'include/TimeWidget/TimeWidget.h', |
|
10 | 'include/TimeWidget/TimeWidget.h', | |
11 | 'include/Variable/VariableInspectorWidget.h', |
|
11 | 'include/Variable/VariableInspectorWidget.h', | |
12 | 'include/Variable/RenameVariableDialog.h', |
|
12 | 'include/Variable/RenameVariableDialog.h', | |
13 | 'include/Visualization/qcustomplot.h', |
|
13 | 'include/Visualization/qcustomplot.h', | |
14 | 'include/Visualization/VisualizationGraphWidget.h', |
|
14 | 'include/Visualization/VisualizationGraphWidget.h', | |
15 | 'include/Visualization/VisualizationTabWidget.h', |
|
15 | 'include/Visualization/VisualizationTabWidget.h', | |
16 | 'include/Visualization/VisualizationWidget.h', |
|
16 | 'include/Visualization/VisualizationWidget.h', | |
17 | 'include/Visualization/VisualizationZoneWidget.h', |
|
17 | 'include/Visualization/VisualizationZoneWidget.h', | |
18 | 'include/Visualization/VisualizationDragDropContainer.h', |
|
18 | 'include/Visualization/VisualizationDragDropContainer.h', | |
19 | 'include/Visualization/VisualizationDragWidget.h', |
|
19 | 'include/Visualization/VisualizationDragWidget.h', | |
20 | 'include/Visualization/ColorScaleEditor.h', |
|
20 | 'include/Visualization/ColorScaleEditor.h', | |
21 | 'include/Actions/SelectionZoneAction.h', |
|
21 | 'include/Actions/SelectionZoneAction.h', | |
22 | 'include/Visualization/VisualizationMultiZoneSelectionDialog.h', |
|
22 | 'include/Visualization/VisualizationMultiZoneSelectionDialog.h', | |
23 | 'include/Catalogue/CatalogueExplorer.h' |
|
23 | 'include/Catalogue/CatalogueExplorer.h', | |
|
24 | 'include/Catalogue/CatalogueEventsWidget.h', | |||
|
25 | 'include/Catalogue/CatalogueSideBarWidget.h', | |||
|
26 | 'include/Catalogue/CatalogueInspectorWidget.h' | |||
24 | ] |
|
27 | ] | |
25 |
|
28 | |||
26 | gui_ui_files = [ |
|
29 | gui_ui_files = [ | |
27 | 'ui/DataSource/DataSourceWidget.ui', |
|
30 | 'ui/DataSource/DataSourceWidget.ui', | |
28 | 'ui/Settings/SqpSettingsDialog.ui', |
|
31 | 'ui/Settings/SqpSettingsDialog.ui', | |
29 | 'ui/Settings/SqpSettingsGeneralWidget.ui', |
|
32 | 'ui/Settings/SqpSettingsGeneralWidget.ui', | |
30 | 'ui/SidePane/SqpSidePane.ui', |
|
33 | 'ui/SidePane/SqpSidePane.ui', | |
31 | 'ui/TimeWidget/TimeWidget.ui', |
|
34 | 'ui/TimeWidget/TimeWidget.ui', | |
32 | 'ui/Variable/VariableInspectorWidget.ui', |
|
35 | 'ui/Variable/VariableInspectorWidget.ui', | |
33 | 'ui/Variable/RenameVariableDialog.ui', |
|
36 | 'ui/Variable/RenameVariableDialog.ui', | |
34 | 'ui/Variable/VariableMenuHeaderWidget.ui', |
|
37 | 'ui/Variable/VariableMenuHeaderWidget.ui', | |
35 | 'ui/Visualization/VisualizationGraphWidget.ui', |
|
38 | 'ui/Visualization/VisualizationGraphWidget.ui', | |
36 | 'ui/Visualization/VisualizationTabWidget.ui', |
|
39 | 'ui/Visualization/VisualizationTabWidget.ui', | |
37 | 'ui/Visualization/VisualizationWidget.ui', |
|
40 | 'ui/Visualization/VisualizationWidget.ui', | |
38 | 'ui/Visualization/VisualizationZoneWidget.ui', |
|
41 | 'ui/Visualization/VisualizationZoneWidget.ui', | |
39 | 'ui/Visualization/ColorScaleEditor.ui', |
|
42 | 'ui/Visualization/ColorScaleEditor.ui', | |
40 | 'ui/Visualization/VisualizationMultiZoneSelectionDialog.ui', |
|
43 | 'ui/Visualization/VisualizationMultiZoneSelectionDialog.ui', | |
41 | 'ui/Catalogue/CatalogueExplorer.ui' |
|
44 | 'ui/Catalogue/CatalogueExplorer.ui', | |
|
45 | 'ui/Catalogue/CatalogueEventsWidget.ui', | |||
|
46 | 'ui/Catalogue/CatalogueSideBarWidget.ui', | |||
|
47 | 'ui/Catalogue/CatalogueInspectorWidget.ui' | |||
42 | ] |
|
48 | ] | |
43 |
|
49 | |||
44 | gui_qresources = ['resources/sqpguiresources.qrc'] |
|
50 | gui_qresources = ['resources/sqpguiresources.qrc'] | |
45 |
|
51 | |||
46 | gui_moc_files = qt5.preprocess(moc_headers : gui_moc_headers, |
|
52 | gui_moc_files = qt5.preprocess(moc_headers : gui_moc_headers, | |
47 | ui_files : gui_ui_files, |
|
53 | ui_files : gui_ui_files, | |
48 | qresources : gui_qresources) |
|
54 | qresources : gui_qresources) | |
49 |
|
55 | |||
50 | gui_sources = [ |
|
56 | gui_sources = [ | |
51 | 'src/SqpApplication.cpp', |
|
57 | 'src/SqpApplication.cpp', | |
52 | 'src/DragAndDrop/DragDropGuiController.cpp', |
|
58 | 'src/DragAndDrop/DragDropGuiController.cpp', | |
53 | 'src/DragAndDrop/DragDropScroller.cpp', |
|
59 | 'src/DragAndDrop/DragDropScroller.cpp', | |
54 | 'src/DragAndDrop/DragDropTabSwitcher.cpp', |
|
60 | 'src/DragAndDrop/DragDropTabSwitcher.cpp', | |
55 | 'src/Common/ColorUtils.cpp', |
|
61 | 'src/Common/ColorUtils.cpp', | |
56 | 'src/Common/VisualizationDef.cpp', |
|
62 | 'src/Common/VisualizationDef.cpp', | |
57 | 'src/DataSource/DataSourceTreeWidgetItem.cpp', |
|
63 | 'src/DataSource/DataSourceTreeWidgetItem.cpp', | |
58 | 'src/DataSource/DataSourceTreeWidgetHelper.cpp', |
|
64 | 'src/DataSource/DataSourceTreeWidgetHelper.cpp', | |
59 | 'src/DataSource/DataSourceWidget.cpp', |
|
65 | 'src/DataSource/DataSourceWidget.cpp', | |
60 | 'src/DataSource/DataSourceTreeWidget.cpp', |
|
66 | 'src/DataSource/DataSourceTreeWidget.cpp', | |
61 | 'src/Settings/SqpSettingsDialog.cpp', |
|
67 | 'src/Settings/SqpSettingsDialog.cpp', | |
62 | 'src/Settings/SqpSettingsGeneralWidget.cpp', |
|
68 | 'src/Settings/SqpSettingsGeneralWidget.cpp', | |
63 | 'src/SidePane/SqpSidePane.cpp', |
|
69 | 'src/SidePane/SqpSidePane.cpp', | |
64 | 'src/TimeWidget/TimeWidget.cpp', |
|
70 | 'src/TimeWidget/TimeWidget.cpp', | |
65 | 'src/Variable/VariableInspectorWidget.cpp', |
|
71 | 'src/Variable/VariableInspectorWidget.cpp', | |
66 | 'src/Variable/VariableInspectorTableView.cpp', |
|
72 | 'src/Variable/VariableInspectorTableView.cpp', | |
67 | 'src/Variable/VariableMenuHeaderWidget.cpp', |
|
73 | 'src/Variable/VariableMenuHeaderWidget.cpp', | |
68 | 'src/Variable/RenameVariableDialog.cpp', |
|
74 | 'src/Variable/RenameVariableDialog.cpp', | |
69 | 'src/Visualization/VisualizationGraphHelper.cpp', |
|
75 | 'src/Visualization/VisualizationGraphHelper.cpp', | |
70 | 'src/Visualization/VisualizationGraphRenderingDelegate.cpp', |
|
76 | 'src/Visualization/VisualizationGraphRenderingDelegate.cpp', | |
71 | 'src/Visualization/VisualizationGraphWidget.cpp', |
|
77 | 'src/Visualization/VisualizationGraphWidget.cpp', | |
72 | 'src/Visualization/VisualizationTabWidget.cpp', |
|
78 | 'src/Visualization/VisualizationTabWidget.cpp', | |
73 | 'src/Visualization/VisualizationWidget.cpp', |
|
79 | 'src/Visualization/VisualizationWidget.cpp', | |
74 | 'src/Visualization/VisualizationZoneWidget.cpp', |
|
80 | 'src/Visualization/VisualizationZoneWidget.cpp', | |
75 | 'src/Visualization/qcustomplot.cpp', |
|
81 | 'src/Visualization/qcustomplot.cpp', | |
76 | 'src/Visualization/QCustomPlotSynchronizer.cpp', |
|
82 | 'src/Visualization/QCustomPlotSynchronizer.cpp', | |
77 | 'src/Visualization/operations/FindVariableOperation.cpp', |
|
83 | 'src/Visualization/operations/FindVariableOperation.cpp', | |
78 | 'src/Visualization/operations/GenerateVariableMenuOperation.cpp', |
|
84 | 'src/Visualization/operations/GenerateVariableMenuOperation.cpp', | |
79 | 'src/Visualization/operations/MenuBuilder.cpp', |
|
85 | 'src/Visualization/operations/MenuBuilder.cpp', | |
80 | 'src/Visualization/operations/RemoveVariableOperation.cpp', |
|
86 | 'src/Visualization/operations/RemoveVariableOperation.cpp', | |
81 | 'src/Visualization/operations/RescaleAxeOperation.cpp', |
|
87 | 'src/Visualization/operations/RescaleAxeOperation.cpp', | |
82 | 'src/Visualization/VisualizationDragDropContainer.cpp', |
|
88 | 'src/Visualization/VisualizationDragDropContainer.cpp', | |
83 | 'src/Visualization/VisualizationDragWidget.cpp', |
|
89 | 'src/Visualization/VisualizationDragWidget.cpp', | |
84 | 'src/Visualization/AxisRenderingUtils.cpp', |
|
90 | 'src/Visualization/AxisRenderingUtils.cpp', | |
85 | 'src/Visualization/PlottablesRenderingUtils.cpp', |
|
91 | 'src/Visualization/PlottablesRenderingUtils.cpp', | |
86 | 'src/Visualization/MacScrollBarStyle.cpp', |
|
92 | 'src/Visualization/MacScrollBarStyle.cpp', | |
87 | 'src/Visualization/VisualizationCursorItem.cpp', |
|
93 | 'src/Visualization/VisualizationCursorItem.cpp', | |
88 | 'src/Visualization/ColorScaleEditor.cpp', |
|
94 | 'src/Visualization/ColorScaleEditor.cpp', | |
89 | 'src/Visualization/SqpColorScale.cpp', |
|
95 | 'src/Visualization/SqpColorScale.cpp', | |
90 | 'src/Visualization/QCPColorMapIterator.cpp', |
|
96 | 'src/Visualization/QCPColorMapIterator.cpp', | |
91 | 'src/Visualization/VisualizationSelectionZoneItem.cpp', |
|
97 | 'src/Visualization/VisualizationSelectionZoneItem.cpp', | |
92 | 'src/Visualization/VisualizationSelectionZoneManager.cpp', |
|
98 | 'src/Visualization/VisualizationSelectionZoneManager.cpp', | |
93 | 'src/Actions/SelectionZoneAction.cpp', |
|
99 | 'src/Actions/SelectionZoneAction.cpp', | |
94 | 'src/Actions/ActionsGuiController.cpp', |
|
100 | 'src/Actions/ActionsGuiController.cpp', | |
95 | 'src/Visualization/VisualizationActionManager.cpp', |
|
101 | 'src/Visualization/VisualizationActionManager.cpp', | |
96 | 'src/Visualization/VisualizationMultiZoneSelectionDialog.cpp', |
|
102 | 'src/Visualization/VisualizationMultiZoneSelectionDialog.cpp', | |
97 | 'src/Catalogue/CatalogueExplorer.cpp' |
|
103 | 'src/Catalogue/CatalogueExplorer.cpp', | |
|
104 | 'src/Catalogue/CatalogueEventsWidget.cpp', | |||
|
105 | 'src/Catalogue/CatalogueSideBarWidget.cpp', | |||
|
106 | 'src/Catalogue/CatalogueInspectorWidget.cpp' | |||
98 | ] |
|
107 | ] | |
99 |
|
108 | |||
100 | gui_inc = include_directories(['include']) |
|
109 | gui_inc = include_directories(['include']) | |
101 |
|
110 | |||
102 | sciqlop_gui_lib = library('sciqlopgui', |
|
111 | sciqlop_gui_lib = library('sciqlopgui', | |
103 | gui_sources, |
|
112 | gui_sources, | |
104 | gui_moc_files, |
|
113 | gui_moc_files, | |
105 | include_directories : [gui_inc], |
|
114 | include_directories : [gui_inc], | |
106 | dependencies : [ qt5printsupport, qt5gui, qt5widgets, qt5svg, sciqlop_core], |
|
115 | dependencies : [ qt5printsupport, qt5gui, qt5widgets, qt5svg, sciqlop_core], | |
107 | install : true |
|
116 | install : true | |
108 | ) |
|
117 | ) | |
109 |
|
118 | |||
110 | sciqlop_gui = declare_dependency(link_with : sciqlop_gui_lib, |
|
119 | sciqlop_gui = declare_dependency(link_with : sciqlop_gui_lib, | |
111 | include_directories : gui_inc, |
|
120 | include_directories : gui_inc, | |
112 | dependencies : [qt5printsupport, qt5gui, qt5widgets, qt5svg, sciqlop_core]) |
|
121 | dependencies : [qt5printsupport, qt5gui, qt5widgets, qt5svg, sciqlop_core]) | |
113 |
|
122 |
@@ -1,19 +1,56 | |||||
1 | <?xml version="1.0" encoding="UTF-8"?> |
|
1 | <?xml version="1.0" encoding="UTF-8"?> | |
2 | <ui version="4.0"> |
|
2 | <ui version="4.0"> | |
3 | <class>CatalogueExplorer</class> |
|
3 | <class>CatalogueExplorer</class> | |
4 | <widget class="QDialog" name="CatalogueExplorer"> |
|
4 | <widget class="QDialog" name="CatalogueExplorer"> | |
5 | <property name="geometry"> |
|
5 | <property name="geometry"> | |
6 | <rect> |
|
6 | <rect> | |
7 | <x>0</x> |
|
7 | <x>0</x> | |
8 | <y>0</y> |
|
8 | <y>0</y> | |
9 |
<width> |
|
9 | <width>775</width> | |
10 |
<height> |
|
10 | <height>512</height> | |
11 | </rect> |
|
11 | </rect> | |
12 | </property> |
|
12 | </property> | |
13 | <property name="windowTitle"> |
|
13 | <property name="windowTitle"> | |
14 |
<string> |
|
14 | <string>Catalogue Explorer</string> | |
15 | </property> |
|
15 | </property> | |
|
16 | <layout class="QVBoxLayout" name="verticalLayout"> | |||
|
17 | <item> | |||
|
18 | <widget class="QSplitter" name="horizontalSplitter"> | |||
|
19 | <property name="orientation"> | |||
|
20 | <enum>Qt::Horizontal</enum> | |||
|
21 | </property> | |||
|
22 | <widget class="CatalogueSideBarWidget" name="catalogues" native="true"/> | |||
|
23 | <widget class="QSplitter" name="verticalSplitter"> | |||
|
24 | <property name="orientation"> | |||
|
25 | <enum>Qt::Vertical</enum> | |||
|
26 | </property> | |||
|
27 | <widget class="CatalogueEventsWidget" name="events" native="true"/> | |||
|
28 | <widget class="CatalogueInspectorWidget" name="inspector" native="true"/> | |||
|
29 | </widget> | |||
|
30 | </widget> | |||
|
31 | </item> | |||
|
32 | </layout> | |||
16 | </widget> |
|
33 | </widget> | |
|
34 | <customwidgets> | |||
|
35 | <customwidget> | |||
|
36 | <class>CatalogueSideBarWidget</class> | |||
|
37 | <extends>QWidget</extends> | |||
|
38 | <header>Catalogue/CatalogueSideBarWidget.h</header> | |||
|
39 | <container>1</container> | |||
|
40 | </customwidget> | |||
|
41 | <customwidget> | |||
|
42 | <class>CatalogueEventsWidget</class> | |||
|
43 | <extends>QWidget</extends> | |||
|
44 | <header>Catalogue/CatalogueEventsWidget.h</header> | |||
|
45 | <container>1</container> | |||
|
46 | </customwidget> | |||
|
47 | <customwidget> | |||
|
48 | <class>CatalogueInspectorWidget</class> | |||
|
49 | <extends>QWidget</extends> | |||
|
50 | <header>Catalogue/CatalogueInspectorWidget.h</header> | |||
|
51 | <container>1</container> | |||
|
52 | </customwidget> | |||
|
53 | </customwidgets> | |||
17 | <resources/> |
|
54 | <resources/> | |
18 | <connections/> |
|
55 | <connections/> | |
19 | </ui> |
|
56 | </ui> |
General Comments 3
Status change > Approved
You need to be logged in to leave comments.
Login now