X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientsettings.h;h=9a9c91a5a4fe9b1757eff47a98bd67686c52e1bc;hp=1087fce617803136f6a1ac5d9b8999e10b5d54d1;hb=HEAD;hpb=28e33cd3255a838a045303bed073f4f9c40a3af4 diff --git a/src/client/clientsettings.h b/src/client/clientsettings.h index 1087fce6..9a9c91a5 100644 --- a/src/client/clientsettings.h +++ b/src/client/clientsettings.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,41 +15,171 @@ * 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 _CLIENTSETTINGS_H_ -#define _CLIENTSETTINGS_H_ +#pragma once -#include "settings.h" +#include "client-export.h" -class ClientSettings : public Settings { +#include "settings.h" +#include "types.h" - public: - virtual ~ClientSettings(); +class QHostAddress; +class QSslSocket; - protected: +class CLIENT_EXPORT ClientSettings : public Settings +{ +protected: ClientSettings(QString group = "General"); +}; + +// ======================================== +// CoreAccountSettings +// ======================================== + +// Deriving from CoreAccountSettings: +// MySettings() : CoreAccountSettings("MyGroup") {}; +// Then use accountValue() / setAccountValue() to retrieve/store data associated to the currently +// connected account. This is stored in CoreAccounts/$ACCID/MyGroup/$KEY) then. +// +// Note that you'll get invalid data (and setting is ignored) if you are not connected to a core! + +class CLIENT_EXPORT CoreAccountSettings : public ClientSettings +{ +public: + // stores account-specific data in CoreAccounts/$ACCID/$SUBGROUP/$KEY) + CoreAccountSettings(QString subgroup = "General"); + + QList knownAccounts() const; + AccountId lastAccount() const; + void setLastAccount(AccountId); + AccountId autoConnectAccount() const; + void setAutoConnectAccount(AccountId); + bool autoConnectOnStartup() const; + void setAutoConnectOnStartup(bool); + bool autoConnectToFixedAccount() const; + void setAutoConnectToFixedAccount(bool); + + void clearAccounts(); + + void storeAccountData(AccountId id, const QVariantMap& data); + QVariantMap retrieveAccountData(AccountId) const; + void removeAccount(AccountId); + void setJumpKeyMap(const QHash& keyMap); + QHash jumpKeyMap() const; + + void setBufferViewOverlay(const QSet& viewIds); + QSet bufferViewOverlay() const; + + void setAccountValue(const QString& key, const QVariant& data); + QVariant accountValue(const QString& key, const QVariant& def = QVariant()) const; + +protected: + QString keyForNotify(const QString& key) const override; + +private: + QString _subgroup; }; -class CoreAccountSettings : public ClientSettings { +// ======================================== +// NotificationSettings +// ======================================== +class CLIENT_EXPORT NotificationSettings : public ClientSettings +{ +public: + enum HighlightNickType + { + NoNick = 0x00, + CurrentNick = 0x01, + AllNicks = 0x02 + }; - public: - CoreAccountSettings(); + NotificationSettings(); - QStringList knownAccounts(); - QString lastAccount(); - void setLastAccount(const QString &account); - QString autoConnectAccount(); - void setAutoConnectAccount(const QString &account); + void setValue(const QString& key, const QVariant& data); + QVariant value(const QString& key, const QVariant& def = {}) const; + void remove(const QString& key); - void storeAccount(const QString name, const QVariantMap &data); - QVariantMap retrieveAccount(const QString &name); - void storeAllAccounts(const QHash accounts); - QHash retrieveAllAccounts(); - void removeAccount(const QString &account); + void setHighlightList(const QVariantList& highlightList); + QVariantList highlightList() const; + void setHighlightNick(HighlightNickType); + HighlightNickType highlightNick() const; + + void setNicksCaseSensitive(bool); + bool nicksCaseSensitive() const; }; -#endif +// ======================================== +// CoreConnectionSettings +// ======================================== + +class CLIENT_EXPORT CoreConnectionSettings : public ClientSettings +{ +public: + enum NetworkDetectionMode + { + UseQNetworkConfigurationManager = 1, // UseSolid is gone + UsePingTimeout, + NoActiveDetection + }; + + CoreConnectionSettings(); + + void setNetworkDetectionMode(NetworkDetectionMode mode); + NetworkDetectionMode networkDetectionMode() const; + + void setAutoReconnect(bool autoReconnect); + bool autoReconnect() const; + + void setPingTimeoutInterval(int interval); + int pingTimeoutInterval() const; + + void setReconnectInterval(int interval); + int reconnectInterval() const; +}; + +// ======================================== +// TabCompletionSettings +// ======================================== + +class CLIENT_EXPORT TabCompletionSettings : public ClientSettings +{ +public: + enum SortMode + { + Alphabetical, + LastActivity + }; + + TabCompletionSettings(); + + void setCompletionSuffix(const QString&); + QString completionSuffix() const; + + void setAddSpaceMidSentence(bool); + bool addSpaceMidSentence() const; + + void setSortMode(SortMode); + SortMode sortMode() const; + + void setCaseSensitivity(Qt::CaseSensitivity); + Qt::CaseSensitivity caseSensitivity() const; + + void setUseLastSpokenTo(bool); + bool useLastSpokenTo() const; +}; + +// ======================================== +// ItemViewSettings +// ======================================== +class CLIENT_EXPORT ItemViewSettings : public ClientSettings +{ +public: + ItemViewSettings(const QString& group = "ItemViews"); + + bool displayTopicInTooltip() const; + bool mouseWheelChangesBuffer() const; +};