1/***************************************************************************
2 * Copyright (C) 2005-2014 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#ifndef BUFFERVIEWMANAGER_H
22#define BUFFERVIEWMANAGER_H
23
24#include "syncableobject.h"
25
26#include <QList>
27#include <QHash>
28
29class BufferViewConfig;
30class SignalProxy;
31
32class BufferViewManager : public SyncableObject
33{
34 SYNCABLE_OBJECT
35 Q_OBJECT
36
37public:
38 BufferViewManager(SignalProxy *proxy, QObject *parent = 0);
39
40 inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; }
41
42 inline QList<BufferViewConfig *> bufferViewConfigs() const { return _bufferViewConfigs.values(); }
43 BufferViewConfig *bufferViewConfig(int bufferViewId) const;
44
45public slots:
46 void addBufferViewConfig(BufferViewConfig *config);
47 void addBufferViewConfig(int bufferViewConfigId);
48 inline void newBufferViewConfig(int bufferViewConfigId) { addBufferViewConfig(bufferViewConfigId); }
49
50 void deleteBufferViewConfig(int bufferViewConfigId);
51
52 QVariantList initBufferViewIds() const;
53 void initSetBufferViewIds(const QVariantList bufferViewIds);
54
55 virtual inline void requestCreateBufferView(const QVariantMap &properties) { REQUEST(ARG(properties)) }
56 virtual inline void requestCreateBufferViews(const QVariantList &properties) { REQUEST(ARG(properties)) }
57 virtual inline void requestDeleteBufferView(int bufferViewId) { REQUEST(ARG(bufferViewId)) }
58 virtual inline void requestDeleteBufferViews(const QVariantList &bufferViews) { REQUEST(ARG(bufferViews)) }
59
60signals:
61 void bufferViewConfigAdded(int bufferViewConfigId);
62 void bufferViewConfigDeleted(int bufferViewConfigId);
63// void createBufferViewRequested(const QVariantMap &properties);
64// void createBufferViewsRequested(const QVariantList &properties);
65// void deleteBufferViewRequested(int bufferViewId);
66// void deleteBufferViewsRequested(const QVariantList &bufferViews);
67
68protected:
69 typedef QHash<int, BufferViewConfig *> BufferViewConfigHash;
70 inline const BufferViewConfigHash &bufferViewConfigHash() { return _bufferViewConfigs; }
71 virtual BufferViewConfig *bufferViewConfigFactory(int bufferViewConfigId);
72
73private:
74 BufferViewConfigHash _bufferViewConfigs;
75 SignalProxy *_proxy;
76};
77
78
79#endif // BUFFERVIEWMANAGER_H
80