Fix menu names according to seele's review p.16
[quassel.git] / src / qtui / sessionsettings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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
22 #ifndef _SESSIONSETTINGS_H_
23 #define _SESSIONSETTINGS_H_
24
25 #include <QVariant>
26
27 #include "clientsettings.h"
28
29 class SessionSettings : public ClientSettings {
30
31   public: 
32     SessionSettings(const QString &sessionId, const QString &group = "Session");
33    
34     void setValue(const QString &key, const QVariant &data);
35     QVariant value(const QString &key, const QVariant &def = QVariant());
36     
37     void removeKey(const QString &key);
38     void removeSession();
39     
40     void cleanup();
41     void sessionAging();
42     
43     int sessionAge();
44     void setSessionAge(int age);
45     inline const QString sessionId() { return _sessionId; };
46     inline void setSessionId(const QString &sessionId) { _sessionId = sessionId; }
47   private:
48     QString _sessionId;
49 }; 
50
51 #endif