Adding AnalysisWindow ui
This commit is contained in:
parent
48d1a933ab
commit
29871ecfdf
14
gui/AnalysisWindow.cpp
Normal file
14
gui/AnalysisWindow.cpp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#include "AnalysisWindow.h"
|
||||||
|
#include "ui_AnalysisWindow.h"
|
||||||
|
|
||||||
|
AnalysisWindow::AnalysisWindow(QWidget *parent) :
|
||||||
|
QMainWindow(parent),
|
||||||
|
ui(new Ui::AnalysisWindow)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
AnalysisWindow::~AnalysisWindow()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
22
gui/AnalysisWindow.h
Normal file
22
gui/AnalysisWindow.h
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#ifndef ANALYSISWINDOW_H
|
||||||
|
#define ANALYSISWINDOW_H
|
||||||
|
|
||||||
|
#include <QMainWindow>
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class AnalysisWindow;
|
||||||
|
}
|
||||||
|
|
||||||
|
class AnalysisWindow : public QMainWindow
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit AnalysisWindow(QWidget *parent = nullptr);
|
||||||
|
~AnalysisWindow();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::AnalysisWindow *ui;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // ANALYSISWINDOW_H
|
48
gui/AnalysisWindow.ui
Normal file
48
gui/AnalysisWindow.ui
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>AnalysisWindow</class>
|
||||||
|
<widget class="QMainWindow" name="AnalysisWindow">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>800</width>
|
||||||
|
<height>600</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>MainWindow</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="centralwidget">
|
||||||
|
<widget class="QWidget" name="widget" native="true">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>9</x>
|
||||||
|
<y>9</y>
|
||||||
|
<width>701</width>
|
||||||
|
<height>351</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<widget class="QMenuBar" name="menubar">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>800</width>
|
||||||
|
<height>22</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<widget class="QMenu" name="menuFile">
|
||||||
|
<property name="title">
|
||||||
|
<string>File</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<addaction name="menuFile"/>
|
||||||
|
</widget>
|
||||||
|
<widget class="QStatusBar" name="statusbar"/>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
@ -11,6 +11,7 @@ CONFIG += c++17
|
|||||||
SOURCES += \
|
SOURCES += \
|
||||||
QtRocket.cpp \
|
QtRocket.cpp \
|
||||||
gui/AboutWindow.cpp \
|
gui/AboutWindow.cpp \
|
||||||
|
gui/AnalysisWindow.cpp \
|
||||||
gui/qcustomplot.cpp \
|
gui/qcustomplot.cpp \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
gui/RocketTreeView.cpp \
|
gui/RocketTreeView.cpp \
|
||||||
@ -39,6 +40,7 @@ SOURCES += \
|
|||||||
HEADERS += \
|
HEADERS += \
|
||||||
QtRocket.h \
|
QtRocket.h \
|
||||||
gui/AboutWindow.h \
|
gui/AboutWindow.h \
|
||||||
|
gui/AnalysisWindow.h \
|
||||||
gui/RocketTreeView.h \
|
gui/RocketTreeView.h \
|
||||||
gui/MainWindow.h \
|
gui/MainWindow.h \
|
||||||
gui/qcustomplot.h \
|
gui/qcustomplot.h \
|
||||||
@ -70,6 +72,7 @@ HEADERS += \
|
|||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
gui/AboutWindow.ui \
|
gui/AboutWindow.ui \
|
||||||
|
gui/AnalysisWindow.ui \
|
||||||
gui/MainWindow.ui
|
gui/MainWindow.ui
|
||||||
|
|
||||||
TRANSLATIONS += \
|
TRANSLATIONS += \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user