diff --git a/touch/PlayerPage.qml b/touch/PlayerPage.qml index 24d6037..9aed9ae 100644 --- a/touch/PlayerPage.qml +++ b/touch/PlayerPage.qml @@ -74,6 +74,30 @@ SlidePage { } } } + + IconMenuItem { + text: '-1m' + iconSource: 'icons/first_32x32.png' + onClicked: player.seekAndSync(player.position - 60 * 1000); + } + + IconMenuItem { + text: '-10s' + iconSource: 'icons/arrow_left_32x32.png' + onClicked: player.seekAndSync(player.position - 10 * 1000); + } + + IconMenuItem { + text: '+10s' + iconSource: 'icons/arrow_right_32x32.png' + onClicked: player.seekAndSync(player.position + 10 * 1000); + } + + IconMenuItem { + text: '+1m' + iconSource: 'icons/last_32x32.png' + onClicked: player.seekAndSync(player.position + 60 * 1000); + } } PLabel { diff --git a/touch/icons/arrow_left_32x32.png b/touch/icons/arrow_left_32x32.png new file mode 100644 index 0000000..9ef2fc2 Binary files /dev/null and b/touch/icons/arrow_left_32x32.png differ diff --git a/touch/icons/arrow_right_32x32.png b/touch/icons/arrow_right_32x32.png new file mode 100644 index 0000000..97fad62 Binary files /dev/null and b/touch/icons/arrow_right_32x32.png differ diff --git a/touch/icons/first_32x32.png b/touch/icons/first_32x32.png new file mode 100644 index 0000000..e84aa06 Binary files /dev/null and b/touch/icons/first_32x32.png differ diff --git a/touch/icons/last_32x32.png b/touch/icons/last_32x32.png new file mode 100644 index 0000000..5bf194d Binary files /dev/null and b/touch/icons/last_32x32.png differ