~verzegnassi-stefano/+junk/reboot-thumbnailer

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
import QtQuick 2.0
import Ubuntu.Components 0.1


Flickable {
    id: flickable
    anchors.fill: parent
    contentHeight: columnMain.height
    contentWidth: parent.width


    Column {
        id: columnMain;
        width: parent.width;
        spacing: 10

        TextArea {

            id: textAreaMain;

            width: parent.width;

            autoSize: true;
            maximumLineCount: 0
            readOnly: true
            //activeFocusOnPress: false;
            highlighted: true;

            text: "Loading..."

            signal loadCompleted()

            Component.onCompleted: {
                var xhr = new XMLHttpRequest;

                xhr.open("GET", file.getPath());
                xhr.onreadystatechange = function() {
                    if (xhr.readyState === XMLHttpRequest.DONE) {
                        textAreaMain.text = xhr.responseText;
                        textAreaMain.loadCompleted();
                    }
                }

                xhr.send();
            }
        }
    }

}