m_separator(nullptr),
m_fromHereButton(nullptr),
m_everywhereButton(nullptr),
- m_facetsToggleButton(nullptr),
m_facetsWidget(nullptr),
m_searchPath(),
m_startSearchTimer(nullptr)
setSearchPath(url);
}
- setFacetsVisible(SearchSettings::showFacetsWidget());
+ updateFacetsVisible();
}
void DolphinSearchBox::selectAll()
m_searchInput->setFocus();
m_startedSearching = false;
}
- updateFacetsToggleButton();
}
void DolphinSearchBox::hideEvent(QHideEvent* event)
emit returnPressed();
}
-void DolphinSearchBox::slotFacetsButtonToggled()
-{
- setFacetsVisible(m_facetsToggleButton->isChecked());
-}
-
void DolphinSearchBox::slotFacetChanged()
{
m_startedSearching = true;
m_fileNameButton->setChecked(true);
}
- setFacetsVisible(SearchSettings::showFacetsWidget());
+ updateFacetsVisible();
}
void DolphinSearchBox::saveSettings()
{
SearchSettings::setLocation(m_fromHereButton->isChecked() ? QStringLiteral("FromHere") : QStringLiteral("Everywhere"));
SearchSettings::setWhat(m_fileNameButton->isChecked() ? QStringLiteral("FileName") : QStringLiteral("Content"));
- if (isIndexingEnabled()) {
- SearchSettings::setShowFacetsWidget(m_facetsToggleButton->isChecked());
- }
SearchSettings::self()->save();
}
m_menuFactory->fillMenuFromGroupingNames(moreSearchToolsButton->menu(), { "files-find" }, this->m_searchPath);
} );
- // Create "Facets" widgets
- m_facetsToggleButton = new QToolButton(this);
- m_facetsToggleButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
- initButton(m_facetsToggleButton);
- connect(m_facetsToggleButton, &QToolButton::clicked, this, &DolphinSearchBox::slotFacetsButtonToggled);
-
+ // Create "Facets" widget
m_facetsWidget = new DolphinFacetsWidget(this);
m_facetsWidget->installEventFilter(this);
m_facetsWidget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
optionsLayout->addWidget(m_fromHereButton);
optionsLayout->addWidget(m_everywhereButton);
optionsLayout->addWidget(new KSeparator(Qt::Vertical, this));
- optionsLayout->addWidget(m_facetsToggleButton);
optionsLayout->addWidget(moreSearchToolsButton);
optionsLayout->addStretch(1);
#endif
}
-void DolphinSearchBox::setFacetsVisible(bool visible)
+void DolphinSearchBox::updateFacetsVisible()
{
const bool indexingEnabled = isIndexingEnabled();
m_facetsWidget->setEnabled(indexingEnabled);
- m_facetsWidget->setVisible(indexingEnabled && visible);
- updateFacetsToggleButton();
-}
-
-void DolphinSearchBox::updateFacetsToggleButton()
-{
- const bool facetsEnabled = m_facetsWidget->isEnabled();
- const bool facetsVisible = m_facetsWidget->isVisible();
-
- m_facetsToggleButton->setEnabled(facetsEnabled);
- m_facetsToggleButton->setChecked(facetsVisible);
-
- m_facetsToggleButton->setIcon(QIcon::fromTheme(
- facetsVisible ? QStringLiteral("arrow-up-double") :
- QStringLiteral("arrow-down-double")));
-
- m_facetsToggleButton->setText(
- facetsVisible ? i18nc("@action:button", "Fewer Options") :
- i18nc("@action:button", "More Options"));
-
- if (facetsEnabled) {
- m_facetsToggleButton->setToolTip(QString());
- } else {
-#ifdef HAVE_BALOO
- const Baloo::IndexerConfig searchInfo;
- if (!searchInfo.fileIndexingEnabled()) {
- m_facetsToggleButton->setToolTip(i18nc("@info:tooltip", "Advanced search options are not available because the file indexing service is disabled."));
- } else {
- m_facetsToggleButton->setToolTip(i18nc("@info:tooltip", "Advanced search options are not available because this location is not indexed."));
- }
-#else
- m_facetsToggleButton->setToolTip(i18nc("@info:tooltip", "Advanced search options are not available because this version of Dolphin does not support the Baloo file indexer."));
-#endif
- }
+ m_facetsWidget->setVisible(indexingEnabled);
}
bool DolphinSearchBox::isIndexingEnabled() const