1 /***************************************************************************
2 * Copyright (C) 2005-2016 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef COREBUFFERSYNCER_H
22 #define COREBUFFERSYNCER_H
24 #include "buffersyncer.h"
28 class CoreBufferSyncer : public BufferSyncer
34 CoreBufferSyncer(CoreSession *parent);
37 virtual void requestSetLastSeenMsg(BufferId buffer, const MsgId &msgId);
38 virtual void requestSetMarkerLine(BufferId buffer, const MsgId &msgId);
40 virtual inline void requestRemoveBuffer(BufferId buffer) { removeBuffer(buffer); }
41 virtual void removeBuffer(BufferId bufferId);
43 void addBufferActivity(Message message) {
44 auto oldActivity = activity(message.bufferId());
45 if (!oldActivity.testFlag(message.type())) {
46 setBufferActivity(message.bufferId(), (int) (oldActivity | message.type()));
50 void setBufferActivity(BufferId buffer, const int &activity) override;
52 virtual inline void requestRenameBuffer(BufferId buffer, QString newName) { renameBuffer(buffer, newName); }
53 virtual void renameBuffer(BufferId buffer, QString newName);
55 virtual inline void requestMergeBuffersPermanently(BufferId buffer1, BufferId buffer2) { mergeBuffersPermanently(buffer1, buffer2); }
56 virtual void mergeBuffersPermanently(BufferId buffer1, BufferId buffer2);
58 virtual void requestPurgeBufferIds();
60 virtual inline void requestMarkBufferAsRead(BufferId buffer) {
61 setLastSeenMsg(buffer, (int) Message::Types());
62 markBufferAsRead(buffer);
68 virtual void customEvent(QEvent *event);
71 CoreSession *_coreSession;
74 QSet<BufferId> dirtyLastSeenBuffers;
75 QSet<BufferId> dirtyMarkerLineBuffers;
76 QSet<BufferId> dirtyActivities;
78 void purgeBufferIds();
82 #endif //COREBUFFERSYNCER_H