mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
* Rename "Database Tags" to "Searches and Tags" * Separate searching for all entries and resetting the search * Support selecting multiple tags to search against * Fix using escaped quotes in search terms * Make tag searching more precise * Support `is:expired-#` to search for entries expiring within # days. Exclude recycled entries from expired search. * Don't list tags from entries that are recycled * Force hide tag auto-completion menu when tag editing widget is hidden. On rare occasions the focus out signal is not called when the tag view is hidden (entry edit is closed), this resolves that problem. * Remove spaces from before and after tags to prevent seemingly duplicate tags from being created. * Also fix some awkward signal/slot dances that were setup over time with the entry view and preview widget. Allow changing tags for multiple entries through context menu * Closes #8277 - show context menu with currently available tags in database and checks those that are set on one or more selected entries. When a tag is selected it is either set or unset on all entries depending on its checked state. * Add ability to save searches and recall them from the "Searches and Tags" view * Add ability to remove a tag from all entries from the "Searches and Tags" view * Cleanup tag handling and widgets
234 lines
8.3 KiB
C++
234 lines
8.3 KiB
C++
/*
|
|
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "SearchWidget.h"
|
|
#include "ui_SearchHelpWidget.h"
|
|
#include "ui_SearchWidget.h"
|
|
|
|
#include <QKeyEvent>
|
|
#include <QMenu>
|
|
#include <QToolButton>
|
|
|
|
#include "core/SignalMultiplexer.h"
|
|
#include "gui/Icons.h"
|
|
#include "gui/widgets/PopupHelpWidget.h"
|
|
|
|
SearchWidget::SearchWidget(QWidget* parent)
|
|
: QWidget(parent)
|
|
, m_ui(new Ui::SearchWidget())
|
|
, m_searchTimer(new QTimer(this))
|
|
, m_clearSearchTimer(new QTimer(this))
|
|
{
|
|
m_ui->setupUi(this);
|
|
setFocusProxy(m_ui->searchEdit);
|
|
|
|
m_helpWidget = new PopupHelpWidget(m_ui->searchEdit);
|
|
Ui::SearchHelpWidget helpUi;
|
|
helpUi.setupUi(m_helpWidget);
|
|
|
|
m_searchTimer->setSingleShot(true);
|
|
m_clearSearchTimer->setSingleShot(true);
|
|
|
|
connect(m_ui->searchEdit, SIGNAL(textChanged(QString)), SLOT(startSearchTimer()));
|
|
connect(m_ui->helpIcon, SIGNAL(triggered()), SLOT(toggleHelp()));
|
|
connect(m_ui->searchIcon, SIGNAL(triggered()), SLOT(showSearchMenu()));
|
|
connect(m_ui->saveIcon, &QAction::triggered, this, [this] { emit saveSearch(m_ui->searchEdit->text()); });
|
|
connect(m_searchTimer, SIGNAL(timeout()), SLOT(startSearch()));
|
|
connect(m_clearSearchTimer, SIGNAL(timeout()), SLOT(clearSearch()));
|
|
connect(this, SIGNAL(escapePressed()), SLOT(clearSearch()));
|
|
|
|
m_ui->searchEdit->setPlaceholderText(tr("Search (%1)…", "Search placeholder text, %1 is the keyboard shortcut")
|
|
.arg(QKeySequence(QKeySequence::Find).toString(QKeySequence::NativeText)));
|
|
m_ui->searchEdit->installEventFilter(this);
|
|
|
|
m_searchMenu = new QMenu(this);
|
|
m_actionCaseSensitive = m_searchMenu->addAction(tr("Case sensitive"), this, SLOT(updateCaseSensitive()));
|
|
m_actionCaseSensitive->setObjectName("actionSearchCaseSensitive");
|
|
m_actionCaseSensitive->setCheckable(true);
|
|
|
|
m_actionLimitGroup = m_searchMenu->addAction(tr("Limit search to selected group"), this, SLOT(updateLimitGroup()));
|
|
m_actionLimitGroup->setObjectName("actionSearchLimitGroup");
|
|
m_actionLimitGroup->setCheckable(true);
|
|
m_actionLimitGroup->setChecked(config()->get(Config::SearchLimitGroup).toBool());
|
|
|
|
m_ui->searchIcon->setIcon(icons()->icon("system-search"));
|
|
m_ui->searchEdit->addAction(m_ui->searchIcon, QLineEdit::LeadingPosition);
|
|
|
|
m_ui->helpIcon->setIcon(icons()->icon("system-help"));
|
|
m_ui->searchEdit->addAction(m_ui->helpIcon, QLineEdit::TrailingPosition);
|
|
|
|
m_ui->saveIcon->setIcon(icons()->icon("document-save"));
|
|
m_ui->searchEdit->addAction(m_ui->saveIcon, QLineEdit::TrailingPosition);
|
|
m_ui->saveIcon->setVisible(false);
|
|
|
|
// Fix initial visibility of actions (bug in Qt)
|
|
for (QToolButton* toolButton : m_ui->searchEdit->findChildren<QToolButton*>()) {
|
|
toolButton->setVisible(toolButton->defaultAction()->isVisible());
|
|
}
|
|
}
|
|
|
|
SearchWidget::~SearchWidget()
|
|
{
|
|
}
|
|
|
|
bool SearchWidget::eventFilter(QObject* obj, QEvent* event)
|
|
{
|
|
if (event->type() == QEvent::KeyPress) {
|
|
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
|
|
if (keyEvent->key() == Qt::Key_Escape) {
|
|
emit escapePressed();
|
|
return true;
|
|
} else if (keyEvent->matches(QKeySequence::Copy)) {
|
|
// If Control+C is pressed in the search edit when no text
|
|
// is selected, copy the password of the current entry.
|
|
if (!m_ui->searchEdit->hasSelectedText()) {
|
|
emit copyPressed();
|
|
return true;
|
|
}
|
|
} else if (keyEvent->matches(QKeySequence::MoveToNextLine)) {
|
|
if (m_ui->searchEdit->cursorPosition() == m_ui->searchEdit->text().length()) {
|
|
// If down is pressed at EOL, move the focus to the entry view
|
|
emit downPressed();
|
|
return true;
|
|
} else {
|
|
// Otherwise move the cursor to EOL
|
|
m_ui->searchEdit->setCursorPosition(m_ui->searchEdit->text().length());
|
|
return true;
|
|
}
|
|
}
|
|
} else if (event->type() == QEvent::FocusOut) {
|
|
if (config()->get(Config::Security_ClearSearch).toBool()) {
|
|
int timeout = config()->get(Config::Security_ClearSearchTimeout).toInt();
|
|
if (timeout > 0) {
|
|
// Auto-clear search after set timeout (5 minutes by default)
|
|
m_clearSearchTimer->start(timeout * 60000); // 60 sec * 1000 ms
|
|
}
|
|
}
|
|
emit lostFocus();
|
|
} else if (event->type() == QEvent::FocusIn) {
|
|
// Never clear the search if we are using it
|
|
m_clearSearchTimer->stop();
|
|
}
|
|
|
|
return QWidget::eventFilter(obj, event);
|
|
}
|
|
|
|
void SearchWidget::connectSignals(SignalMultiplexer& mx)
|
|
{
|
|
// Connects basically only to the current DatabaseWidget, but allows to switch between instances!
|
|
mx.connect(this, SIGNAL(search(QString)), SLOT(search(QString)));
|
|
mx.connect(this, SIGNAL(saveSearch(QString)), SLOT(saveSearch(QString)));
|
|
mx.connect(this, SIGNAL(caseSensitiveChanged(bool)), SLOT(setSearchCaseSensitive(bool)));
|
|
mx.connect(this, SIGNAL(limitGroupChanged(bool)), SLOT(setSearchLimitGroup(bool)));
|
|
mx.connect(this, SIGNAL(copyPressed()), SLOT(copyPassword()));
|
|
mx.connect(this, SIGNAL(downPressed()), SLOT(focusOnEntries()));
|
|
mx.connect(SIGNAL(requestSearch(QString)), m_ui->searchEdit, SLOT(setText(QString)));
|
|
mx.connect(SIGNAL(clearSearch()), this, SLOT(clearSearch()));
|
|
mx.connect(SIGNAL(entrySelectionChanged()), this, SLOT(resetSearchClearTimer()));
|
|
mx.connect(SIGNAL(currentModeChanged(DatabaseWidget::Mode)), this, SLOT(resetSearchClearTimer()));
|
|
mx.connect(SIGNAL(databaseUnlocked()), this, SLOT(focusSearch()));
|
|
mx.connect(m_ui->searchEdit, SIGNAL(returnPressed()), SLOT(switchToEntryEdit()));
|
|
}
|
|
|
|
void SearchWidget::databaseChanged(DatabaseWidget* dbWidget)
|
|
{
|
|
if (dbWidget != nullptr) {
|
|
// Set current search text from this database
|
|
m_ui->searchEdit->setText(dbWidget->getCurrentSearch());
|
|
// Enforce search policy
|
|
emit caseSensitiveChanged(m_actionCaseSensitive->isChecked());
|
|
emit limitGroupChanged(m_actionLimitGroup->isChecked());
|
|
} else {
|
|
clearSearch();
|
|
}
|
|
}
|
|
|
|
void SearchWidget::startSearchTimer()
|
|
{
|
|
if (!m_searchTimer->isActive()) {
|
|
m_searchTimer->stop();
|
|
}
|
|
m_searchTimer->start(100);
|
|
}
|
|
|
|
void SearchWidget::startSearch()
|
|
{
|
|
if (!m_searchTimer->isActive()) {
|
|
m_searchTimer->stop();
|
|
}
|
|
|
|
m_ui->saveIcon->setVisible(true);
|
|
search(m_ui->searchEdit->text());
|
|
}
|
|
|
|
void SearchWidget::resetSearchClearTimer()
|
|
{
|
|
// Restart the search clear timer if it is running
|
|
if (m_clearSearchTimer->isActive()) {
|
|
m_clearSearchTimer->start();
|
|
}
|
|
}
|
|
|
|
void SearchWidget::updateCaseSensitive()
|
|
{
|
|
emit caseSensitiveChanged(m_actionCaseSensitive->isChecked());
|
|
}
|
|
|
|
void SearchWidget::setCaseSensitive(bool state)
|
|
{
|
|
m_actionCaseSensitive->setChecked(state);
|
|
updateCaseSensitive();
|
|
}
|
|
|
|
void SearchWidget::updateLimitGroup()
|
|
{
|
|
config()->set(Config::SearchLimitGroup, m_actionLimitGroup->isChecked());
|
|
emit limitGroupChanged(m_actionLimitGroup->isChecked());
|
|
}
|
|
|
|
void SearchWidget::setLimitGroup(bool state)
|
|
{
|
|
m_actionLimitGroup->setChecked(state);
|
|
updateLimitGroup();
|
|
}
|
|
|
|
void SearchWidget::focusSearch()
|
|
{
|
|
m_ui->searchEdit->setFocus();
|
|
m_ui->searchEdit->selectAll();
|
|
}
|
|
|
|
void SearchWidget::clearSearch()
|
|
{
|
|
m_ui->searchEdit->clear();
|
|
m_ui->saveIcon->setVisible(false);
|
|
emit searchCanceled();
|
|
}
|
|
|
|
void SearchWidget::toggleHelp()
|
|
{
|
|
if (m_helpWidget->isVisible()) {
|
|
m_helpWidget->hide();
|
|
} else {
|
|
m_helpWidget->show();
|
|
}
|
|
}
|
|
|
|
void SearchWidget::showSearchMenu()
|
|
{
|
|
m_searchMenu->exec(m_ui->searchEdit->mapToGlobal(m_ui->searchEdit->rect().bottomLeft()));
|
|
}
|