diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-05-30 14:54:40 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-05-30 14:54:44 +0200 |
commit | c633d67f627c23510681842f03522425db91fb91 (patch) | |
tree | 14c777b52dfcd60e30b5e4470da9eb8a7f24e88d /include | |
parent | 551fa4d1e90d8f197bfd2ef6f06f933592dd2450 (diff) |
Do not get notification if loading messages from cache, or if message is not latest
Diffstat (limited to 'include')
-rw-r--r-- | include/Channel.hpp | 1 | ||||
-rw-r--r-- | include/MessageBoard.hpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/Channel.hpp b/include/Channel.hpp index 5f5699e..af6cbf2 100644 --- a/include/Channel.hpp +++ b/include/Channel.hpp @@ -47,6 +47,7 @@ namespace dchat const std::vector<User*> getUsers() const; OnlineUser* getUserByPublicKey(const odhtdb::Signature::PublicKey &publicKey); const odhtdb::DatabaseNode& getNodeInfo() const; + Message* getLatestMessage(); // If timestamp is 0, then current time is used void addLocalMessage(const std::string &msg, User *owner, u64 timestampSeconds = 0); diff --git a/include/MessageBoard.hpp b/include/MessageBoard.hpp index 861d195..acdaad4 100644 --- a/include/MessageBoard.hpp +++ b/include/MessageBoard.hpp @@ -24,6 +24,8 @@ namespace dchat void processEvent(const sf::Event &event, Cache &cache); void draw(sf::RenderWindow &window, Cache &cache); + + Message* getLatestMessage(); private: usize findPositionToInsertMessageByTimestamp(Message *message); |