Added audio analysis page
This commit is contained in:
@@ -31,6 +31,7 @@ Window {
|
||||
signal showCatManager()
|
||||
signal openSigEditor(string type, var sig_param, bool is_new)
|
||||
signal showSpaceWeather()
|
||||
signal showAudioAnalysis()
|
||||
signal checkForUpdate()
|
||||
signal updateDb()
|
||||
signal updateArtemis()
|
||||
@@ -322,6 +323,17 @@ Window {
|
||||
}
|
||||
}
|
||||
|
||||
Menu {
|
||||
title: qsTr("Analysis")
|
||||
|
||||
MenuItem {
|
||||
text: "Audio Analysis"
|
||||
onClicked: {
|
||||
showAudioAnalysis()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Menu {
|
||||
id: aboutMenu
|
||||
title: qsTr("Help")
|
||||
|
||||
27
ui/AudioAnalysis.qml
Normal file
27
ui/AudioAnalysis.qml
Normal file
@@ -0,0 +1,27 @@
|
||||
import QtQuick
|
||||
import QtQuick.Window
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Controls.Material
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Dialogs
|
||||
|
||||
|
||||
Window {
|
||||
id: window
|
||||
width: 1100
|
||||
height: 800
|
||||
|
||||
Component.onCompleted: {
|
||||
x = Screen.width / 2 - width / 2
|
||||
y = Screen.height / 2 - height / 2
|
||||
}
|
||||
|
||||
title: qsTr("Artemis - Audio Analysis")
|
||||
|
||||
modality: Qt.ApplicationModal
|
||||
flags: Qt.Window
|
||||
|
||||
// Windows without upper bar
|
||||
//flags: Qt.FramelessWindowHint
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user