mirror of https://github.com/procxx/kepka.git
From above the unread jump to unread by down button.
This commit is contained in:
parent
f72cb979c0
commit
ee8028cd53
|
@ -1617,6 +1617,18 @@ void HistoryWidget::applyCloudDraft(History *history) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HistoryWidget::insideJumpToEndInsteadOfToUnread() const {
|
||||||
|
if (session().supportMode()) {
|
||||||
|
return true;
|
||||||
|
} else if (!_historyInited) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
_history->calculateFirstUnreadMessage();
|
||||||
|
const auto unread = _history->firstUnreadMessage();
|
||||||
|
const auto visibleBottom = _scroll->scrollTop() + _scroll->height();
|
||||||
|
return unread && _list->itemTop(unread) <= visibleBottom;
|
||||||
|
}
|
||||||
|
|
||||||
void HistoryWidget::showHistory(
|
void HistoryWidget::showHistory(
|
||||||
const PeerId &peerId,
|
const PeerId &peerId,
|
||||||
MsgId showAtMsgId,
|
MsgId showAtMsgId,
|
||||||
|
@ -1634,9 +1646,15 @@ void HistoryWidget::showHistory(
|
||||||
if (_peer->id == peerId && !reload) {
|
if (_peer->id == peerId && !reload) {
|
||||||
updateForwarding();
|
updateForwarding();
|
||||||
|
|
||||||
if (showAtMsgId == ShowAtUnreadMsgId) {
|
if (showAtMsgId == ShowAtUnreadMsgId
|
||||||
|
&& insideJumpToEndInsteadOfToUnread()) {
|
||||||
showAtMsgId = ShowAtTheEndMsgId;
|
showAtMsgId = ShowAtTheEndMsgId;
|
||||||
}
|
}
|
||||||
|
if (!IsServerMsgId(showAtMsgId)
|
||||||
|
&& !IsServerMsgId(-showAtMsgId)) {
|
||||||
|
// To end or to unread.
|
||||||
|
destroyUnreadBar();
|
||||||
|
}
|
||||||
const auto canShowNow = _history->isReadyFor(showAtMsgId);
|
const auto canShowNow = _history->isReadyFor(showAtMsgId);
|
||||||
if (!canShowNow) {
|
if (!canShowNow) {
|
||||||
delayedShowAt(showAtMsgId);
|
delayedShowAt(showAtMsgId);
|
||||||
|
@ -2806,8 +2824,7 @@ void HistoryWidget::historyDownClicked() {
|
||||||
} else if (_replyReturn && _replyReturn->history() == _migrated) {
|
} else if (_replyReturn && _replyReturn->history() == _migrated) {
|
||||||
showHistory(_peer->id, -_replyReturn->id);
|
showHistory(_peer->id, -_replyReturn->id);
|
||||||
} else if (_peer) {
|
} else if (_peer) {
|
||||||
showHistory(_peer->id, ShowAtTheEndMsgId); // #TODO reading
|
showHistory(_peer->id, ShowAtUnreadMsgId);
|
||||||
// session().supportMode() ? ShowAtTheEndMsgId : ShowAtUnreadMsgId);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4990,6 +5007,8 @@ int HistoryWidget::countInitialScrollTop() {
|
||||||
createUnreadBarIfBelowVisibleArea(result);
|
createUnreadBarIfBelowVisibleArea(result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
} else if (_showAtMsgId == ShowAtTheEndMsgId) {
|
||||||
|
return ScrollMax;
|
||||||
} else if (const auto top = unreadBarTop()) {
|
} else if (const auto top = unreadBarTop()) {
|
||||||
return *top;
|
return *top;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -559,6 +559,7 @@ private:
|
||||||
void destroyUnreadBar();
|
void destroyUnreadBar();
|
||||||
void destroyUnreadBarOnClose();
|
void destroyUnreadBarOnClose();
|
||||||
void createUnreadBarIfBelowVisibleArea(int withScrollTop);
|
void createUnreadBarIfBelowVisibleArea(int withScrollTop);
|
||||||
|
[[nodiscard]] bool insideJumpToEndInsteadOfToUnread() const;
|
||||||
|
|
||||||
void saveEditMsg();
|
void saveEditMsg();
|
||||||
void saveEditMsgDone(History *history, const MTPUpdates &updates, mtpRequestId req);
|
void saveEditMsgDone(History *history, const MTPUpdates &updates, mtpRequestId req);
|
||||||
|
|
Loading…
Reference in New Issue