make more pog
This commit is contained in:
parent
1b298644df
commit
056daa8a4c
1 changed files with 41 additions and 22 deletions
|
@ -135,9 +135,21 @@ paintable: bind template.playing_cover_art;
|
|||
label: bind template.song as <$WaveletSong>.year;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Separator {
|
||||
styles [
|
||||
"spacer",
|
||||
]
|
||||
|
||||
hexpand: true;
|
||||
}
|
||||
|
||||
Box {
|
||||
orientation: vertical;
|
||||
|
||||
Box {
|
||||
halign: start;
|
||||
halign: center;
|
||||
orientation: horizontal;
|
||||
|
||||
Label play_position_label {
|
||||
|
@ -171,35 +183,42 @@ paintable: bind template.playing_cover_art;
|
|||
label: bind $format_timestamp (template.playbin as <$Playbin>.duration) as <string>;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Separator {
|
||||
styles [
|
||||
"spacer",
|
||||
]
|
||||
Box {
|
||||
halign: center;
|
||||
orientation: horizontal;
|
||||
|
||||
hexpand: true;
|
||||
}
|
||||
Button {
|
||||
icon-name: "media-skip-backward";
|
||||
valign: center;
|
||||
|
||||
Button {
|
||||
icon-name: "media-skip-backward";
|
||||
valign: center;
|
||||
clicked => $on_skip_backward_clicked ();
|
||||
}
|
||||
|
||||
clicked => $on_skip_backward_clicked ();
|
||||
}
|
||||
Button {
|
||||
icon-name: "media-seek-backward";
|
||||
valign: center;
|
||||
}
|
||||
|
||||
Button {
|
||||
icon-name: bind $play_button_icon_name (template.playing) as <string>;
|
||||
valign: center;
|
||||
Button {
|
||||
icon-name: bind $play_button_icon_name (template.playing) as <string>;
|
||||
valign: center;
|
||||
|
||||
clicked => $on_play_pause_clicked ();
|
||||
}
|
||||
clicked => $on_play_pause_clicked ();
|
||||
}
|
||||
|
||||
Button {
|
||||
icon-name: "media-skip-forward";
|
||||
valign: center;
|
||||
Button {
|
||||
icon-name: "media-seek-forward";
|
||||
valign: center;
|
||||
}
|
||||
|
||||
clicked => $on_skip_forward_clicked ();
|
||||
Button {
|
||||
icon-name: "media-skip-forward";
|
||||
valign: center;
|
||||
|
||||
clicked => $on_skip_forward_clicked ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Button {
|
||||
|
|
Loading…
Reference in a new issue