mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-05 23:55:35 -04:00
The channel message (in channels) is set to read when the user clicks on the show more button.
The forum/channel news feed is removed when the user reads the message in forums/channels. Recompile needed. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4927 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d828d23ca7
commit
07ea6829b6
7 changed files with 57 additions and 8 deletions
|
@ -48,6 +48,7 @@ class NotifyQt: public QObject, public NotifyBase
|
|||
virtual void notifyPeerStatusChanged(const std::string& peer_id, uint32_t state);
|
||||
/* one or more peers has changed the states */
|
||||
virtual void notifyPeerStatusChangedSummary();
|
||||
virtual void notifyForumMsgReadSatusChanged(const std::string& forumId, const std::string& msgId, uint32_t status);
|
||||
virtual void notifyChannelMsgReadSatusChanged(const std::string& channelId, const std::string& msgId, uint32_t status);
|
||||
virtual void notifyHistoryChanged(uint32_t msgId, int type);
|
||||
|
||||
|
@ -93,6 +94,7 @@ class NotifyQt: public QObject, public NotifyBase
|
|||
void discInfoChanged() const ;
|
||||
void downloadComplete(const QString& /* fileHash */);
|
||||
void downloadCompleteCountChanged(int /* count */);
|
||||
void forumMsgReadSatusChanged(const QString& forumId, const QString& msgId, int status);
|
||||
void channelMsgReadSatusChanged(const QString& channelId, const QString& msgId, int status);
|
||||
void historyChanged(uint msgId, int type);
|
||||
void chatLobbyInviteReceived() ;
|
||||
|
@ -101,8 +103,7 @@ class NotifyQt: public QObject, public NotifyBase
|
|||
void chatStyleChanged(int /*ChatStyle::enumStyleType*/ styleType);
|
||||
|
||||
public slots:
|
||||
|
||||
void UpdateGUI(); /* called by timer */
|
||||
void UpdateGUI(); /* called by timer */
|
||||
|
||||
private slots:
|
||||
void runningTick();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue