X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreusersettings.h;h=405c2e4a96fa63280bd55824ba000e09ea14a52f;hp=4a8621d87ca815cdd65e7f5c5cb01094bcf1e370;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=1607bfc3101e08fe0aeeaa3b50af6ddc9a4f9e3c diff --git a/src/core/coreusersettings.h b/src/core/coreusersettings.h index 4a8621d8..405c2e4a 100644 --- a/src/core/coreusersettings.h +++ b/src/core/coreusersettings.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,36 +15,38 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _COREUSERSETTINGS_H_ -#define _COREUSERSETTINGS_H_ +#pragma once + +#include #include "coresettings.h" #include "identity.h" +#include "network.h" #include "types.h" -#include - -class CoreUserSettings : public CoreSettings { - - public: +class CoreUserSettings : public CoreSettings +{ +public: CoreUserSettings(UserId user); - void setIdentity(const Identity &identity); - Identity identity(IdentityId id); + Identity identity(IdentityId id) const; + QList identityIds() const; + void storeIdentity(const Identity& identity); + void removeIdentity(IdentityId id); + void setSessionState(const QVariant& data); + QVariant sessionState(const QVariant& def = {}) const; - private: +private: // this stuff should only be accessed by CoreSession! - QVariantMap sessionData(); - QVariant sessionValue(const QString &key, const QVariant &def = QVariant()); - void setSessionValue(const QString &key, const QVariant &value); + QVariantMap sessionData() const; + QVariant sessionValue(const QString& key, const QVariant& def = {}) const; + void setSessionValue(const QString& key, const QVariant& value); UserId user; friend class CoreSession; }; - -#endif