core defaults to safer umask
[quassel.git] / src / common / buffersyncer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
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.                                           *
9  *                                                                         *
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.                          *
14  *                                                                         *
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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef BUFFERSYNCER_H_
22 #define BUFFERSYNCER_H_
23
24 #include "syncableobject.h"
25 #include "types.h"
26
27 class BufferSyncer : public SyncableObject {
28   SYNCABLE_OBJECT
29   Q_OBJECT
30
31 public:
32   explicit BufferSyncer(QObject *parent);
33   explicit BufferSyncer(const QHash<BufferId, MsgId> &lastSeenMsg, QObject *parent);
34
35   inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; }
36
37   MsgId lastSeenMsg(BufferId buffer) const;
38
39 public slots:
40   QVariantList initLastSeenMsg() const;
41   void initSetLastSeenMsg(const QVariantList &);
42
43   virtual inline void requestSetLastSeenMsg(BufferId buffer, const MsgId &msgId) { REQUEST(ARG(buffer), ARG(msgId)) }
44
45   virtual inline void requestRemoveBuffer(BufferId buffer) { REQUEST(ARG(buffer)) }
46   virtual void removeBuffer(BufferId buffer);
47
48   virtual inline void requestRenameBuffer(BufferId buffer, QString newName) { REQUEST(ARG(buffer), ARG(newName)) }
49   virtual inline void renameBuffer(BufferId buffer, QString newName) { SYNC(ARG(buffer), ARG(newName)) emit bufferRenamed(buffer, newName); }
50
51   virtual inline void requestMergeBuffersPermanently(BufferId buffer1, BufferId buffer2) { emit REQUEST(ARG(buffer1), ARG(buffer2)) }
52   virtual void mergeBuffersPermanently(BufferId buffer1, BufferId buffer2);
53
54   virtual inline void requestPurgeBufferIds() { REQUEST(NO_ARG); }
55
56 signals:
57   void lastSeenMsgSet(BufferId buffer, const MsgId &msgId);
58   void bufferRemoved(BufferId buffer);
59   void bufferRenamed(BufferId buffer, QString newName);
60   void buffersPermanentlyMerged(BufferId buffer1, BufferId buffer2);
61
62 protected slots:
63   bool setLastSeenMsg(BufferId buffer, const MsgId &msgId);
64   QList<BufferId> bufferIds() const { return _lastSeenMsg.keys(); }
65
66 private:
67   QHash<BufferId, MsgId> _lastSeenMsg;
68 };
69
70 #endif