Cockatrice 2026-09-01-Development-3.1.0-beta.10
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
interface_chat_settings_provider.h
Go to the documentation of this file.
1#ifndef COCKATRICE_INTERFACE_CHAT_SETTINGS_PROVIDER_H
2#define COCKATRICE_INTERFACE_CHAT_SETTINGS_PROVIDER_H
3
4#include <QString>
5
7{
8public:
9 virtual ~IChatSettingsProvider() = default;
10
11 [[nodiscard]] virtual bool getChatMention() const = 0;
12 [[nodiscard]] virtual bool getChatMentionCompleter() const = 0;
13 [[nodiscard]] virtual QString getChatMentionColor() const = 0;
14 [[nodiscard]] virtual QString getChatHighlightColor() const = 0;
15 [[nodiscard]] virtual bool getChatMentionForeground() const = 0;
16 [[nodiscard]] virtual bool getChatHighlightForeground() const = 0;
17 [[nodiscard]] virtual bool getIgnoreUnregisteredUsers() const = 0;
18 [[nodiscard]] virtual bool getIgnoreUnregisteredUserMessages() const = 0;
19 [[nodiscard]] virtual bool getIgnoreNonBuddyUserMessages() const = 0;
20 [[nodiscard]] virtual bool getShowMessagePopup() const = 0;
21 [[nodiscard]] virtual bool getShowMentionPopup() const = 0;
22 [[nodiscard]] virtual bool getRoomHistory() const = 0;
23 [[nodiscard]] virtual QString getHighlightWords() const = 0;
24};
25
26#endif // COCKATRICE_INTERFACE_CHAT_SETTINGS_PROVIDER_H
Definition interface_chat_settings_provider.h:7
virtual bool getShowMentionPopup() const =0
virtual bool getIgnoreUnregisteredUsers() const =0
virtual QString getChatMentionColor() const =0
virtual bool getChatMentionCompleter() const =0
virtual bool getChatMention() const =0
virtual QString getChatHighlightColor() const =0
virtual bool getChatMentionForeground() const =0
virtual ~IChatSettingsProvider()=default
virtual QString getHighlightWords() const =0
virtual bool getRoomHistory() const =0
virtual bool getShowMessagePopup() const =0
virtual bool getIgnoreUnregisteredUserMessages() const =0
virtual bool getChatHighlightForeground() const =0
virtual bool getIgnoreNonBuddyUserMessages() const =0