Add combo box for fast search engine switch

This commit is contained in:
DoumanAsh
2014-10-31 00:14:44 +03:00
parent 159f5dc06d
commit e357cf6231
4 changed files with 402 additions and 365 deletions

View File

@@ -113,6 +113,12 @@ public:
qDeleteAll(this->values());
}
QStringList enginesAll() const {
QStringList engines;
foreach (const SupportedEngine *engine, values()) engines << engine->getName();
return engines;
}
QStringList enginesEnabled() const {
QStringList engines;
foreach (const SupportedEngine *engine, values()) {