mirror of
https://gitlab.freedesktop.org/pipewire/helvum.git
synced 2026-05-21 09:58:11 +02:00
50 lines
698 B
Text
50 lines
698 B
Text
using Gtk 4.0;
|
|
|
|
template $HelvumNode: Widget {
|
|
styles [
|
|
"card",
|
|
]
|
|
|
|
Box {
|
|
orientation: vertical;
|
|
|
|
Box {
|
|
styles [
|
|
"node-title",
|
|
]
|
|
|
|
orientation: vertical;
|
|
spacing: 1;
|
|
|
|
Label node_name {
|
|
styles [
|
|
"heading",
|
|
]
|
|
|
|
wrap: true;
|
|
ellipsize: end;
|
|
lines: 2;
|
|
max-width-chars: 20;
|
|
}
|
|
|
|
Label media_name {
|
|
styles [
|
|
"dim-label",
|
|
"caption",
|
|
]
|
|
|
|
visible: false;
|
|
wrap: true;
|
|
ellipsize: end;
|
|
lines: 2;
|
|
max-width-chars: 20;
|
|
}
|
|
}
|
|
|
|
Separator separator {
|
|
visible: false;
|
|
}
|
|
|
|
Grid port_grid {}
|
|
}
|
|
}
|