2 * Copyright (C) 2014 Canonical, Ltd.
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.
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.
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/>.
16 * Authors: Michael Zanetti <michael.zanetti@canonical.com>
20 import Ubuntu.Components 1.1
21 import "../Components"
27 property alias title: titleLabel.text
28 property bool active: false
36 anchors.bottomMargin: -radius
39 GradientStop { color: "#626055"; position: 0 }
40 GradientStop { color: "#3C3B37"; position: 1 }
45 anchors { left: parent.left; top: parent.top; bottom: parent.bottom; margins: units.gu(0.7) }
47 opacity: root.active ? 1 : 0.5
49 WindowControlButtons {
51 onClose: root.close();
52 onMinimize: root.minimize();
53 onMaximize: root.maximize();
58 objectName: "windowDecorationTitle"
61 verticalAlignment: Text.AlignVCenter