mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
35 lines
740 B
C++
35 lines
740 B
C++
#ifndef GLOBAL_GLOBALBROADCASTER_H
|
|
#define GLOBAL_GLOBALBROADCASTER_H
|
|
|
|
#include <QObject>
|
|
#include <vector>
|
|
#include "config.hh"
|
|
|
|
struct ActiveDictIds
|
|
{
|
|
QString word;
|
|
QStringList dictIds;
|
|
};
|
|
|
|
class GlobalBroadcaster : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Config::Preferences * preference;
|
|
std::vector<QString> whitelist;
|
|
|
|
public:
|
|
void setPreference( Config::Preferences * _pre );
|
|
Config::Preferences * getPreference();
|
|
GlobalBroadcaster( QObject * parent = nullptr );
|
|
void addWhitelist(QString host);
|
|
bool existedInWhitelist(QString host);
|
|
static GlobalBroadcaster * instance();
|
|
|
|
signals:
|
|
void dictionaryChanges( ActiveDictIds ad );
|
|
void dictionaryClear( ActiveDictIds ad );
|
|
};
|
|
|
|
#endif // GLOBAL_GLOBALBROADCASTER_H
|