opt: update dictionaries when disable certain dictionary

This commit is contained in:
Xiao YiFang 2022-07-17 06:54:53 +08:00
parent 8a979aeb86
commit dd244e0336
4 changed files with 20 additions and 3 deletions

View file

@ -446,6 +446,8 @@ void ArticleRequest::altSearchFinished()
if ( altsDone ) if ( altsDone )
return; return;
emit GlobalBroadcaster::instance()->dictionaryClear( ActiveDictIds{word} );
// Check every request for finishing // Check every request for finishing
for( list< sptr< Dictionary::WordSearchRequest > >::iterator i = for( list< sptr< Dictionary::WordSearchRequest > >::iterator i =
altSearches.begin(); i != altSearches.end(); ) altSearches.begin(); i != altSearches.end(); )

View file

@ -360,6 +360,9 @@ ArticleView::ArticleView( QWidget * parent, ArticleNetworkAccessManager & nm, Au
connect(GlobalBroadcaster::instance(), SIGNAL( dictionaryChanges(ActiveDictIds)), this, connect(GlobalBroadcaster::instance(), SIGNAL( dictionaryChanges(ActiveDictIds)), this,
SLOT(setActiveDictIds(ActiveDictIds))); SLOT(setActiveDictIds(ActiveDictIds)));
connect( GlobalBroadcaster::instance(), &GlobalBroadcaster::dictionaryClear, this,
&ArticleView::dictionaryClear );
channel = new QWebChannel(ui.definition->page()); channel = new QWebChannel(ui.definition->page());
agent = new ArticleViewAgent(this); agent = new ArticleViewAgent(this);
attachWebChannelToHtml(); attachWebChannelToHtml();
@ -2609,16 +2612,25 @@ void ArticleView::highlightAllFtsOccurences( QWebEnginePage::FindFlags flags )
} }
void ArticleView::setActiveDictIds(ActiveDictIds ad) { void ArticleView::setActiveDictIds(ActiveDictIds ad) {
if (ad.word == currentWord) {
// ignore all other signals. // ignore all other signals.
qDebug() << "receive dicts, current word:" << currentWord << ad.word << ":" << ad.dictIds; qDebug() << "receive dicts, current word:" << currentWord << ad.word << ":" << ad.dictIds;
if (ad.word == currentWord) {
qDebug() << "receive dicts, current word accept:" << currentWord;
currentActiveDictIds << ad.dictIds; currentActiveDictIds << ad.dictIds;
currentActiveDictIds.removeDuplicates(); currentActiveDictIds.removeDuplicates();
emit updateFoundInDictsList(); emit updateFoundInDictsList();
} }
} }
void ArticleView::dictionaryClear( ActiveDictIds ad )
{
// ignore all other signals.
if( ad.word == currentWord )
{
qDebug() << "clear current dictionaries:" << currentWord;
currentActiveDictIds.clear();
}
}
//todo ,futher refinement? //todo ,futher refinement?
void ArticleView::performFtsFindOperation( bool backwards ) void ArticleView::performFtsFindOperation( bool backwards )
{ {

View file

@ -367,6 +367,8 @@ private slots:
void setActiveDictIds(ActiveDictIds); void setActiveDictIds(ActiveDictIds);
void dictionaryClear( ActiveDictIds ad );
private: private:
/// Deduces group from the url. If there doesn't seem to be any group, /// Deduces group from the url. If there doesn't seem to be any group,

View file

@ -28,6 +28,7 @@ public:
signals: signals:
void dictionaryChanges( ActiveDictIds ad ); void dictionaryChanges( ActiveDictIds ad );
void dictionaryClear( ActiveDictIds ad );
}; };
#endif // GLOBAL_GLOBALBROADCASTER_H #endif // GLOBAL_GLOBALBROADCASTER_H