Unity 8
WindowDecoration.qml
1 /*
2  * Copyright (C) 2014 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  * Authors: Michael Zanetti <michael.zanetti@canonical.com>
17  */
18 
19 import QtQuick 2.3
20 import Ubuntu.Components 1.1
21 import "../Components"
22 
23 Item {
24  id: root
25  clip: true
26 
27  property alias title: titleLabel.text
28  property bool active: false
29 
30  signal close()
31  signal minimize()
32  signal maximize()
33 
34  Rectangle {
35  anchors.fill: parent
36  anchors.bottomMargin: -radius
37  radius: units.gu(.5)
38  gradient: Gradient {
39  GradientStop { color: "#626055"; position: 0 }
40  GradientStop { color: "#3C3B37"; position: 1 }
41  }
42  }
43 
44  Row {
45  anchors { left: parent.left; top: parent.top; bottom: parent.bottom; margins: units.gu(0.7) }
46  spacing: units.gu(1)
47  opacity: root.active ? 1 : 0.5
48 
49  WindowControlButtons {
50  height: parent.height
51  onClose: root.close();
52  onMinimize: root.minimize();
53  onMaximize: root.maximize();
54  }
55 
56  Label {
57  id: titleLabel
58  color: "#DFDBD2"
59  height: parent.height
60  verticalAlignment: Text.AlignVCenter
61  fontSize: "small"
62  font.bold: true
63  }
64  }
65 }