mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-09 01:02:40 +00:00
46 lines
1.1 KiB
QML
46 lines
1.1 KiB
QML
import QtQuick 2.4
|
|
import Ubuntu.Components 1.3
|
|
import "../styles"
|
|
|
|
Component {
|
|
Rectangle {
|
|
width: parent.width
|
|
height: units.gu(5)
|
|
|
|
Text {
|
|
text: fileBaseName
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: units.gu(1)
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Icon {
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
width: units.gu(4)
|
|
height: units.gu(4)
|
|
name: fileIsDir ? "go-next" : "lock"
|
|
color: Theme.raisin_black
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
if (fileIsDir) {
|
|
folderModel.folder = folderModel.folder + "/" + fileName
|
|
backAction.visible = true
|
|
}
|
|
}
|
|
}
|
|
|
|
CustomBorder {
|
|
commonBorder: false
|
|
lBorderwidth: 0
|
|
rBorderwidth: 0
|
|
tBorderwidth: 0
|
|
bBorderwidth: 1
|
|
borderColor: UbuntuColors.warmGrey
|
|
}
|
|
}
|
|
}
|