2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-30 22:16:14 +00:00

Closed beta 10019010: unified attach button, new intro, new stickers.

Now all files sending is confirmed before preparing for sending.
You can paste from clipboard and drag many files at once.
This commit is contained in:
John Preston
2016-11-28 18:45:07 +03:00
parent 26c08236cd
commit 3cff50009c
92 changed files with 1702 additions and 1588 deletions

View File

@@ -450,8 +450,9 @@ void MainWidget::onShareContact(const PeerId &peer, UserData *contact) {
_history->onShareContact(peer, contact);
}
void MainWidget::onSendPaths(const PeerId &peer) {
_history->onSendPaths(peer);
bool MainWidget::onSendPaths(const PeerId &peer) {
Ui::showPeerHistory(peer, ShowAtTheEndMsgId);
return _history->confirmSendingFiles(cSendPaths());
}
void MainWidget::onFilesOrForwardDrop(const PeerId &peer, const QMimeData *data) {
@@ -463,7 +464,7 @@ void MainWidget::onFilesOrForwardDrop(const PeerId &peer, const QMimeData *data)
onForward(peer, ForwardPressedMessage);
} else {
Ui::showPeerHistory(peer, ShowAtTheEndMsgId);
_history->onFilesDrop(data);
_history->confirmSendingFiles(data);
}
}
@@ -1779,20 +1780,8 @@ void MainWidget::updateOnlineDisplay() {
_history->updateOnlineDisplay();
}
void MainWidget::onSendFileConfirm(const FileLoadResultPtr &file, bool ctrlShiftEnter) {
_history->confirmSendFile(file, ctrlShiftEnter);
}
void MainWidget::onSendFileCancel(const FileLoadResultPtr &file) {
_history->cancelSendFile(file);
}
void MainWidget::onShareContactConfirm(const QString &phone, const QString &fname, const QString &lname, MsgId replyTo, bool ctrlShiftEnter) {
_history->confirmShareContact(phone, fname, lname, replyTo, ctrlShiftEnter);
}
void MainWidget::onShareContactCancel() {
_history->cancelShareContact();
void MainWidget::onSendFileConfirm(const FileLoadResultPtr &file) {
_history->sendFileConfirmed(file);
}
bool MainWidget::onSendSticker(DocumentData *document) {