70 lines
1.7 KiB
QML
70 lines
1.7 KiB
QML
import QtQuick 2.0
|
|
import Sailfish.Silica 1.0
|
|
|
|
Setting {
|
|
property var choices
|
|
|
|
function prettifyChoice(name, value)
|
|
{
|
|
switch(name) {
|
|
case "print-quality":
|
|
switch(value) {
|
|
case 3:
|
|
return "draft";
|
|
case 4:
|
|
return "normal";
|
|
case 5:
|
|
return "high";
|
|
default:
|
|
return "unknown quality "+value
|
|
}
|
|
case "orientation-requested":
|
|
switch(value) {
|
|
case 3:
|
|
return "portrait";
|
|
case 4:
|
|
return "landscape";
|
|
case 5:
|
|
return "reverse landscape";
|
|
case 6:
|
|
return "reverse portrait";
|
|
default:
|
|
return "unknown orientation "+value
|
|
}
|
|
case "printer-resolution":
|
|
|
|
var units = "";
|
|
if(value.units==3) {
|
|
units="dpi";
|
|
} else if (units==4){
|
|
units="dots/cm"
|
|
}
|
|
return ""+value.x+"x"+value.y+units;
|
|
}
|
|
return value;
|
|
}
|
|
ValueButton {
|
|
enabled: valid
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
label: prettyName
|
|
value: prettifyChoice(name, choice ? choice : default_choice)
|
|
onClicked: parent.clicked()
|
|
}
|
|
|
|
property var menu: ContextMenu {
|
|
id: menu
|
|
Repeater {
|
|
model: choices
|
|
MenuItem {
|
|
text: prettifyChoice(name, choices[index])
|
|
onClicked:
|
|
{
|
|
choice = choices[index];
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|