Unity 8
 All Classes Functions Properties
Header.qml
1 /*
2  * Copyright (C) 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 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 General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 import QtQuick 2.0
18 import Ubuntu.Components 0.1
19 
20 Item {
26  property alias text: label.text
27  property alias image: image.source
28 
29  signal clicked(variant mouse)
30 
31  height: units.gu(5)
32 
33  Item {
34  anchors {
35  left: parent.left
36  right: parent.right
37  rightMargin: units.gu(0.5)
38  top: parent.top
39  bottom: parent.bottom
40  }
41 
42  Label {
43  id: label
44  anchors {
45  left: parent.left
46  leftMargin: units.gu(2)
47  verticalCenter: parent.verticalCenter
48  }
49 
50  color: "grey" // TODO karni: Update Ubuntu.Compoonents.Themes.Palette.
51  font.family: "Ubuntu"
52  fontSize: "medium"
53  elide: Text.ElideRight
54  textFormat: Text.PlainText
55  width: parent.width - image.width - image.leftMargin - anchors.leftMargin
56  }
57 
58  Image {
59  id: image
60  readonly property double leftMargin: units.gu(1)
61  x: label.x + label.contentWidth + leftMargin
62  anchors {
63  verticalCenter: parent.verticalCenter
64  }
65  }
66  }
67 
68  MouseArea {
69  anchors.fill: parent
70  onClicked: parent.clicked(mouse)
71  }
72 }