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;
|
label: bind template.song as <$WaveletSong>.year;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Separator {
|
||||||
|
styles [
|
||||||
|
"spacer",
|
||||||
|
]
|
||||||
|
|
||||||
|
hexpand: true;
|
||||||
|
}
|
||||||
|
|
||||||
Box {
|
Box {
|
||||||
halign: start;
|
orientation: vertical;
|
||||||
|
|
||||||
|
Box {
|
||||||
|
halign: center;
|
||||||
orientation: horizontal;
|
orientation: horizontal;
|
||||||
|
|
||||||
Label play_position_label {
|
Label play_position_label {
|
||||||
|
@ -171,15 +183,10 @@ paintable: bind template.playing_cover_art;
|
||||||
label: bind $format_timestamp (template.playbin as <$Playbin>.duration) as <string>;
|
label: bind $format_timestamp (template.playbin as <$Playbin>.duration) as <string>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
Separator {
|
Box {
|
||||||
styles [
|
halign: center;
|
||||||
"spacer",
|
orientation: horizontal;
|
||||||
]
|
|
||||||
|
|
||||||
hexpand: true;
|
|
||||||
}
|
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
icon-name: "media-skip-backward";
|
icon-name: "media-skip-backward";
|
||||||
|
@ -188,6 +195,11 @@ paintable: bind template.playing_cover_art;
|
||||||
clicked => $on_skip_backward_clicked ();
|
clicked => $on_skip_backward_clicked ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Button {
|
||||||
|
icon-name: "media-seek-backward";
|
||||||
|
valign: center;
|
||||||
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
icon-name: bind $play_button_icon_name (template.playing) as <string>;
|
icon-name: bind $play_button_icon_name (template.playing) as <string>;
|
||||||
valign: center;
|
valign: center;
|
||||||
|
@ -195,12 +207,19 @@ paintable: bind template.playing_cover_art;
|
||||||
clicked => $on_play_pause_clicked ();
|
clicked => $on_play_pause_clicked ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Button {
|
||||||
|
icon-name: "media-seek-forward";
|
||||||
|
valign: center;
|
||||||
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
icon-name: "media-skip-forward";
|
icon-name: "media-skip-forward";
|
||||||
valign: center;
|
valign: center;
|
||||||
|
|
||||||
clicked => $on_skip_forward_clicked ();
|
clicked => $on_skip_forward_clicked ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
icon-name: "non-starred";
|
icon-name: "non-starred";
|
||||||
|
|
Loading…
Reference in a new issue