2 * Copyright (C) 2013-2015 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
19 import Unity.Application 0.1
20 import "../Components"
21 import "../Components/PanelState"
26 readonly property real panelHeight: indicatorArea.y + d.indicatorHeight
27 property alias indicators: __indicators
28 property alias callHint: __callHint
29 property bool fullscreenMode: false
30 property real indicatorAreaShowProgress: 1.0
31 property bool locked: false
35 anchors.topMargin: panelHeight
36 visible: !indicators.fullyClosed
38 onClicked: if (indicators.fullyOpened) indicators.hide();
39 hoverEnabled: true // should also eat hover events, otherwise they will pass through
44 property: "panelHeight"
45 value: indicators.minimizedPanelHeight
50 objectName: "indicatorArea"
54 transform: Translate {
55 y: indicators.state === "initial"
56 ? (1.0 - indicatorAreaShowProgress) * -d.indicatorHeight
61 id: indicatorsDropShadow
64 leftMargin: -units.gu(1)
65 bottomMargin: -units.gu(1)
67 visible: !indicators.fullyClosed
68 source: "graphics/rectangular_dropshadow.sci"
74 fill: indicatorAreaBackground
75 bottomMargin: -units.gu(1)
77 visible: PanelState.dropShadow && !callHint.visible
78 source: "graphics/rectangular_dropshadow.sci"
82 id: indicatorAreaBackground
83 color: callHint.visible ? theme.palette.normal.positive : theme.palette.normal.background
89 height: indicators.minimizedPanelHeight
91 Behavior on color { ColorAnimation { duration: UbuntuAnimation.FastDuration } }
95 objectName: "windowControlArea"
99 right: indicators.left
101 height: indicators.minimizedPanelHeight
103 onClicked: callHint.visible ? callHint.showLiveCall() : PanelState.focusMaximizedApp()
104 onDoubleClicked: PanelState.restoreClicked()
106 property bool mouseWasPressed: false
107 onPressed: mouseWasPressed = containsPress
109 if (mouseWasPressed && mouseY > panelHeight) {
110 PanelState.restoreClicked(); // restore the window when "dragging" the panel down
111 mouseWasPressed = false;
115 // WindowControlButtons inside the mouse area, otherwise QML doesn't grok nested hover events :/
116 // cf. https://bugreports.qt.io/browse/QTBUG-32909
117 WindowControlButtons {
118 id: windowControlButtons
119 objectName: "panelWindowControlButtons"
123 leftMargin: units.gu(1)
124 topMargin: units.gu(0.5)
125 bottomMargin: units.gu(0.5)
127 height: indicators.minimizedPanelHeight - anchors.topMargin - anchors.bottomMargin
128 visible: PanelState.buttonsVisible && parent.containsMouse && !root.locked && !callHint.visible
129 active: PanelState.buttonsVisible
130 onCloseClicked: PanelState.closeClicked()
131 onMinimizeClicked: PanelState.minimizeClicked()
132 onMaximizeClicked: PanelState.restoreClicked()
133 closeButtonShown: PanelState.closeButtonShown
139 objectName: "indicators"
147 width: root.width - (windowControlButtons.visible ? windowControlButtons.width + titleLabel.width : 0)
148 minimizedPanelHeight: units.gu(3)
149 expandedPanelHeight: units.gu(7)
150 openedHeight: root.height
153 if (callHint.visible) {
154 return Math.max(root.width - (callHint.width + units.gu(2)), 0)
158 enableHint: !callHint.active && !fullscreenMode
159 showOnClick: !callHint.visible
160 panelColor: indicatorAreaBackground.color
163 if (callHint.active) {
164 callHint.showLiveCall();
171 objectName: "windowDecorationTitle"
174 right: __indicators.left
176 leftMargin: units.gu(1)
177 rightMargin: units.gu(1)
178 topMargin: units.gu(0.5)
179 bottomMargin: units.gu(0.5)
182 height: indicators.minimizedPanelHeight - anchors.topMargin - anchors.bottomMargin
183 visible: !windowControlButtons.visible && !root.locked && !callHint.visible
184 verticalAlignment: Text.AlignVCenter
186 font.weight: PanelState.buttonsVisible ? Font.Light : Font.Medium
187 text: PanelState.title
188 elide: Text.ElideRight
192 // TODO here would the Locally integrated menus come
200 height: indicators.minimizedPanelHeight
201 visible: active && indicators.state == "initial"
207 objectName: "panelPriv"
208 readonly property real indicatorHeight: indicators.minimizedPanelHeight
213 name: "onscreen" //fully opaque and visible at top edge of screen
214 when: !fullscreenMode
216 target: indicatorArea;
222 name: "offscreen" //pushed off screen
225 target: indicatorArea;
226 anchors.topMargin: indicators.state === "initial" ? -d.indicatorHeight : 0
227 opacity: indicators.fullyClosed ? 0.0 : 1.0
230 target: indicators.showDragHandle;
231 anchors.bottomMargin: -units.gu(1)
239 UbuntuNumberAnimation { target: indicatorArea; properties: "anchors.topMargin,opacity" }
243 UbuntuNumberAnimation { target: indicatorArea; properties: "anchors.topMargin,opacity" }