Added audio analysis page

This commit is contained in:
ppravatto
2024-06-16 14:24:36 +02:00
parent 5f513b1c76
commit 87295d6e9d
6 changed files with 3488 additions and 3394 deletions

View File

@@ -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
View 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
}