common: Simplify SyncableObject macros and usage
[quassel.git] / src / common / bufferviewmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "syncableobject.h"
24
25 #include <QList>
26 #include <QHash>
27
28 class BufferViewConfig;
29 class SignalProxy;
30
31 class BufferViewManager : public SyncableObject
32 {
33     Q_OBJECT
34     SYNCABLE_OBJECT
35
36 public:
37     BufferViewManager(SignalProxy *proxy, QObject *parent = 0);
38
39     inline QList<BufferViewConfig *> bufferViewConfigs() const { return _bufferViewConfigs.values(); }
40     BufferViewConfig *bufferViewConfig(int bufferViewId) const;
41
42 public slots:
43     QVariantList initBufferViewIds() const;
44     void initSetBufferViewIds(const QVariantList bufferViewIds);
45
46     void addBufferViewConfig(int bufferViewConfigId);
47     void deleteBufferViewConfig(int bufferViewConfigId);
48
49     virtual inline void requestCreateBufferView(const QVariantMap &properties) { REQUEST(ARG(properties)) }
50     virtual inline void requestCreateBufferViews(const QVariantList &properties) { REQUEST(ARG(properties)) }
51     virtual inline void requestDeleteBufferView(int bufferViewId) { REQUEST(ARG(bufferViewId)) }
52     virtual inline void requestDeleteBufferViews(const QVariantList &bufferViews) { REQUEST(ARG(bufferViews)) }
53
54 signals:
55     void bufferViewConfigAdded(int bufferViewConfigId);
56     void bufferViewConfigDeleted(int bufferViewConfigId);
57 //   void createBufferViewRequested(const QVariantMap &properties);
58 //   void createBufferViewsRequested(const QVariantList &properties);
59 //   void deleteBufferViewRequested(int bufferViewId);
60 //   void deleteBufferViewsRequested(const QVariantList &bufferViews);
61
62 protected:
63     typedef QHash<int, BufferViewConfig *> BufferViewConfigHash;
64     inline const BufferViewConfigHash &bufferViewConfigHash() { return _bufferViewConfigs; }
65     virtual BufferViewConfig *bufferViewConfigFactory(int bufferViewConfigId);
66
67     void addBufferViewConfig(BufferViewConfig *config);
68
69 private:
70     BufferViewConfigHash _bufferViewConfigs;
71     SignalProxy *_proxy;
72 };