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#include "bufferviewconfig.h"
22
23#ifndef COREBUFFERVIEWCONFIG_H
24#define COREBUFFERVIEWCONFIG_H
25
26class CoreBufferViewConfig : public BufferViewConfig
27{
28 SYNCABLE_OBJECT
29 Q_OBJECT
30
31public:
32 CoreBufferViewConfig(int bufferViewId, QObject *parent = 0);
33 CoreBufferViewConfig(int bufferViewId, const QVariantMap &properties, QObject *parent = 0);
34
35 inline virtual const QMetaObject *syncMetaObject() const { return &BufferViewConfig::staticMetaObject; }
36
37public slots:
38 virtual inline void requestSetBufferViewName(const QString &bufferViewName) { setBufferViewName(bufferViewName); }
39 virtual inline void requestRemoveBuffer(const BufferId &bufferId) { removeBuffer(bufferId); }
40 virtual inline void requestRemoveBufferPermanently(const BufferId &bufferId) { removeBufferPermanently(bufferId); }
41 virtual inline void requestAddBuffer(const BufferId &bufferId, int pos) { addBuffer(bufferId, pos); }
42 virtual inline void requestMoveBuffer(const BufferId &bufferId, int pos) { moveBuffer(bufferId, pos); }
43};
44
45
46#endif // COREBUFFERVIEWCONFIG_H
47