2018-12-07 01:18:42 +00:00
|
|
|
import QtQuick 2.12
|
2018-12-22 14:25:03 +00:00
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import QtQuick.Controls.Material 2.12
|
2018-08-24 05:25:41 +00:00
|
|
|
import Qt.labs.settings 1.0
|
2018-10-21 02:17:21 +00:00
|
|
|
import Qt.labs.platform 1.0 as Platform
|
2018-10-01 08:07:48 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
import Spectral.Panel 2.0
|
2018-10-01 08:07:48 +00:00
|
|
|
import Spectral.Component 2.0
|
|
|
|
import Spectral.Page 2.0
|
2018-11-16 16:04:51 +00:00
|
|
|
import Spectral.Effect 2.0
|
2018-10-01 08:07:48 +00:00
|
|
|
|
2018-09-17 13:01:02 +00:00
|
|
|
import Spectral 0.1
|
2018-10-01 08:07:48 +00:00
|
|
|
import Spectral.Setting 0.1
|
2018-02-23 14:39:14 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
2018-12-16 02:47:58 +00:00
|
|
|
Material.theme: MPalette.theme
|
|
|
|
Material.background: MPalette.background
|
2018-11-16 12:30:42 +00:00
|
|
|
|
2018-02-23 14:39:14 +00:00
|
|
|
width: 960
|
|
|
|
height: 640
|
2018-09-15 11:07:38 +00:00
|
|
|
minimumWidth: 720
|
|
|
|
minimumHeight: 360
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: window
|
|
|
|
|
|
|
|
visible: true
|
2018-09-17 13:01:02 +00:00
|
|
|
title: qsTr("Spectral")
|
2018-07-07 09:38:20 +00:00
|
|
|
|
2018-12-16 02:47:58 +00:00
|
|
|
background: Rectangle {
|
|
|
|
color: MSettings.darkTheme ? "#303030" : "#FFFFFF"
|
|
|
|
}
|
|
|
|
|
2018-10-21 02:17:21 +00:00
|
|
|
Platform.SystemTrayIcon {
|
|
|
|
visible: MSettings.showTray
|
|
|
|
iconSource: "qrc:/assets/img/icon.png"
|
|
|
|
|
|
|
|
menu: Platform.Menu {
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Hide Window")
|
|
|
|
onTriggered: hideWindow()
|
|
|
|
}
|
|
|
|
Platform.MenuItem {
|
|
|
|
text: qsTr("Quit")
|
|
|
|
onTriggered: Qt.quit()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onActivated: showWindow()
|
|
|
|
}
|
|
|
|
|
2018-02-27 11:07:50 +00:00
|
|
|
Controller {
|
2018-09-17 13:01:02 +00:00
|
|
|
id: spectralController
|
2018-08-19 06:51:09 +00:00
|
|
|
|
2018-10-21 02:17:21 +00:00
|
|
|
quitOnLastWindowClosed: !MSettings.showTray
|
|
|
|
|
2018-10-19 14:02:12 +00:00
|
|
|
onNotificationClicked: {
|
2018-11-17 13:12:56 +00:00
|
|
|
roomListForm.enteredRoom = spectralController.connection.room(roomId)
|
2018-11-17 12:52:17 +00:00
|
|
|
roomForm.goToEvent(eventId)
|
2018-10-19 14:02:12 +00:00
|
|
|
showWindow()
|
|
|
|
}
|
2018-09-20 00:23:42 +00:00
|
|
|
onErrorOccured: {
|
2018-11-16 16:04:51 +00:00
|
|
|
roomListForm.errorControl.error = error
|
|
|
|
roomListForm.errorControl.detail = detail
|
|
|
|
roomListForm.errorControl.visible = true
|
2018-09-20 00:23:42 +00:00
|
|
|
}
|
2018-11-16 16:04:51 +00:00
|
|
|
onSyncDone: roomListForm.errorControl.visible = false
|
2018-02-26 12:41:20 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-11-22 12:35:49 +00:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.Quit
|
|
|
|
onActivated: Qt.quit()
|
|
|
|
}
|
|
|
|
|
2018-11-17 12:52:17 +00:00
|
|
|
Dialog {
|
|
|
|
property bool busy: false
|
|
|
|
|
|
|
|
width: 360
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
|
|
|
|
|
|
|
id: loginDialog
|
|
|
|
|
|
|
|
parent: ApplicationWindow.overlay
|
|
|
|
|
|
|
|
title: "Login"
|
|
|
|
|
2018-12-22 14:25:03 +00:00
|
|
|
contentItem: Column {
|
2018-11-17 12:52:17 +00:00
|
|
|
AutoTextField {
|
2018-12-22 14:25:03 +00:00
|
|
|
width: parent.width
|
2018-11-17 12:52:17 +00:00
|
|
|
|
|
|
|
id: serverField
|
|
|
|
|
|
|
|
placeholderText: "Server Address"
|
|
|
|
text: "https://matrix.org"
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoTextField {
|
2018-12-22 14:25:03 +00:00
|
|
|
width: parent.width
|
2018-11-17 12:52:17 +00:00
|
|
|
|
|
|
|
id: usernameField
|
|
|
|
|
|
|
|
placeholderText: "Username"
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoTextField {
|
2018-12-22 14:25:03 +00:00
|
|
|
width: parent.width
|
2018-11-17 12:52:17 +00:00
|
|
|
|
|
|
|
id: passwordField
|
|
|
|
|
|
|
|
placeholderText: "Password"
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: DialogButtonBox {
|
|
|
|
Button {
|
|
|
|
text: "OK"
|
|
|
|
flat: true
|
|
|
|
enabled: !loginDialog.busy
|
|
|
|
|
|
|
|
onClicked: loginDialog.doLogin()
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: "Cancel"
|
|
|
|
flat: true
|
|
|
|
enabled: !loginDialog.busy
|
|
|
|
|
|
|
|
onClicked: loginDialog.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolTip {
|
|
|
|
id: loginButtonTooltip
|
2018-11-18 12:08:01 +00:00
|
|
|
|
2018-11-17 12:52:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-17 13:12:56 +00:00
|
|
|
onVisibleChanged: {
|
|
|
|
if (visible) spectralController.onErrorOccured.connect(showError)
|
|
|
|
else spectralController.onErrorOccured.disconnect(showError)
|
|
|
|
}
|
|
|
|
|
|
|
|
function showError(error, detail) {
|
|
|
|
loginDialog.busy = false
|
|
|
|
loginButtonTooltip.text = error + ": " + detail
|
|
|
|
loginButtonTooltip.open()
|
2018-11-17 12:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doLogin() {
|
|
|
|
if (!(serverField.text.startsWith("http") && serverField.text.includes("://"))) {
|
|
|
|
loginButtonTooltip.text = "Server address should start with http(s)://"
|
|
|
|
loginButtonTooltip.open()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
loginDialog.busy = true
|
|
|
|
spectralController.loginWithCredentials(serverField.text, usernameField.text, passwordField.text)
|
|
|
|
|
|
|
|
spectralController.connectionAdded.connect(function(conn) {
|
|
|
|
busy = false
|
|
|
|
loginDialog.close()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
SplitView {
|
2018-07-07 09:38:20 +00:00
|
|
|
anchors.fill: parent
|
2018-09-22 14:28:47 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
RoomListPanel {
|
|
|
|
width: window.width * 0.35
|
|
|
|
Layout.minimumWidth: 180
|
2018-09-22 14:28:47 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
id: roomListForm
|
2018-09-22 14:28:47 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
clip: true
|
2018-09-22 14:28:47 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
controller: spectralController
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
onLeaveRoom: roomForm.saveReadMarker(room)
|
2018-07-07 09:38:20 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
RoomPanel {
|
2018-07-07 09:38:20 +00:00
|
|
|
Layout.fillWidth: true
|
2018-11-16 16:04:51 +00:00
|
|
|
Layout.minimumWidth: 480
|
|
|
|
|
|
|
|
id: roomForm
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
clip: true
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-11-16 16:04:51 +00:00
|
|
|
currentRoom: roomListForm.enteredRoom
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
Binding {
|
|
|
|
target: imageProvider
|
|
|
|
property: "connection"
|
2018-11-16 16:04:51 +00:00
|
|
|
value: spectralController.connection
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
2018-09-13 00:22:41 +00:00
|
|
|
|
2018-10-21 02:17:21 +00:00
|
|
|
function showWindow() {
|
|
|
|
window.show()
|
|
|
|
window.raise()
|
|
|
|
window.requestActivate()
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideWindow() {
|
|
|
|
window.hide()
|
|
|
|
}
|
|
|
|
|
2018-11-17 12:52:17 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
spectralController.initiated.connect(function() {
|
|
|
|
if (spectralController.accountCount == 0) loginDialog.open()
|
|
|
|
})
|
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|