Fixing BR #128 (Nicklist state not saved correctly) and ci of my current work.
[quassel.git] / src / common / bufferviewconfig.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 BUFFERVIEWCONFIG_H
22 #define BUFFERVIEWCONFIG_H
23
24 #include "syncableobject.h"
25
26 #include "types.h"
27
28 class BufferViewConfig : public SyncableObject {
29   Q_OBJECT
30   Q_PROPERTY(QString bufferViewName READ bufferViewName WRITE setBufferViewName)
31   Q_PROPERTY(NetworkId networkId READ networkId WRITE setNetworkId)
32   Q_PROPERTY(bool addNewBuffersAutomatically READ addNewBuffersAutomatically WRITE setAddNewBuffersAutomatically)
33   Q_PROPERTY(bool sortAlphabetically READ sortAlphabetically WRITE setSortAlphabetically)
34
35 public:
36   BufferViewConfig(int bufferViewId, QObject *parent = 0);
37
38 public slots:
39   inline int bufferViewId() const { return _bufferViewId; }
40
41   inline const QString &bufferViewName() const { return _bufferViewName; }
42   void setBufferViewName(const QString &bufferViewName);
43
44   inline const NetworkId &networkId() const { return _networkId; }
45   void setNetworkId(const NetworkId &networkId);
46
47   inline bool addNewBuffersAutomatically() const { return _addNewBuffersAutomatically; }
48   void setAddNewBuffersAutomatically(bool addNewBuffersAutomatically);
49
50   inline bool sortAlphabetically() const { return _sortAlphabetically; }
51   void setSortAlphabetically(bool sortAlphabetically);
52
53   virtual inline void requestSetBufferViewName(const QString &bufferViewName) { emit setBufferViewNameRequested(bufferViewName); }
54
55 signals:
56   void bufferViewNameSet(const QString &bufferViewName);
57   void networkIdSet(const NetworkId &networkId);
58   void addNewBuffersAutomaticallySet(bool addNewBuffersAutomatically);
59   void sortAlphabeticallySet(bool sortAlphabetically);  
60
61   void setBufferViewNameRequested(const QString &bufferViewName);
62
63 private:
64   int _bufferViewId;
65   QString _bufferViewName;
66   NetworkId _networkId;
67   bool _addNewBuffersAutomatically;
68   bool _sortAlphabetically;
69 };
70
71 #endif // BUFFERVIEWCONFIG_H