~elopio/ubuntu-filemanager-app/ubuntusdk_emulator

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * Copyright (C) 2013 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Arto Jalkanen <ajalkane@gmail.com>
 */
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.Popups 0.1

Popover {
    id: root
    property var model

    function dateTimeFormat(dateTime) {
        return Qt.formatDateTime(dateTime, Qt.DefaultLocaleShortDate)
    }

    function permissionsToString(model) {
        var permissions = []
        if (model.isReadable) {
            permissions.push(i18n.tr("Readable"))
        }
        if (model.isWritable) {
            permissions.push(i18n.tr("Writable"))
        }
        if (model.isExecutable) {
            permissions.push(i18n.tr("Executable"))
        }

        // Now why does this not work?
        // return permissions.join(", ")
        var permStr = ""
        for (var i = 0; i < permissions.length; ++i) {
            if (permStr.length > 0) {
                permStr += ", "
            }
            permStr += permissions[i]
        }
        return permStr
    }

    Column {
        anchors.margins: units.gu(2)
        Row {
            Image {
                // TODO: how to get proper icon?
                source: model.isDir
                        ? "/usr/share/icons/gnome/48x48/apps/file-manager.png"
                        : "/usr/share/icons/gnome/48x48/mimetypes/text-x-preview.png"
            }
            Label {
                text: model.fileName
                anchors.verticalCenter: parent.verticalCenter
            }
        }
        Grid {
            columns: 2
            spacing: units.gu(1)
            Label {
                text: i18n.tr("Size:")
            }
            Label {
                text: model.fileSize
            }

            Label {
                text: i18n.tr("Created:")
            }
            Label {
                text: dateTimeFormat(model.creationDate)
            }

            Label {
                text: i18n.tr("Modified:")
            }
            Label {
                text: dateTimeFormat(model.modifiedDate)
            }

            Label {
                text: i18n.tr("Permissions:")
            }
            Label {
                text: permissionsToString(model)
            }

        }
    }
}