Composer: add an upload button + file dialog

Upload not working yet
This commit is contained in:
miruka
2019-10-27 15:12:57 -04:00
parent 8c41142b43
commit a67d611958
4 changed files with 21 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
import QtQuick 2.12
import QtQuick.Layouts 1.12
import "../Base"
import "../Dialogs"
import "../utils.js" as Utils
Rectangle {
@@ -203,5 +204,17 @@ Rectangle {
})
}
}
HButton {
icon.name: "upload-file"
backgroundColor: theme.chat.composer.uploadButton.background
toolTip.text: qsTr("Upload files")
Layout.fillHeight: true
HFileDialogOpener {
dialog.title: qsTr("Select files to upload")
}
}
}
}