doc fixes found while translating
[kdepim.git] / mobile / mail / MarkAsPage.qml
blob7830b08bdabae63935feff6f5cc341909a01b9b3
1 /*
2     Copyright (c) 2010 Volker Krause <vkrause@kde.org>
3     Copyright (c) 2010 Bertjan Broeksema <broeksema@kde.org>
4     Copyright (C) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
5     Copyright (c) 2010 Andras Mantia <amantia@kdab.com>
7     This library is free software; you can redistribute it and/or modify it
8     under the terms of the GNU Library General Public License as published by
9     the Free Software Foundation; either version 2 of the License, or (at your
10     option) any later version.
12     This library is distributed in the hope that it will be useful, but WITHOUT
13     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
15     License for more details.
17     You should have received a copy of the GNU Library General Public License
18     along with this library; see the file COPYING.LIB.  If not, write to the
19     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20     02110-1301, USA.
23 import Qt 4.7 as QML
24 import org.kde 4.5
25 import org.kde.pim.mobileui 4.5 as KPIM
27 QML.Rectangle {
28   id: root
29   anchors.fill: parent
30   color: "white"
31   z: 10
33   QML.MouseArea {
34     anchors.fill : parent
35     onClicked : {} // do nothing
36   }
38   QML.Rectangle {
39     anchors.right : root.right
40     anchors.rightMargin : 70
41     anchors.left : root.left
42     anchors.leftMargin : 70
43     anchors.top : root.top
44     anchors.topMargin : 70
45     color: "lightgray"
46     //how to calculate the height needed for buttons?
47     height: 168
49     QML.Column {
50       anchors.fill: parent
51       KPIM.Button2 {
52         width: parent.width
53         buttonText : application.getAction("akonadi_mark_as_read", "").text.replace("&", "");
54         onClicked : {
55           application.getAction("akonadi_mark_as_read", "").trigger();
56           root.parent.visible = false
57         }
58       }
59       KPIM.Button2 {
60         width: parent.width
61         buttonText : application.getAction("akonadi_mark_as_important", "").text.replace("&", "");
62         onClicked : {
63           application.getAction("akonadi_mark_as_important", "").trigger();
64           root.parent.visible = false
65         }
66       }
67       KPIM.Button2 {
68         width: parent.width
69         buttonText : application.getAction("akonadi_mark_as_action_item", "").text.replace("&", "");
70         onClicked : {
71           application.getAction("akonadi_mark_as_action_item", "").trigger();
72           root.parent.visible = false
73         }
74       }
75       KPIM.Button2 {
76         width: parent.width
77         buttonText : KDE.i18n( "Discard" )
78         onClicked : {
79           root.parent.visible = false
80         }
81       }
82     }
83   }