keepassxc/src/gui/SearchWidget.h

71 lines
1.7 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2016 Jonathan White <support@dmapps.us>
*
* 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/>.
*/
#ifndef KEEPASSX_SEARCHWIDGET_H
#define KEEPASSX_SEARCHWIDGET_H
#include <QTimer>
2017-05-11 14:36:06 -04:00
#include <QWidget>
#include "core/SignalMultiplexer.h"
2017-05-11 14:36:06 -04:00
#include "gui/DatabaseWidget.h"
namespace Ui {
class SearchWidget;
}
class SearchWidget : public QWidget
{
Q_OBJECT
public:
2017-05-11 14:36:06 -04:00
explicit SearchWidget(QWidget* parent = 0);
~SearchWidget();
void connectSignals(SignalMultiplexer& mx);
void setCaseSensitive(bool state);
2016-12-23 23:14:50 -05:00
protected:
2017-05-11 14:36:06 -04:00
bool eventFilter(QObject* obj, QEvent* event);
2016-12-23 23:14:50 -05:00
signals:
2017-05-11 14:36:06 -04:00
void search(const QString& text);
void caseSensitiveChanged(bool state);
void escapePressed();
void copyPressed();
void downPressed();
void enterPressed();
public slots:
void databaseChanged(DatabaseWidget* dbWidget);
private slots:
void startSearchTimer();
void startSearch();
void updateCaseSensitive();
void searchFocus();
private:
const QScopedPointer<Ui::SearchWidget> m_ui;
QTimer* m_searchTimer;
2017-05-11 14:36:06 -04:00
QAction* m_actionCaseSensitive;
Q_DISABLE_COPY(SearchWidget)
};
#endif // SEARCHWIDGET_H