~ubuntu-branches/ubuntu/vivid/qtcreator-plugin-ubuntu/vivid

« back to all changes in this revision

Viewing changes to share/qtcreator/ubuntu/devicespage/LogPage.qml

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Benjamin Zeller
  • Date: 2015-01-30 06:05:59 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20150130060559-1kirdtmm6bl6eb26
Tags: 3.1.1+15.04.20150130-0ubuntu1
[ Benjamin Zeller ]
Refactoring of the publish Tab

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
import QtQuick.Layouts 1.0
3
 
import QtQuick.Controls 1.0 as Controls
4
 
 
5
 
import Ubuntu.Components 0.1
6
 
import Ubuntu.Components.ListItems 0.1 as ListItem
7
 
import Ubuntu.Components.Popups 0.1
8
 
 
9
 
Page {
10
 
    flickable: null
11
 
 
12
 
    Controls.TextArea {
13
 
        id: logTextArea
14
 
        anchors.fill: parent
15
 
        readOnly: true
16
 
        textFormat: TextEdit.AutoText
17
 
        Component.onCompleted: {
18
 
            deviceMode.appendText.connect(appendToLog);
19
 
        }
20
 
        function appendToLog (txt) {
21
 
            logTextArea.append(txt);
22
 
        }
23
 
    }
24
 
}