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