2 * Copyright (C) 2014-2016 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/>.
18 import Ubuntu.Components 1.3
22 spacing: overlayShown ? units.gu(2) : windowIsMaximized ? 0 : units.gu(1)
24 UbuntuNumberAnimation {}
27 // to be set from outside
28 property bool active: false
29 property bool windowIsMaximized: false
30 property bool closeButtonShown: true
31 property bool maximizeButtonShown: true
32 property bool overlayShown
35 signal minimizeClicked()
36 signal maximizeClicked()
37 signal maximizeVerticallyClicked()
38 signal maximizeHorizontallyClicked()
42 objectName: "closeWindowButton"
46 onClicked: root.closeClicked()
47 visible: root.closeButtonShown
51 anchors.margins: windowIsMaximized ? units.dp(3) : 0
53 color: theme.palette.normal.negative
54 visible: parent.containsMouse && !overlayShown
58 anchors.margins: windowIsMaximized ? units.dp(6) : units.dp(3)
59 source: "graphics/window-close.svg"
60 color: root.active ? "white" : UbuntuColors.slate
65 id: minimizeWindowButton
66 objectName: "minimizeWindowButton"
70 onClicked: root.minimizeClicked()
74 anchors.margins: windowIsMaximized ? units.dp(3) : 0
76 color: root.active ? UbuntuColors.graphite : UbuntuColors.ash
77 visible: parent.containsMouse && !overlayShown
81 anchors.margins: windowIsMaximized ? units.dp(6) : units.dp(3)
82 source: "graphics/window-minimize.svg"
83 color: root.active ? "white" : UbuntuColors.slate
88 id: maximizeWindowButton
89 objectName: "maximizeWindowButton"
93 visible: root.maximizeButtonShown
94 acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.MiddleButton
96 if (mouse.button == Qt.LeftButton) {
97 root.maximizeClicked();
98 } else if (mouse.button == Qt.RightButton) {
99 root.maximizeHorizontallyClicked();
100 } else if (mouse.button == Qt.MiddleButton) {
101 root.maximizeVerticallyClicked();
107 anchors.margins: windowIsMaximized ? units.dp(3) : 0
109 color: root.active ? UbuntuColors.graphite : UbuntuColors.ash
110 visible: parent.containsMouse && !overlayShown
114 anchors.margins: windowIsMaximized ? units.dp(6) : units.dp(3)
115 source: root.windowIsMaximized ? "graphics/window-window.svg" : "graphics/window-maximize.svg"
116 color: root.active ? "white" : UbuntuColors.slate