2018-07-12 01:44:41 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtQuick.Controls.Material 2.2
|
2018-08-24 05:25:41 +00:00
|
|
|
import Qt.labs.settings 1.0
|
2018-02-23 14:39:14 +00:00
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import Matrique 0.1
|
2018-08-24 05:25:41 +00:00
|
|
|
import Matrique.Settings 0.1
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
import "component"
|
|
|
|
import "form"
|
|
|
|
|
2018-02-23 14:39:14 +00:00
|
|
|
ApplicationWindow {
|
2018-09-09 13:13:43 +00:00
|
|
|
readonly property var currentConnection: accountListView.currentConnection ? accountListView.currentConnection : null
|
2018-07-20 14:36:19 +00:00
|
|
|
|
2018-02-23 14:39:14 +00:00
|
|
|
width: 960
|
|
|
|
height: 640
|
2018-08-01 12:26:29 +00:00
|
|
|
minimumWidth: 800
|
2018-07-20 05:50:25 +00:00
|
|
|
minimumHeight: 480
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: window
|
|
|
|
|
|
|
|
visible: true
|
2018-02-23 14:39:14 +00:00
|
|
|
title: qsTr("Matrique")
|
2018-07-07 09:38:20 +00:00
|
|
|
|
2018-08-24 05:25:41 +00:00
|
|
|
Material.theme: MSettings.darkTheme ? Material.Dark : Material.Light
|
2018-07-20 05:50:25 +00:00
|
|
|
|
2018-08-21 14:57:15 +00:00
|
|
|
FontLoader { id: materialFont; source: "qrc:/asset/font/material.ttf" }
|
|
|
|
|
2018-02-27 11:07:50 +00:00
|
|
|
Controller {
|
2018-07-07 09:38:20 +00:00
|
|
|
id: matriqueController
|
2018-08-19 06:51:09 +00:00
|
|
|
|
2018-09-06 13:00:58 +00:00
|
|
|
onToggleWindow: {
|
|
|
|
console.log("Activating window...")
|
|
|
|
if (window.visible) {
|
|
|
|
window.hide()
|
|
|
|
} else {
|
|
|
|
window.show()
|
|
|
|
window.raise()
|
|
|
|
window.requestActivate()
|
|
|
|
}
|
|
|
|
}
|
2018-02-26 12:41:20 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
AccountListModel {
|
|
|
|
id: accountListModel
|
|
|
|
controller: matriqueController
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
Popup {
|
|
|
|
property bool busy: matriqueController.busy
|
|
|
|
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: busyPopup
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
modal: true
|
|
|
|
focus: true
|
|
|
|
|
2018-09-06 23:11:08 +00:00
|
|
|
closePolicy: Popup.NoAutoClose
|
2018-07-07 09:38:20 +00:00
|
|
|
|
|
|
|
BusyIndicator { running: true }
|
|
|
|
|
2018-08-07 15:41:18 +00:00
|
|
|
onBusyChanged: busyPopup.busy ? busyPopup.open() : busyPopup.close()
|
2018-03-02 11:58:55 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
Component {
|
|
|
|
id: loginPage
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
Login { controller: matriqueController }
|
|
|
|
}
|
2018-03-01 11:15:04 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
Room {
|
|
|
|
id: roomPage
|
2018-07-22 12:31:52 +00:00
|
|
|
|
|
|
|
parent: null
|
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
connection: currentConnection
|
2018-07-07 09:38:20 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-19 05:54:59 +00:00
|
|
|
Setting {
|
|
|
|
id: settingPage
|
2018-07-22 12:31:52 +00:00
|
|
|
|
|
|
|
parent: null
|
2018-09-09 13:13:43 +00:00
|
|
|
|
|
|
|
listModel: accountListModel
|
2018-07-19 05:54:59 +00:00
|
|
|
}
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
RowLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-08-24 05:25:41 +00:00
|
|
|
Rectangle {
|
2018-09-02 13:26:42 +00:00
|
|
|
Layout.preferredWidth: 64
|
2018-07-07 09:38:20 +00:00
|
|
|
Layout.fillHeight: true
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: sideNav
|
|
|
|
|
2018-09-02 13:26:42 +00:00
|
|
|
color: Material.primary
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
ColumnLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
2018-03-02 15:05:32 +00:00
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
ListView {
|
|
|
|
property var currentConnection: null
|
|
|
|
|
2018-09-02 13:26:42 +00:00
|
|
|
Layout.fillWidth: true
|
2018-09-09 02:12:45 +00:00
|
|
|
Layout.fillHeight: true
|
2018-09-02 13:26:42 +00:00
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
id: accountListView
|
2018-07-07 09:38:20 +00:00
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
model: accountListModel
|
2018-07-07 09:38:20 +00:00
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
spacing: 0
|
2018-03-02 15:05:32 +00:00
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
delegate: SideNavButton {
|
|
|
|
width: parent.width
|
|
|
|
height: width
|
|
|
|
|
2018-09-09 10:35:37 +00:00
|
|
|
ImageItem {
|
2018-09-09 02:12:45 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 12
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-09-09 10:35:37 +00:00
|
|
|
hint: name
|
|
|
|
image: avatar
|
|
|
|
defaultColor: Material.accent
|
2018-09-09 02:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
page: roomPage
|
|
|
|
|
|
|
|
onClicked: accountListView.currentConnection = connection
|
|
|
|
}
|
2018-03-02 15:05:32 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
SideNavButton {
|
2018-09-02 13:26:42 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: width
|
|
|
|
|
|
|
|
MaterialIcon {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
icon: "\ue145"
|
|
|
|
color: "white"
|
|
|
|
}
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
onClicked: addRoomMenu.popup()
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
id: addRoomMenu
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
MenuItem {
|
|
|
|
text:"New Room"
|
|
|
|
onTriggered: addRoomDialog.open()
|
|
|
|
|
|
|
|
Dialog {
|
|
|
|
id: addRoomDialog
|
|
|
|
parent: ApplicationWindow.overlay
|
|
|
|
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
|
|
|
width: 360
|
|
|
|
|
|
|
|
title: "New Room"
|
|
|
|
modal: true
|
|
|
|
standardButtons: Dialog.Ok | Dialog.Cancel
|
|
|
|
|
|
|
|
contentItem: Column {
|
|
|
|
TextField {
|
|
|
|
width: parent.width
|
|
|
|
|
2018-09-04 13:13:14 +00:00
|
|
|
id: addRoomDialogNameTextField
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
placeholderText: "Name"
|
|
|
|
}
|
|
|
|
TextField {
|
|
|
|
width: parent.width
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: addRoomDialogTopicTextField
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
placeholderText: "Topic"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
onAccepted: matriqueController.createRoom(currentConnection, addRoomDialogNameTextField.text, addRoomDialogTopicTextField.text)
|
2018-08-01 12:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: "Join Room"
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
onTriggered: joinRoomDialog.open()
|
|
|
|
|
|
|
|
Dialog {
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
|
|
|
width: 360
|
|
|
|
|
2018-09-04 13:13:14 +00:00
|
|
|
id: joinRoomDialog
|
|
|
|
|
|
|
|
parent: ApplicationWindow.overlay
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
title: "Input Room Alias or ID"
|
|
|
|
modal: true
|
|
|
|
standardButtons: Dialog.Ok | Dialog.Cancel
|
|
|
|
|
|
|
|
contentItem: TextField {
|
|
|
|
id: joinRoomDialogTextField
|
2018-08-09 11:58:19 +00:00
|
|
|
placeholderText: "#matrix:matrix.org"
|
2018-08-01 12:26:29 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
onAccepted: matriqueController.joinRoom(currentConnection, joinRoomDialogTextField.text)
|
2018-08-01 12:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-02 13:26:42 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
MenuItem {
|
|
|
|
text: "Direct Chat"
|
2018-09-04 13:13:14 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
onTriggered: directChatDialog.open()
|
|
|
|
|
|
|
|
Dialog {
|
|
|
|
x: (window.width - width) / 2
|
|
|
|
y: (window.height - height) / 2
|
|
|
|
width: 360
|
|
|
|
|
2018-09-04 13:13:14 +00:00
|
|
|
id: directChatDialog
|
|
|
|
|
|
|
|
parent: ApplicationWindow.overlay
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
title: "Input User ID"
|
|
|
|
modal: true
|
|
|
|
standardButtons: Dialog.Ok | Dialog.Cancel
|
|
|
|
|
|
|
|
contentItem: TextField {
|
|
|
|
id: directChatDialogTextField
|
2018-08-09 11:58:19 +00:00
|
|
|
placeholderText: "@bot:matrix.org"
|
2018-08-01 12:26:29 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
onAccepted: currentConnection.createDirectChat(directChatDialogTextField.text)
|
2018-08-01 12:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
SideNavButton {
|
2018-09-02 13:26:42 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: width
|
|
|
|
|
|
|
|
MaterialIcon {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
icon: "\ue8b8"
|
2018-09-09 02:12:45 +00:00
|
|
|
color: "white"
|
|
|
|
}
|
|
|
|
page: loginPage
|
|
|
|
}
|
|
|
|
|
|
|
|
SideNavButton {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: width
|
|
|
|
|
|
|
|
MaterialIcon {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
icon: "\ue8b8"
|
|
|
|
color: "white"
|
2018-09-02 13:26:42 +00:00
|
|
|
}
|
2018-07-19 05:54:59 +00:00
|
|
|
page: settingPage
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
2018-03-01 11:15:04 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
SideNavButton {
|
2018-09-02 13:26:42 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: width
|
|
|
|
|
|
|
|
MaterialIcon {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
icon: "\ue879"
|
|
|
|
color: "white"
|
|
|
|
}
|
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
onClicked: Qt.quit()
|
2018-03-01 11:15:04 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
2018-07-07 09:38:20 +00:00
|
|
|
}
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-07 09:38:20 +00:00
|
|
|
StackView {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2018-09-04 13:13:14 +00:00
|
|
|
|
|
|
|
id: stackView
|
|
|
|
|
2018-09-09 13:13:43 +00:00
|
|
|
// initialItem: roomPage
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
Binding {
|
|
|
|
target: imageProvider
|
|
|
|
property: "connection"
|
2018-09-09 13:13:43 +00:00
|
|
|
value: currentConnection
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|
|
|
|
}
|