X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcore.h;h=0cba29eb9539e26a18834faac9649e2107b1d48f;hb=e95dffeaa5d005caa689f8fe34678b95f8fc6736;hp=7f1f9c20195dad0426663c09a7677c9dbbe51083;hpb=d3ea803d8977692f95bbe31fbaba3686fc2ce5a9;p=quassel.git diff --git a/src/core/core.h b/src/core/core.h index 7f1f9c20..0cba29eb 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -102,10 +102,11 @@ class Core : public QObject { * * \param user The core user who owns this buffername * \param networkId The network id + * \param type The type of the buffer (StatusBuffer, Channel, etc.) * \param buffer The buffer name (if empty, the net's status buffer is returned) * \return The BufferInfo corresponding to the given network and buffer name, or 0 if not found */ - static BufferInfo bufferInfo(UserId user, const NetworkId &networkId, const QString &buffer = ""); + static BufferInfo bufferInfo(UserId user, const NetworkId &networkId, BufferInfo::Type, const QString &buffer = ""); //! Store a Message in the backlog. /** \note This method is threadsafe. @@ -157,6 +158,20 @@ class Core : public QObject { */ static QList requestBuffers(UserId user, QDateTime since = QDateTime()); + //! Update the LastSeenDate for a Buffer + /** This Method is used to make the LastSeenDate of a Buffer persistent + * \param user The Owner of that Buffer + * \param bufferId The buffer id + * \param seenDate Time the Buffer has been visited the last time + */ + static void setBufferLastSeen(UserId user, const BufferId &bufferId, const QDateTime &seenDate); + + //! Get a Hash of all last seen dates. + /** This Method is called when the Quassel Core is started to restore the lastSeenDates + * \param user The Owner of the buffers + */ + static QHash bufferLastSeenDates(UserId user); + public slots: //! Make storage data persistent /** \note This method is threadsafe.