mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
[autofix.ci] apply automated fixes
This commit is contained in:
parent
469896bbf1
commit
c00239a1b1
|
@ -517,7 +517,7 @@ void ArticleRequest::altSearchFinished()
|
||||||
if ( GlobalBroadcaster::instance()->getPreference()->openWebsiteInNewTab ) {
|
if ( GlobalBroadcaster::instance()->getPreference()->openWebsiteInNewTab ) {
|
||||||
if ( activeDict->getFeature() == Dictionary::WebSite ) {
|
if ( activeDict->getFeature() == Dictionary::WebSite ) {
|
||||||
//todo ,replace the word with actual url
|
//todo ,replace the word with actual url
|
||||||
emit GlobalBroadcaster::instance() -> websiteDictionary( word,url );
|
emit GlobalBroadcaster::instance() -> websiteDictionary( word, url );
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ public:
|
||||||
map< Property, string > getProperties() noexcept override
|
map< Property, string > getProperties() noexcept override
|
||||||
{
|
{
|
||||||
map< Property, string > properties;
|
map< Property, string > properties;
|
||||||
properties.insert({ Property::Url, urlTemplate_ } ) ;
|
properties.insert( { Property::Url, urlTemplate_ } );
|
||||||
return properties;
|
return properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -330,12 +330,12 @@ sptr< DataRequest > WebSiteDictionary::getArticle( wstring const & str,
|
||||||
QUrl url( urlString );
|
QUrl url( urlString );
|
||||||
GlobalBroadcaster::instance()->addWhitelist( url.host() );
|
GlobalBroadcaster::instance()->addWhitelist( url.host() );
|
||||||
|
|
||||||
QString encodeUrl=encodeUrl = urlString;
|
QString encodeUrl = encodeUrl = urlString;
|
||||||
|
|
||||||
if ( GlobalBroadcaster::instance()->getPreference()->openWebSiteInNewTab ){
|
if ( GlobalBroadcaster::instance()->getPreference()->openWebSiteInNewTab ) {
|
||||||
result += string("<div><span>this website dictionary is opened in the new tab</span></div>");
|
result += string( "<div><span>this website dictionary is opened in the new tab</span></div>" );
|
||||||
}
|
}
|
||||||
else{
|
else {
|
||||||
fmt::format_to( std::back_inserter( result ),
|
fmt::format_to( std::back_inserter( result ),
|
||||||
R"(<iframe id="gdexpandframe-{}" src="{}"
|
R"(<iframe id="gdexpandframe-{}" src="{}"
|
||||||
onmouseover="processIframeMouseOver('gdexpandframe-{}');"
|
onmouseover="processIframeMouseOver('gdexpandframe-{}');"
|
||||||
|
|
|
@ -4365,12 +4365,12 @@ void MainWindow::showFTSIndexingName( QString const & name )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::openWebsiteInNewTab( QString const & name,QString const & url )
|
void MainWindow::openWebsiteInNewTab( QString const & name, QString const & url )
|
||||||
{
|
{
|
||||||
QString escaped = Utils::escapeAmps( name );
|
QString escaped = Utils::escapeAmps( name );
|
||||||
|
|
||||||
auto view = new QWebEngineView(this);
|
auto view = new QWebEngineView( this );
|
||||||
view->load(QUrl(url));
|
view->load( QUrl( url ) );
|
||||||
|
|
||||||
ui.tabWidget->insertTab( index, view, escaped );
|
ui.tabWidget->insertTab( index, view, escaped );
|
||||||
mruList.append( dynamic_cast< QWidget * >( view ) );
|
mruList.append( dynamic_cast< QWidget * >( view ) );
|
||||||
|
|
|
@ -293,7 +293,7 @@ private slots:
|
||||||
void openDictionaryFolder( QString const & id );
|
void openDictionaryFolder( QString const & id );
|
||||||
|
|
||||||
void showFTSIndexingName( QString const & name );
|
void showFTSIndexingName( QString const & name );
|
||||||
void openWebsiteInNewTab( QString const & name,QString const & url );
|
void openWebsiteInNewTab( QString const & name, QString const & url );
|
||||||
|
|
||||||
void handleAddToFavoritesButton();
|
void handleAddToFavoritesButton();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue