2022-01-08 06:51:24 +00:00
|
|
|
#ifndef GLOBAL_GLOBALBROADCASTER_H
|
|
|
|
#define GLOBAL_GLOBALBROADCASTER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2022-05-13 16:00:23 +00:00
|
|
|
#include <vector>
|
2022-04-23 08:15:23 +00:00
|
|
|
#include "config.hh"
|
2022-01-08 06:51:24 +00:00
|
|
|
|
2022-04-23 08:15:23 +00:00
|
|
|
struct ActiveDictIds
|
|
|
|
{
|
2022-01-08 06:51:24 +00:00
|
|
|
QString word;
|
|
|
|
QStringList dictIds;
|
2022-04-23 08:15:23 +00:00
|
|
|
};
|
2022-01-08 06:51:24 +00:00
|
|
|
|
|
|
|
class GlobalBroadcaster : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2022-04-23 08:15:23 +00:00
|
|
|
private:
|
|
|
|
Config::Preferences * preference;
|
2022-05-13 16:00:23 +00:00
|
|
|
std::vector<QString> whitelist;
|
2022-06-07 13:22:37 +00:00
|
|
|
|
2022-01-08 06:51:24 +00:00
|
|
|
public:
|
2022-04-23 08:15:23 +00:00
|
|
|
void setPreference( Config::Preferences * _pre );
|
|
|
|
Config::Preferences * getPreference();
|
|
|
|
GlobalBroadcaster( QObject * parent = nullptr );
|
2022-05-13 16:00:23 +00:00
|
|
|
void addWhitelist(QString host);
|
|
|
|
bool existedInWhitelist(QString host);
|
2022-04-23 08:15:23 +00:00
|
|
|
static GlobalBroadcaster * instance();
|
2022-06-07 13:22:37 +00:00
|
|
|
|
2022-01-08 06:51:24 +00:00
|
|
|
signals:
|
2022-05-14 09:22:34 +00:00
|
|
|
void dictionaryChanges( ActiveDictIds ad );
|
2022-01-08 06:51:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GLOBAL_GLOBALBROADCASTER_H
|