feat: add window opening for the audio manager
This commit is contained in:
parent
cd382d4177
commit
59e06ced91
3 changed files with 26 additions and 2 deletions
|
@ -3,6 +3,7 @@ import QtQuick.Layouts
|
|||
import QtQuick.Controls
|
||||
import Quickshell
|
||||
import Quickshell.Services.Pipewire
|
||||
import "windows"
|
||||
|
||||
// TODO: on click open detailed sink options:
|
||||
// - select default sink
|
||||
|
@ -32,7 +33,10 @@ Rectangle {
|
|||
|
||||
anchors.fill: parent
|
||||
|
||||
onClicked: {}
|
||||
onClicked: {
|
||||
AudioManager.visible = !AudioManager.visible;
|
||||
}
|
||||
|
||||
onWheel: wheel => {
|
||||
const newVal = sink.audio.volume + (wheel.angleDelta.y / 12000);
|
||||
sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
|
||||
|
@ -40,7 +44,7 @@ Rectangle {
|
|||
|
||||
Rectangle {
|
||||
width: parent.width
|
||||
color: "#00000000"
|
||||
color: "transparent"
|
||||
|
||||
height: icon.height + slider.height
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
|
|
@ -14,6 +14,7 @@ Scope {
|
|||
left: true
|
||||
bottom: true
|
||||
}
|
||||
margins.left: 2
|
||||
|
||||
width: 30
|
||||
color: "#00000000"
|
||||
|
|
19
src/windows/AudioManager.qml
Normal file
19
src/windows/AudioManager.qml
Normal file
|
@ -0,0 +1,19 @@
|
|||
pragma Singleton
|
||||
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
|
||||
Singleton {
|
||||
FloatingWindow {
|
||||
color: "transparent"
|
||||
height: 300
|
||||
width: 600
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: "#20ffffff"
|
||||
|
||||
// your content here
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue