2
import Ubuntu.Components 1.1
3
import Ubuntu.Components.Popups 1.0
10
title: i18n.tr("Go to page")
11
text: i18n.tr("Choose a page between 1 and %1").arg(pdfView.count)
19
inputMethodHints: Qt.ImhFormattedNumbersOnly
20
validator: IntValidator{ bottom: 1; top: view.count }
22
Keys.onReturnPressed: goToPage()
23
Component.onCompleted: forceActiveFocus()
28
color: UbuntuColors.orange
30
enabled: goToPageTextField.acceptableInput
35
text: i18n.tr("Cancel")
36
onClicked: PopupUtils.close(goToPageDialogue)
40
view.positionViewAtIndex((goToPageTextField.text - 1), ListView.Beginning)
41
PopupUtils.close(goToPageDialogue)