Core: Also strip accelerators from custom option page keywords

This way the custom keywords can use the same translated strings
with the actual use of the thing in the gui.

Change-Id: I56c7b25b594a0b92980516806ab7d999d7de7937
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2023-06-29 10:17:58 +02:00
parent 184403ddf2
commit 699d718051
2 changed files with 22 additions and 18 deletions

View File

@@ -8,6 +8,7 @@
#include <coreplugin/icore.h>
#include <utils/algorithm.h>
#include <utils/aspects.h>
#include <utils/layoutbuilder.h>
#include <utils/qtcassert.h>
@@ -100,23 +101,20 @@ void IOptionsPage::setWidgetCreator(const WidgetCreator &widgetCreator)
QStringList IOptionsPage::keywords() const
{
if (!m_keywordsInitialized) {
auto that = const_cast<IOptionsPage *>(this);
QWidget *widget = that->widget();
if (!widget)
return {};
// find common subwidgets
for (const QLabel *label : widget->findChildren<QLabel *>())
m_keywords << Utils::stripAccelerator(label->text());
m_keywords << label->text();
for (const QCheckBox *checkbox : widget->findChildren<QCheckBox *>())
m_keywords << Utils::stripAccelerator(checkbox->text());
m_keywords << checkbox->text();
for (const QPushButton *pushButton : widget->findChildren<QPushButton *>())
m_keywords << Utils::stripAccelerator(pushButton->text());
m_keywords << pushButton->text();
for (const QGroupBox *groupBox : widget->findChildren<QGroupBox *>())
m_keywords << Utils::stripAccelerator(groupBox->title());
m_keywords << groupBox->title();
m_keywordsInitialized = true;
}
return m_keywords;
}
@@ -273,7 +271,12 @@ const QList<IOptionsPage *> IOptionsPage::allOptionsPages()
*/
bool IOptionsPage::matches(const QRegularExpression &regexp) const
{
for (const QString &keyword : keywords())
if (!m_keywordsInitialized) {
m_keywords = Utils::transform(keywords(), Utils::stripAccelerator);
m_keywordsInitialized = true;
}
for (const QString &keyword : m_keywords)
if (keyword.contains(regexp))
return true;
return false;

View File

@@ -63,10 +63,11 @@ public:
virtual void apply();
virtual void finish();
virtual QStringList keywords() const;
virtual bool matches(const QRegularExpression &regexp) const;
protected:
virtual QStringList keywords() const;
void setId(Utils::Id id) { m_id = id; }
void setDisplayName(const QString &displayName) { m_displayName = displayName; }
void setCategory(Utils::Id category) { m_category = category; }