mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-19 14:30:43 -04:00
Added waiting indicator to group tree for channels/posted when using "Mark all as read/unread".
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8020 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c811d71738
commit
d6ca3ffc27
21 changed files with 219 additions and 26 deletions
|
@ -1511,7 +1511,7 @@ void GxsForumThreadWidget::markMsgAsUnreadChildren()
|
|||
markMsgAsReadUnread(false, true, false);
|
||||
}
|
||||
|
||||
void GxsForumThreadWidget::setAllMessagesRead(bool read)
|
||||
void GxsForumThreadWidget::setAllMessagesReadDo(bool read, uint32_t &/*token*/)
|
||||
{
|
||||
markMsgAsReadUnread(read, true, true);
|
||||
}
|
||||
|
@ -1543,6 +1543,15 @@ bool GxsForumThreadWidget::navigate(const RsGxsMessageId &msgId)
|
|||
return false;
|
||||
}
|
||||
|
||||
bool GxsForumThreadWidget::isLoading()
|
||||
{
|
||||
if (mStateHelper->isLoading(mTokenTypeGroupData) || mFillThread) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return GxsMessageFrameWidget::isLoading();
|
||||
}
|
||||
|
||||
void GxsForumThreadWidget::copyMessageLink()
|
||||
{
|
||||
if (groupId().isNull() || mThreadId.isNull()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue