2020-01-12 18:16:24 +03:00
|
|
|
import QtQml 2.1
|
|
|
|
import QtQml.Models 2.1
|
2019-12-08 13:32:22 +03:00
|
|
|
import QtQuick 2.9
|
2020-01-21 15:54:04 +03:00
|
|
|
import QtQuick.Window 2.3
|
2019-12-08 13:32:22 +03:00
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.2
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
// Custom qml modules are in /theme (and included by resources.qrc)
|
|
|
|
import Style 1.0
|
|
|
|
|
2020-06-15 18:01:39 +03:00
|
|
|
import com.nextcloud.desktopclient 1.0
|
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Window {
|
2020-01-19 22:13:12 +03:00
|
|
|
id: trayWindow
|
2019-12-08 13:32:22 +03:00
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.trayWindowWidth
|
|
|
|
height: Style.trayWindowHeight
|
|
|
|
color: "transparent"
|
2020-05-06 16:50:28 +03:00
|
|
|
flags: Qt.Dialog | Qt.FramelessWindowHint
|
2019-12-08 13:32:22 +03:00
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
// Close tray window when focus is lost (e.g. click somewhere else on the screen)
|
2019-12-30 13:39:21 +03:00
|
|
|
onActiveChanged: {
|
|
|
|
if(!active) {
|
|
|
|
trayWindow.hide();
|
2020-06-15 18:01:39 +03:00
|
|
|
Systray.setClosed();
|
2019-12-30 13:39:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-03 15:09:29 +03:00
|
|
|
onVisibleChanged: {
|
|
|
|
currentAccountAvatar.source = ""
|
|
|
|
currentAccountAvatar.source = "image://avatars/currentUser"
|
2020-01-12 13:06:48 +03:00
|
|
|
currentAccountStateIndicator.source = ""
|
2020-06-15 18:01:39 +03:00
|
|
|
currentAccountStateIndicator.source = UserModel.isUserConnected(UserModel.currentUserId()) ? "qrc:///client/theme/colored/state-ok.svg" : "qrc:///client/theme/colored/state-offline.svg"
|
2020-01-11 17:05:37 +03:00
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
// HACK: reload account Instantiator immediately by restting it - could be done better I guess
|
|
|
|
// see also id:accountMenu below
|
2020-01-11 17:05:37 +03:00
|
|
|
userLineInstantiator.active = false;
|
|
|
|
userLineInstantiator.active = true;
|
2020-01-03 15:09:29 +03:00
|
|
|
}
|
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Connections {
|
2020-06-15 18:01:39 +03:00
|
|
|
target: UserModel
|
2019-12-08 13:32:22 +03:00
|
|
|
onRefreshCurrentUserGui: {
|
2020-01-03 15:09:29 +03:00
|
|
|
currentAccountAvatar.source = ""
|
|
|
|
currentAccountAvatar.source = "image://avatars/currentUser"
|
2020-01-12 11:10:06 +03:00
|
|
|
currentAccountStateIndicator.source = ""
|
2020-06-15 18:01:39 +03:00
|
|
|
currentAccountStateIndicator.source = UserModel.isUserConnected(UserModel.currentUserId()) ? "qrc:///client/theme/colored/state-ok.svg" : "qrc:///client/theme/colored/state-offline.svg"
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
onNewUserSelected: {
|
2020-01-03 15:09:29 +03:00
|
|
|
accountMenu.close();
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
2019-12-30 13:52:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
2020-06-15 18:01:39 +03:00
|
|
|
target: Systray
|
2019-12-30 13:39:21 +03:00
|
|
|
onShowWindow: {
|
2020-01-05 18:25:32 +03:00
|
|
|
accountMenu.close();
|
2020-06-15 20:01:04 +03:00
|
|
|
appsMenu.close();
|
2020-05-20 20:36:57 +03:00
|
|
|
|
2020-06-15 18:01:39 +03:00
|
|
|
trayWindow.screen = Qt.application.screens[Systray.currentScreenIndex()];
|
2020-05-20 20:36:57 +03:00
|
|
|
|
2020-06-15 18:01:39 +03:00
|
|
|
var position = Systray.computeWindowPosition(trayWindow.width, trayWindow.height)
|
2020-05-20 20:36:57 +03:00
|
|
|
trayWindow.x = position.x
|
|
|
|
trayWindow.y = position.y
|
|
|
|
|
|
|
|
trayWindow.show();
|
|
|
|
trayWindow.raise();
|
|
|
|
trayWindow.requestActivate();
|
|
|
|
|
2020-06-15 18:01:39 +03:00
|
|
|
Systray.setOpened();
|
|
|
|
UserModel.fetchCurrentActivityModel();
|
2019-12-30 13:39:21 +03:00
|
|
|
}
|
|
|
|
onHideWindow: {
|
|
|
|
trayWindow.hide();
|
2020-06-15 18:01:39 +03:00
|
|
|
Systray.setClosed();
|
2019-12-30 13:39:21 +03:00
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: trayWindowBackground
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
radius: Style.trayWindowRadius
|
|
|
|
border.width: Style.trayWindowBorderWidth
|
2020-06-15 20:06:59 +03:00
|
|
|
border.color: Style.menuBorder
|
2019-12-08 13:32:22 +03:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: trayWindowHeaderBackground
|
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
anchors.left: trayWindowBackground.left
|
|
|
|
anchors.top: trayWindowBackground.top
|
|
|
|
height: Style.trayWindowHeaderHeight
|
|
|
|
width: Style.trayWindowWidth
|
|
|
|
radius: (Style.trayWindowRadius > 0) ? (Style.trayWindowRadius - 1) : 0
|
|
|
|
color: Style.ncBlue
|
|
|
|
|
|
|
|
// The overlay rectangle below eliminates the rounded corners from the bottom of the header
|
|
|
|
// as Qt only allows setting the radius for all corners right now, not specific ones
|
2019-12-08 13:32:22 +03:00
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
id: trayWindowHeaderButtomHalfBackground
|
|
|
|
|
|
|
|
anchors.left: trayWindowHeaderBackground.left
|
2019-12-08 13:32:22 +03:00
|
|
|
anchors.bottom: trayWindowHeaderBackground.bottom
|
2020-01-19 22:13:12 +03:00
|
|
|
height: Style.trayWindowHeaderHeight / 2
|
|
|
|
width: Style.trayWindowWidth
|
|
|
|
color: Style.ncBlue
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: trayWindowHeaderLayout
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
spacing: 0
|
|
|
|
anchors.fill: parent
|
2019-12-08 13:32:22 +03:00
|
|
|
|
|
|
|
Button {
|
|
|
|
id: currentAccountButton
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
Layout.preferredWidth: Style.currentAccountButtonWidth
|
|
|
|
Layout.preferredHeight: Style.trayWindowHeaderHeight
|
|
|
|
display: AbstractButton.IconOnly
|
|
|
|
flat: true
|
2019-12-08 13:32:22 +03:00
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: accountBtnMouseArea
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: Style.hoverEffectsEnabled
|
|
|
|
|
|
|
|
// HACK: Imitate Qt hover effect brightness (which is not accessible as property)
|
|
|
|
// so that indicator background also flicks when hovered
|
2020-01-15 22:11:50 +03:00
|
|
|
onContainsMouseChanged: {
|
2020-01-19 22:13:12 +03:00
|
|
|
currentAccountStateIndicatorBackground.color = (containsMouse ? Style.ncBlueHover : Style.ncBlue)
|
2020-01-15 22:11:50 +03:00
|
|
|
}
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
// We call open() instead of popup() because we want to position it
|
|
|
|
// exactly below the dropdown button, not the mouse
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: {
|
|
|
|
syncPauseButton.text = Systray.syncIsPaused() ? qsTr("Resume sync for all") : qsTr("Pause sync for all")
|
2019-12-08 13:32:22 +03:00
|
|
|
accountMenu.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
id: accountMenu
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
// x coordinate grows towards the right
|
|
|
|
// y coordinate grows towards the bottom
|
2019-12-08 13:32:22 +03:00
|
|
|
x: (currentAccountButton.x + 2)
|
2020-01-19 22:13:12 +03:00
|
|
|
y: (currentAccountButton.y + Style.trayWindowHeaderHeight + 2)
|
|
|
|
|
|
|
|
width: (Style.currentAccountButtonWidth - 2)
|
2020-01-05 23:06:42 +03:00
|
|
|
closePolicy: "CloseOnPressOutside"
|
2019-12-08 13:32:22 +03:00
|
|
|
|
|
|
|
background: Rectangle {
|
2020-06-15 20:06:59 +03:00
|
|
|
border.color: Style.menuBorder
|
2020-01-19 22:13:12 +03:00
|
|
|
radius: Style.currentAccountButtonRadius
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
2020-01-12 13:06:48 +03:00
|
|
|
onClosed: {
|
2020-01-19 22:13:12 +03:00
|
|
|
// HACK: reload account Instantiator immediately by restting it - could be done better I guess
|
|
|
|
// see also onVisibleChanged above
|
2020-01-12 13:06:48 +03:00
|
|
|
userLineInstantiator.active = false;
|
|
|
|
userLineInstantiator.active = true;
|
|
|
|
}
|
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Instantiator {
|
2020-01-10 18:28:53 +03:00
|
|
|
id: userLineInstantiator
|
2020-06-15 18:01:39 +03:00
|
|
|
model: UserModel
|
2019-12-08 13:32:22 +03:00
|
|
|
delegate: UserLine {}
|
2020-01-05 23:06:42 +03:00
|
|
|
onObjectAdded: accountMenu.insertItem(index, object)
|
2019-12-08 13:32:22 +03:00
|
|
|
onObjectRemoved: accountMenu.removeItem(object)
|
|
|
|
}
|
|
|
|
|
2020-01-04 19:22:56 +03:00
|
|
|
MenuItem {
|
2020-01-11 22:28:00 +03:00
|
|
|
id: addAccountButton
|
2020-01-19 22:13:12 +03:00
|
|
|
height: Style.addAccountButtonHeight
|
2020-01-11 22:28:00 +03:00
|
|
|
|
|
|
|
RowLayout {
|
2020-01-19 22:13:12 +03:00
|
|
|
anchors.fill: parent
|
2020-01-11 22:28:00 +03:00
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Image {
|
2020-01-19 22:13:12 +03:00
|
|
|
Layout.leftMargin: 12
|
2020-01-11 22:28:00 +03:00
|
|
|
verticalAlignment: Qt.AlignCenter
|
|
|
|
source: "qrc:///client/theme/black/add.svg"
|
2020-01-19 22:13:12 +03:00
|
|
|
sourceSize.width: Style.headerButtonIconSize
|
|
|
|
sourceSize.height: Style.headerButtonIconSize
|
2020-01-11 22:28:00 +03:00
|
|
|
}
|
|
|
|
Label {
|
2020-01-15 10:01:54 +03:00
|
|
|
Layout.leftMargin: 14
|
2020-01-14 09:59:28 +03:00
|
|
|
text: qsTr("Add account")
|
2020-01-11 22:28:00 +03:00
|
|
|
color: "black"
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-01-11 22:28:00 +03:00
|
|
|
}
|
2020-01-19 22:13:12 +03:00
|
|
|
// Filler on the right
|
2020-01-11 22:28:00 +03:00
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: UserModel.addAccount()
|
2020-01-04 19:22:56 +03:00
|
|
|
}
|
|
|
|
|
2020-06-22 01:49:06 +03:00
|
|
|
MenuSeparator {
|
|
|
|
contentItem: Rectangle {
|
|
|
|
implicitHeight: 1
|
|
|
|
color: Style.menuBorder
|
|
|
|
}
|
|
|
|
}
|
2020-01-04 19:22:56 +03:00
|
|
|
|
2020-01-05 18:25:32 +03:00
|
|
|
MenuItem {
|
2020-01-05 23:06:42 +03:00
|
|
|
id: syncPauseButton
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: Systray.pauseResumeSync()
|
2020-01-05 18:25:32 +03:00
|
|
|
}
|
|
|
|
|
2020-01-04 19:22:56 +03:00
|
|
|
MenuItem {
|
2020-01-14 09:59:28 +03:00
|
|
|
text: qsTr("Open settings")
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: Systray.openSettings()
|
2020-01-04 19:22:56 +03:00
|
|
|
}
|
|
|
|
|
2020-01-05 23:06:42 +03:00
|
|
|
MenuItem {
|
2020-01-14 09:59:28 +03:00
|
|
|
text: qsTr("Help")
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: Systray.openHelp()
|
2020-01-05 23:06:42 +03:00
|
|
|
}
|
|
|
|
|
2020-01-04 19:22:56 +03:00
|
|
|
MenuItem {
|
2020-01-14 09:59:28 +03:00
|
|
|
text: qsTr("Quit Nextcloud")
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: Systray.shutdown()
|
2020-01-04 19:22:56 +03:00
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
background:
|
|
|
|
Item {
|
|
|
|
id: leftHoverContainer
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
height: Style.trayWindowHeaderHeight
|
|
|
|
width: Style.currentAccountButtonWidth
|
2019-12-08 13:32:22 +03:00
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountButtonWidth / 2
|
|
|
|
height: Style.trayWindowHeaderHeight / 2
|
2019-12-08 13:32:22 +03:00
|
|
|
color: "transparent"
|
|
|
|
clip: true
|
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountButtonWidth
|
|
|
|
height: Style.trayWindowHeaderHeight
|
|
|
|
radius: Style.trayWindowRadius
|
2019-12-08 13:32:22 +03:00
|
|
|
color: "white"
|
|
|
|
opacity: 0.2
|
|
|
|
visible: accountBtnMouseArea.containsMouse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountButtonWidth / 2
|
|
|
|
height: Style.trayWindowHeaderHeight / 2
|
2019-12-08 13:32:22 +03:00
|
|
|
anchors.bottom: leftHoverContainer.bottom
|
|
|
|
color: "white"
|
|
|
|
opacity: 0.2
|
|
|
|
visible: accountBtnMouseArea.containsMouse
|
|
|
|
}
|
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountButtonWidth / 2
|
|
|
|
height: Style.trayWindowHeaderHeight / 2
|
2019-12-08 13:32:22 +03:00
|
|
|
anchors.right: leftHoverContainer.right
|
|
|
|
color: "white"
|
|
|
|
opacity: 0.2
|
|
|
|
visible: accountBtnMouseArea.containsMouse
|
|
|
|
}
|
|
|
|
Rectangle {
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountButtonWidth / 2
|
|
|
|
height: Style.trayWindowHeaderHeight / 2
|
2019-12-08 13:32:22 +03:00
|
|
|
anchors.right: leftHoverContainer.right
|
|
|
|
anchors.bottom: leftHoverContainer.bottom
|
|
|
|
color: "white"
|
|
|
|
opacity: 0.2
|
|
|
|
visible: accountBtnMouseArea.containsMouse
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: accountControlRowLayout
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
height: Style.trayWindowHeaderHeight
|
|
|
|
width: Style.currentAccountButtonWidth
|
2019-12-08 13:32:22 +03:00
|
|
|
spacing: 0
|
|
|
|
Image {
|
|
|
|
id: currentAccountAvatar
|
2020-01-19 22:13:12 +03:00
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Layout.leftMargin: 8
|
|
|
|
verticalAlignment: Qt.AlignCenter
|
2020-01-03 15:09:29 +03:00
|
|
|
cache: false
|
|
|
|
source: "image://avatars/currentUser"
|
2020-01-19 22:13:12 +03:00
|
|
|
Layout.preferredHeight: Style.accountAvatarSize
|
|
|
|
Layout.preferredWidth: Style.accountAvatarSize
|
|
|
|
|
2020-01-15 22:11:50 +03:00
|
|
|
Rectangle {
|
|
|
|
id: currentAccountStateIndicatorBackground
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.accountAvatarStateIndicatorSize + 2
|
2020-01-15 22:11:50 +03:00
|
|
|
height: width
|
|
|
|
anchors.bottom: currentAccountAvatar.bottom
|
|
|
|
anchors.right: currentAccountAvatar.right
|
2020-01-19 22:13:12 +03:00
|
|
|
color: Style.ncBlue
|
2020-01-15 22:11:50 +03:00
|
|
|
radius: width*0.5
|
|
|
|
}
|
2020-01-19 22:13:12 +03:00
|
|
|
|
2020-01-12 11:10:06 +03:00
|
|
|
Image {
|
|
|
|
id: currentAccountStateIndicator
|
2020-06-15 18:01:39 +03:00
|
|
|
source: UserModel.isUserConnected(UserModel.currentUserId()) ? "qrc:///client/theme/colored/state-ok.svg" : "qrc:///client/theme/colored/state-offline.svg"
|
2020-01-12 11:10:06 +03:00
|
|
|
cache: false
|
2020-01-15 22:11:50 +03:00
|
|
|
x: currentAccountStateIndicatorBackground.x + 1
|
|
|
|
y: currentAccountStateIndicatorBackground.y + 1
|
2020-01-19 22:13:12 +03:00
|
|
|
sourceSize.width: Style.accountAvatarStateIndicatorSize
|
|
|
|
sourceSize.height: Style.accountAvatarStateIndicatorSize
|
2020-01-12 11:10:06 +03:00
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: accountLabels
|
|
|
|
spacing: 4
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Layout.leftMargin: 6
|
|
|
|
Label {
|
|
|
|
id: currentAccountUser
|
2020-06-16 15:06:30 +03:00
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountLabelWidth
|
2020-06-16 15:06:30 +03:00
|
|
|
text: UserModel.currentUser.name
|
2020-01-05 23:06:42 +03:00
|
|
|
elide: Text.ElideRight
|
2019-12-08 13:32:22 +03:00
|
|
|
color: "white"
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2019-12-08 13:32:22 +03:00
|
|
|
font.bold: true
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
id: currentAccountServer
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.currentAccountLabelWidth
|
2020-06-16 15:06:30 +03:00
|
|
|
text: UserModel.currentUser.server
|
2020-01-05 23:06:42 +03:00
|
|
|
elide: Text.ElideRight
|
2019-12-08 13:32:22 +03:00
|
|
|
color: "white"
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.subLinePixelSize
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
2020-01-05 23:06:42 +03:00
|
|
|
Layout.alignment: Qt.AlignRight
|
2019-12-08 13:32:22 +03:00
|
|
|
verticalAlignment: Qt.AlignCenter
|
2020-01-19 22:13:12 +03:00
|
|
|
Layout.margins: Style.accountDropDownCaretMargin
|
2019-12-08 13:32:22 +03:00
|
|
|
source: "qrc:///client/theme/white/caret-down.svg"
|
2020-01-19 22:13:12 +03:00
|
|
|
sourceSize.width: Style.accountDropDownCaretSize
|
|
|
|
sourceSize.height: Style.accountDropDownCaretSize
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-19 22:13:12 +03:00
|
|
|
// Filler between account dropdown and header app buttons
|
2019-12-08 13:32:22 +03:00
|
|
|
Item {
|
|
|
|
id: trayWindowHeaderSpacer
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
HeaderButton {
|
2019-12-08 13:32:22 +03:00
|
|
|
id: openLocalFolderButton
|
2020-01-19 22:13:12 +03:00
|
|
|
|
2020-06-16 15:06:30 +03:00
|
|
|
visible: UserModel.currentUser.hasLocalFolder
|
2019-12-08 13:32:22 +03:00
|
|
|
icon.source: "qrc:///client/theme/white/folder.svg"
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: UserModel.openCurrentAccountLocalFolder()
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
HeaderButton {
|
2019-12-08 13:32:22 +03:00
|
|
|
id: trayWindowTalkButton
|
2020-01-19 22:13:12 +03:00
|
|
|
|
2020-06-16 15:06:30 +03:00
|
|
|
visible: UserModel.currentUser.serverHasTalk
|
2019-12-08 13:32:22 +03:00
|
|
|
icon.source: "qrc:///client/theme/white/talk-app.svg"
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: UserModel.openCurrentAccountTalk()
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
HeaderButton {
|
2019-12-08 13:32:22 +03:00
|
|
|
id: trayWindowAppsButton
|
|
|
|
icon.source: "qrc:///client/theme/white/more-apps.svg"
|
2020-06-15 16:35:34 +03:00
|
|
|
onClicked: {
|
|
|
|
/*
|
|
|
|
// The count() property was introduced in QtQuick.Controls 2.3 (Qt 5.10)
|
2020-06-15 18:01:39 +03:00
|
|
|
// so we handle this with UserModel.openCurrentAccountServer()
|
2020-06-15 16:35:34 +03:00
|
|
|
//
|
|
|
|
// See UserModel::openCurrentAccountServer() to disable this workaround
|
|
|
|
// in the future for Qt >= 5.10
|
|
|
|
|
|
|
|
if(appsMenu.count() > 0) {
|
|
|
|
appsMenu.popup();
|
|
|
|
} else {
|
2020-06-15 18:01:39 +03:00
|
|
|
UserModel.openCurrentAccountServer();
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
2020-06-15 16:35:34 +03:00
|
|
|
*/
|
2020-01-15 18:42:06 +03:00
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
appsMenu.open();
|
2020-06-15 18:01:39 +03:00
|
|
|
UserModel.openCurrentAccountServer();
|
2020-06-15 16:35:34 +03:00
|
|
|
}
|
2020-01-15 18:42:06 +03:00
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
Menu {
|
|
|
|
id: appsMenu
|
|
|
|
y: (trayWindowAppsButton.y + trayWindowAppsButton.height + 2)
|
|
|
|
width: Math.min(contentItem.childrenRect.width + 4, Style.trayWindowWidth / 2)
|
|
|
|
closePolicy: "CloseOnPressOutside"
|
2020-01-15 18:42:06 +03:00
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
background: Rectangle {
|
2020-06-15 20:06:59 +03:00
|
|
|
border.color: Style.menuBorder
|
2020-06-15 16:35:34 +03:00
|
|
|
radius: 2
|
2020-01-15 18:42:06 +03:00
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
|
2020-06-15 16:35:34 +03:00
|
|
|
Instantiator {
|
|
|
|
id: appsMenuInstantiator
|
2020-06-15 18:01:39 +03:00
|
|
|
model: UserAppsModel
|
2020-06-15 16:35:34 +03:00
|
|
|
onObjectAdded: appsMenu.insertItem(index, object)
|
|
|
|
onObjectRemoved: appsMenu.removeItem(object)
|
|
|
|
delegate: MenuItem {
|
|
|
|
text: appName
|
|
|
|
font.pixelSize: Style.topLinePixelSize
|
|
|
|
icon.source: appIconUrl
|
|
|
|
width: contentItem.implicitWidth + leftPadding + rightPadding
|
2020-06-15 18:01:39 +03:00
|
|
|
onTriggered: UserAppsModel.openAppUrl(appUrl)
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // Rectangle trayWindowHeaderBackground
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: activityListView
|
2020-01-19 22:13:12 +03:00
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
anchors.top: trayWindowHeaderBackground.bottom
|
2020-01-19 22:13:12 +03:00
|
|
|
anchors.horizontalCenter: trayWindowBackground.horizontalCenter
|
|
|
|
width: Style.trayWindowWidth - Style.trayWindowBorderWidth
|
|
|
|
height: Style.trayWindowHeight - Style.trayWindowHeaderHeight
|
2019-12-08 13:32:22 +03:00
|
|
|
clip: true
|
2020-01-13 11:59:34 +03:00
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
id: listViewScrollbar
|
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
|
2020-01-02 12:39:53 +03:00
|
|
|
model: activityModel
|
2019-12-08 13:32:22 +03:00
|
|
|
|
|
|
|
delegate: RowLayout {
|
|
|
|
id: activityItem
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
height: Style.trayWindowHeaderHeight
|
2019-12-08 13:32:22 +03:00
|
|
|
spacing: 0
|
2020-01-14 21:48:21 +03:00
|
|
|
|
2020-04-25 11:17:53 +03:00
|
|
|
MouseArea {
|
2020-06-15 20:08:16 +03:00
|
|
|
enabled: (path !== "" || link !== "")
|
2020-04-25 11:17:53 +03:00
|
|
|
anchors.left: activityItem.left
|
|
|
|
anchors.right: ((shareButton.visible) ? shareButton.left : activityItem.right)
|
|
|
|
height: parent.height
|
|
|
|
anchors.margins: 2
|
|
|
|
hoverEnabled: true
|
2020-06-15 20:08:16 +03:00
|
|
|
onClicked: {
|
|
|
|
if (path !== "") {
|
|
|
|
Qt.openUrlExternally(path)
|
|
|
|
} else {
|
|
|
|
Qt.openUrlExternally(link)
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 11:17:53 +03:00
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.delay: 1000
|
2020-06-15 20:08:16 +03:00
|
|
|
ToolTip.text: path !== "" ? qsTr("Open sync item locally") : qsTr("Open URL")
|
2020-04-25 11:17:53 +03:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: (parent.containsMouse ? Style.lightHover : "transparent")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Image {
|
|
|
|
id: activityIcon
|
2020-04-25 11:17:53 +03:00
|
|
|
anchors.left: activityItem.left
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
anchors.rightMargin: 8
|
|
|
|
Layout.preferredWidth: shareButton.icon.width
|
|
|
|
Layout.preferredHeight: shareButton.icon.height
|
2019-12-08 13:32:22 +03:00
|
|
|
verticalAlignment: Qt.AlignCenter
|
2020-01-13 11:59:34 +03:00
|
|
|
cache: true
|
|
|
|
source: icon
|
2020-01-17 12:38:21 +03:00
|
|
|
sourceSize.height: 64
|
|
|
|
sourceSize.width: 64
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
2020-04-25 11:17:53 +03:00
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Column {
|
2020-01-03 18:15:15 +03:00
|
|
|
id: activityTextColumn
|
2020-04-25 11:17:53 +03:00
|
|
|
anchors.left: activityIcon.right
|
|
|
|
anchors.leftMargin: 8
|
2019-12-08 13:32:22 +03:00
|
|
|
spacing: 4
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Text {
|
|
|
|
id: activityTextTitle
|
2020-01-17 16:50:05 +03:00
|
|
|
text: (type === "Activity" || type === "Notification") ? subject : message
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.activityLabelBaseWidth + ((path === "") ? activityItem.height : 0) + ((link === "") ? activityItem.height : 0) - 8
|
2020-01-03 18:15:15 +03:00
|
|
|
elide: Text.ElideRight
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.topLinePixelSize
|
2020-01-17 22:26:48 +03:00
|
|
|
color: activityTextTitleColor
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
2020-01-14 21:48:21 +03:00
|
|
|
|
2019-12-08 13:32:22 +03:00
|
|
|
Text {
|
|
|
|
id: activityTextInfo
|
2020-06-15 20:02:27 +03:00
|
|
|
text: (type === "Sync") ? displayPath
|
2020-05-25 21:03:01 +03:00
|
|
|
: (type === "File") ? subject
|
2020-06-15 20:02:27 +03:00
|
|
|
: (type === "Notification") ? message
|
|
|
|
: ""
|
2020-01-17 16:50:05 +03:00
|
|
|
height: (text === "") ? 0 : activityTextTitle.height
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.activityLabelBaseWidth + ((path === "") ? activityItem.height : 0) + ((link === "") ? activityItem.height : 0) - 8
|
2020-01-03 18:15:15 +03:00
|
|
|
elide: Text.ElideRight
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.subLinePixelSize
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
2020-01-17 22:16:20 +03:00
|
|
|
|
|
|
|
Text {
|
|
|
|
id: activityTextDateTime
|
|
|
|
text: dateTime
|
|
|
|
height: (text === "") ? 0 : activityTextTitle.height
|
2020-01-19 22:13:12 +03:00
|
|
|
width: Style.activityLabelBaseWidth + ((path === "") ? activityItem.height : 0) + ((link === "") ? activityItem.height : 0) - 8
|
2020-01-17 22:16:20 +03:00
|
|
|
elide: Text.ElideRight
|
2020-01-19 22:13:12 +03:00
|
|
|
font.pixelSize: Style.subLinePixelSize
|
2020-01-17 22:16:20 +03:00
|
|
|
color: "#808080"
|
|
|
|
}
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
Button {
|
2020-04-25 11:17:53 +03:00
|
|
|
id: shareButton
|
|
|
|
anchors.right: activityItem.right
|
2020-01-19 22:13:12 +03:00
|
|
|
|
|
|
|
Layout.preferredWidth: (path === "") ? 0 : parent.height
|
|
|
|
Layout.preferredHeight: parent.height
|
2019-12-08 13:32:22 +03:00
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
flat: true
|
2020-04-25 11:17:53 +03:00
|
|
|
hoverEnabled: true
|
2020-01-15 21:15:25 +03:00
|
|
|
visible: (path === "") ? false : true
|
2019-12-08 13:32:22 +03:00
|
|
|
display: AbstractButton.IconOnly
|
2020-04-27 09:06:58 +03:00
|
|
|
icon.source: "qrc:///client/theme/share.svg"
|
2019-12-08 13:32:22 +03:00
|
|
|
icon.color: "transparent"
|
2020-04-25 11:17:53 +03:00
|
|
|
background: Rectangle {
|
|
|
|
color: parent.hovered ? Style.lightHover : "transparent"
|
2020-01-13 13:46:49 +03:00
|
|
|
}
|
2020-04-25 11:17:53 +03:00
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.delay: 1000
|
|
|
|
ToolTip.text: qsTr("Open share dialog")
|
2020-06-15 18:01:39 +03:00
|
|
|
onClicked: Systray.openShareDialog(displayPath,absolutePath)
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 19:11:08 +03:00
|
|
|
/*add: Transition {
|
2019-12-08 13:32:22 +03:00
|
|
|
NumberAnimation { properties: "y"; from: -60; duration: 100; easing.type: Easing.Linear }
|
|
|
|
}
|
|
|
|
|
|
|
|
remove: Transition {
|
|
|
|
NumberAnimation { property: "opacity"; from: 1.0; to: 0; duration: 100 }
|
|
|
|
}
|
|
|
|
|
|
|
|
removeDisplaced: Transition {
|
|
|
|
SequentialAnimation {
|
|
|
|
PauseAnimation { duration: 100}
|
|
|
|
NumberAnimation { properties: "y"; duration: 100; easing.type: Easing.Linear }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
displaced: Transition {
|
|
|
|
NumberAnimation { properties: "y"; duration: 100; easing.type: Easing.Linear }
|
2020-01-16 19:11:08 +03:00
|
|
|
}*/
|
2019-12-08 13:32:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // Rectangle trayWindowBackground
|
|
|
|
}
|