mirror of https://github.com/procxx/kepka.git
Close archive by escape even if chat is shown.
This commit is contained in:
parent
edf4180d11
commit
4ad8c4877c
|
@ -199,7 +199,7 @@ Widget::Widget(QWidget *parent, not_null<Window::Controller*> controller)
|
||||||
controller->openFolder(folder);
|
controller->openFolder(folder);
|
||||||
}
|
}
|
||||||
if (openSearchResult && !session().supportMode()) {
|
if (openSearchResult && !session().supportMode()) {
|
||||||
onCancel();
|
escape();
|
||||||
}
|
}
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ Widget::Widget(QWidget *parent, not_null<Window::Controller*> controller)
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
connect(_filter, &Ui::FlatInput::cancelled, [=] {
|
connect(_filter, &Ui::FlatInput::cancelled, [=] {
|
||||||
onCancel();
|
escape();
|
||||||
});
|
});
|
||||||
connect(_filter, &Ui::FlatInput::changed, [=] {
|
connect(_filter, &Ui::FlatInput::changed, [=] {
|
||||||
applyFilterUpdate();
|
applyFilterUpdate();
|
||||||
|
@ -643,12 +643,10 @@ void Widget::animationCallback() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Widget::onCancel() {
|
void Widget::escape() {
|
||||||
if (controller()->openedFolder().current()) {
|
if (controller()->openedFolder().current()) {
|
||||||
controller()->closeFolder();
|
controller()->closeFolder();
|
||||||
return;
|
} else if (!onCancelSearch()
|
||||||
}
|
|
||||||
if (!onCancelSearch()
|
|
||||||
|| (!_searchInChat && !App::main()->selectingPeer())) {
|
|| (!_searchInChat && !App::main()->selectingPeer())) {
|
||||||
emit cancelled();
|
emit cancelled();
|
||||||
}
|
}
|
||||||
|
|
|
@ -91,7 +91,6 @@ signals:
|
||||||
public slots:
|
public slots:
|
||||||
void onDraggingScrollDelta(int delta);
|
void onDraggingScrollDelta(int delta);
|
||||||
|
|
||||||
void onCancel();
|
|
||||||
void onListScroll();
|
void onListScroll();
|
||||||
bool onCancelSearch();
|
bool onCancelSearch();
|
||||||
void onCancelSearchInChat();
|
void onCancelSearchInChat();
|
||||||
|
@ -131,6 +130,7 @@ private:
|
||||||
void peerSearchReceived(
|
void peerSearchReceived(
|
||||||
const MTPcontacts_Found &result,
|
const MTPcontacts_Found &result,
|
||||||
mtpRequestId requestId);
|
mtpRequestId requestId);
|
||||||
|
void escape();
|
||||||
|
|
||||||
void setupSupportMode();
|
void setupSupportMode();
|
||||||
void setupConnectingWidget();
|
void setupConnectingWidget();
|
||||||
|
|
|
@ -1953,7 +1953,7 @@ TextForMimeData HistoryInner::getSelectedText() const {
|
||||||
|
|
||||||
void HistoryInner::keyPressEvent(QKeyEvent *e) {
|
void HistoryInner::keyPressEvent(QKeyEvent *e) {
|
||||||
if (e->key() == Qt::Key_Escape) {
|
if (e->key() == Qt::Key_Escape) {
|
||||||
_widget->onListEscapePressed();
|
_widget->escape();
|
||||||
} else if (e == QKeySequence::Copy && !_selected.empty()) {
|
} else if (e == QKeySequence::Copy && !_selected.empty()) {
|
||||||
copySelectedText();
|
copySelectedText();
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
|
|
|
@ -249,7 +249,9 @@ HistoryWidget::HistoryWidget(
|
||||||
_field,
|
_field,
|
||||||
&Ui::InputField::submitted,
|
&Ui::InputField::submitted,
|
||||||
[=](Qt::KeyboardModifiers modifiers) { send(modifiers); });
|
[=](Qt::KeyboardModifiers modifiers) { send(modifiers); });
|
||||||
connect(_field, SIGNAL(cancelled()), this, SLOT(onCancel()));
|
connect(_field, &Ui::InputField::cancelled, [=] {
|
||||||
|
escape();
|
||||||
|
});
|
||||||
connect(_field, SIGNAL(tabbed()), this, SLOT(onFieldTabbed()));
|
connect(_field, SIGNAL(tabbed()), this, SLOT(onFieldTabbed()));
|
||||||
connect(_field, SIGNAL(resized()), this, SLOT(onFieldResize()));
|
connect(_field, SIGNAL(resized()), this, SLOT(onFieldResize()));
|
||||||
connect(_field, SIGNAL(focused()), this, SLOT(onFieldFocused()));
|
connect(_field, SIGNAL(focused()), this, SLOT(onFieldFocused()));
|
||||||
|
@ -6080,39 +6082,6 @@ void HistoryWidget::updatePreview() {
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::onCancel() {
|
|
||||||
if (_isInlineBot) {
|
|
||||||
onInlineBotCancel();
|
|
||||||
} else if (_editMsgId) {
|
|
||||||
auto original = _replyEditMsg ? _replyEditMsg->originalText() : TextWithEntities();
|
|
||||||
auto editData = TextWithTags {
|
|
||||||
original.text,
|
|
||||||
ConvertEntitiesToTextTags(original.entities)
|
|
||||||
};
|
|
||||||
if (_replyEditMsg && editData != _field->getTextWithTags()) {
|
|
||||||
Ui::show(Box<ConfirmBox>(
|
|
||||||
lang(lng_cancel_edit_post_sure),
|
|
||||||
lang(lng_cancel_edit_post_yes),
|
|
||||||
lang(lng_cancel_edit_post_no),
|
|
||||||
crl::guard(this, [this] {
|
|
||||||
if (_editMsgId) {
|
|
||||||
cancelEdit();
|
|
||||||
Ui::hideLayer();
|
|
||||||
}
|
|
||||||
})));
|
|
||||||
} else {
|
|
||||||
cancelEdit();
|
|
||||||
}
|
|
||||||
} else if (!_fieldAutocomplete->isHidden()) {
|
|
||||||
_fieldAutocomplete->hideAnimated();
|
|
||||||
} else if (_replyToId && _field->getTextWithTags().text.isEmpty()) {
|
|
||||||
cancelReply();
|
|
||||||
} else {
|
|
||||||
controller()->showBackFromStack();
|
|
||||||
emit cancelled();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void HistoryWidget::fullPeerUpdated(PeerData *peer) {
|
void HistoryWidget::fullPeerUpdated(PeerData *peer) {
|
||||||
auto refresh = false;
|
auto refresh = false;
|
||||||
if (_list && peer == _peer) {
|
if (_list && peer == _peer) {
|
||||||
|
@ -6206,11 +6175,37 @@ void HistoryWidget::confirmDeleteSelected() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryWidget::onListEscapePressed() {
|
void HistoryWidget::escape() {
|
||||||
if (_nonEmptySelection && _list) {
|
if (_nonEmptySelection && _list) {
|
||||||
clearSelected();
|
clearSelected();
|
||||||
|
} else if (_isInlineBot) {
|
||||||
|
onInlineBotCancel();
|
||||||
|
} else if (_editMsgId) {
|
||||||
|
auto original = _replyEditMsg ? _replyEditMsg->originalText() : TextWithEntities();
|
||||||
|
auto editData = TextWithTags{
|
||||||
|
original.text,
|
||||||
|
ConvertEntitiesToTextTags(original.entities)
|
||||||
|
};
|
||||||
|
if (_replyEditMsg && editData != _field->getTextWithTags()) {
|
||||||
|
Ui::show(Box<ConfirmBox>(
|
||||||
|
lang(lng_cancel_edit_post_sure),
|
||||||
|
lang(lng_cancel_edit_post_yes),
|
||||||
|
lang(lng_cancel_edit_post_no),
|
||||||
|
crl::guard(this, [this] {
|
||||||
|
if (_editMsgId) {
|
||||||
|
cancelEdit();
|
||||||
|
Ui::hideLayer();
|
||||||
|
}
|
||||||
|
})));
|
||||||
|
} else {
|
||||||
|
cancelEdit();
|
||||||
|
}
|
||||||
|
} else if (!_fieldAutocomplete->isHidden()) {
|
||||||
|
_fieldAutocomplete->hideAnimated();
|
||||||
|
} else if (_replyToId && _field->getTextWithTags().text.isEmpty()) {
|
||||||
|
cancelReply();
|
||||||
} else {
|
} else {
|
||||||
onCancel();
|
emit cancelled();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -221,7 +221,7 @@ public:
|
||||||
bool recordingAnimationCallback(crl::time now);
|
bool recordingAnimationCallback(crl::time now);
|
||||||
void stopRecording(bool send);
|
void stopRecording(bool send);
|
||||||
|
|
||||||
void onListEscapePressed();
|
void escape();
|
||||||
|
|
||||||
void sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo);
|
void sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo);
|
||||||
void hideSingleUseKeyboard(PeerData *peer, MsgId replyTo);
|
void hideSingleUseKeyboard(PeerData *peer, MsgId replyTo);
|
||||||
|
@ -303,7 +303,6 @@ signals:
|
||||||
void cancelled();
|
void cancelled();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void onCancel();
|
|
||||||
void onPinnedHide();
|
void onPinnedHide();
|
||||||
void onFieldBarCancel();
|
void onFieldBarCancel();
|
||||||
|
|
||||||
|
|
|
@ -386,7 +386,16 @@ MainWidget::MainWidget(
|
||||||
connect(_dialogs, SIGNAL(cancelled()), this, SLOT(dialogsCancelled()));
|
connect(_dialogs, SIGNAL(cancelled()), this, SLOT(dialogsCancelled()));
|
||||||
connect(this, SIGNAL(dialogsUpdated()), _dialogs, SLOT(onListScroll()));
|
connect(this, SIGNAL(dialogsUpdated()), _dialogs, SLOT(onListScroll()));
|
||||||
connect(_history, &HistoryWidget::cancelled, [=] {
|
connect(_history, &HistoryWidget::cancelled, [=] {
|
||||||
_dialogs->setInnerFocus();
|
const auto historyFromFolder = _history->history()
|
||||||
|
? _history->history()->folder()
|
||||||
|
: nullptr;
|
||||||
|
const auto openedFolder = controller->openedFolder().current();
|
||||||
|
if (!openedFolder || historyFromFolder == openedFolder) {
|
||||||
|
controller->showBackFromStack();
|
||||||
|
_dialogs->setInnerFocus();
|
||||||
|
} else {
|
||||||
|
controller->closeFolder();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
subscribe(
|
subscribe(
|
||||||
Media::Player::instance()->updatedNotifier(),
|
Media::Player::instance()->updatedNotifier(),
|
||||||
|
|
Loading…
Reference in New Issue