~ubuntu-branches/ubuntu/trusty/unity8/trusty-proposed

« back to all changes in this revision

Viewing changes to plugins/Unity/Indicators/Messaging/qml/TextMessage.qml

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2014-02-03 16:56:47 UTC
  • mfrom: (1.1.64)
  • Revision ID: package-import@ubuntu.com-20140203165647-ik9w833cac4zu9da
Tags: 7.84+14.04.20140130.is.7.84+14.04.20131220-0ubuntu1
Reverting to last known good version, as after installing a click
application, it redirects you to the first click application everytime.
(LP: #1275832)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *      Renato Araujo Oliveira Filho <renato@canonical.com>
 
18
 *      Olivier Tilloy <olivier.tilloy@canonical.com>
 
19
 */
 
20
 
 
21
import QtQuick 2.0
 
22
import Ubuntu.Components 0.1
 
23
import Unity.Indicators 0.1 as Indicators
 
24
 
 
25
SimpleTextMessage {
 
26
    id: simpleMessage
 
27
 
 
28
    property bool replyEnabled: false
 
29
    property string replyButtonText: "Send"
 
30
 
 
31
    signal reply(string value)
 
32
 
 
33
    footer: ActionTextField {
 
34
        anchors.fill:  parent
 
35
 
 
36
        activateEnabled: simpleMessage.replyEnabled
 
37
        buttonText: simpleMessage.replyButtonText
 
38
 
 
39
        onActivate: {
 
40
            simpleMessage.reply(value);
 
41
        }
 
42
    }
 
43
}