mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
* [Client] Add setting to ignore all private messages (#1250) * Early return --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
54 lines
2.2 KiB
C++
54 lines
2.2 KiB
C++
#ifndef CHAT_SETTINGS_H
|
|
#define CHAT_SETTINGS_H
|
|
|
|
#include "settings_manager.h"
|
|
|
|
#include <libcockatrice/interfaces/interface_chat_settings_provider.h>
|
|
|
|
class ChatSettings : public SettingsManager, public IChatSettingsProvider
|
|
{
|
|
Q_OBJECT
|
|
friend class SettingsCache;
|
|
|
|
public:
|
|
[[nodiscard]] bool getChatMention() const override;
|
|
[[nodiscard]] bool getChatMentionCompleter() const override;
|
|
[[nodiscard]] QString getChatMentionColor() const override;
|
|
[[nodiscard]] QString getChatHighlightColor() const override;
|
|
[[nodiscard]] bool getChatMentionForeground() const override;
|
|
[[nodiscard]] bool getChatHighlightForeground() const override;
|
|
[[nodiscard]] bool getIgnoreUnregisteredUsers() const override;
|
|
[[nodiscard]] bool getIgnoreUnregisteredUserMessages() const override;
|
|
[[nodiscard]] bool getIgnoreNonBuddyUserMessages() const override;
|
|
[[nodiscard]] bool getShowMessagePopup() const override;
|
|
[[nodiscard]] bool getShowMentionPopup() const override;
|
|
[[nodiscard]] bool getRoomHistory() const override;
|
|
[[nodiscard]] bool getIgnoreAllPrivateMessages() const override;
|
|
[[nodiscard]] QString getHighlightWords() const override;
|
|
|
|
void setChatMention(bool _chatMention);
|
|
void setChatMentionCompleter(bool _chatMentionCompleter);
|
|
void setChatMentionColor(const QString &_chatMentionColor);
|
|
void setChatHighlightColor(const QString &_chatHighlightColor);
|
|
void setChatMentionForeground(bool _chatMentionForeground);
|
|
void setChatHighlightForeground(bool _chatHighlightForeground);
|
|
void setIgnoreUnregisteredUsers(bool _ignoreUnregisteredUsers);
|
|
void setIgnoreUnregisteredUserMessages(bool _ignoreUnregisteredUserMessages);
|
|
void setIgnoreNonBuddyUserMessages(bool _ignoreNonBuddyUserMessages);
|
|
void setShowMessagePopups(bool _showMessagePopups);
|
|
void setShowMentionPopups(bool _showMentionPopups);
|
|
void setRoomHistory(bool _roomHistory);
|
|
void setIgnoreAllPrivateMessages(bool _ignoreAllPrivateMessages);
|
|
void setHighlightWords(const QString &_highlightWords);
|
|
|
|
signals:
|
|
void chatMentionCompleterChanged();
|
|
|
|
public:
|
|
explicit ChatSettings(const QString &settingPath, QObject *parent = nullptr);
|
|
|
|
private:
|
|
ChatSettings(const ChatSettings & /*other*/);
|
|
};
|
|
|
|
#endif // CHAT_SETTINGS_H
|