mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Significant improvements to the Auto-Type select dialog. Reduce stale and unnecessary code paths. * Close select dialog when databases are locked. * Close open modal dialogs prior to showing the Auto-Type select dialog to prevent interference. * Never perform Auto-Type on the KeePassXC window. * Only filter match list based on Group, Title, and Username column data (ie, ignore sequence column) * Always show the sequence column (revert feature) * Show selection dialog if there are no matches to allow for a database search * Close #3630 - Allow typing {USERNAME} and {PASSWORD} from selection dialog (right-click menu). * Close #429 - Ability to search open databases for an entry from the Auto-Type selection dialog. * Fix #5361 - Default size of selection dialog doesn't cut off matches
114 lines
3.3 KiB
C++
114 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
* Copyright (C) 2017 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/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSX_AUTOTYPE_H
|
|
#define KEEPASSX_AUTOTYPE_H
|
|
|
|
#include <QMutex>
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
#include <QWidget>
|
|
|
|
#include "autotype/AutoTypeMatch.h"
|
|
|
|
class AutoTypeAction;
|
|
class AutoTypeExecutor;
|
|
class AutoTypePlatformInterface;
|
|
class Database;
|
|
class Entry;
|
|
class QPluginLoader;
|
|
|
|
class AutoType : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QStringList windowTitles();
|
|
bool registerGlobalShortcut(Qt::Key key, Qt::KeyboardModifiers modifiers, QString* error = nullptr);
|
|
void unregisterGlobalShortcut();
|
|
static bool checkSyntax(const QString& string);
|
|
static bool checkHighRepetition(const QString& string);
|
|
static bool checkSlowKeypress(const QString& string);
|
|
static bool checkHighDelay(const QString& string);
|
|
static bool verifyAutoTypeSyntax(const QString& sequence);
|
|
void performAutoType(const Entry* entry, QWidget* hideWindow = nullptr);
|
|
void performAutoTypeWithSequence(const Entry* entry, const QString& sequence, QWidget* hideWindow = nullptr);
|
|
|
|
inline bool isAvailable()
|
|
{
|
|
return m_plugin;
|
|
}
|
|
|
|
static AutoType* instance();
|
|
static void createTestInstance();
|
|
|
|
public slots:
|
|
void performGlobalAutoType(const QList<QSharedPointer<Database>>& dbList);
|
|
void raiseWindow();
|
|
|
|
signals:
|
|
void globalAutoTypeTriggered();
|
|
void autotypePerformed();
|
|
void autotypeRejected();
|
|
|
|
private slots:
|
|
void startGlobalAutoType();
|
|
void unloadPlugin();
|
|
|
|
private:
|
|
enum WindowState
|
|
{
|
|
Normal,
|
|
Minimized,
|
|
Hidden
|
|
};
|
|
|
|
explicit AutoType(QObject* parent = nullptr, bool test = false);
|
|
~AutoType() override;
|
|
void loadPlugin(const QString& pluginPath);
|
|
void executeAutoTypeActions(const Entry* entry,
|
|
QWidget* hideWindow = nullptr,
|
|
const QString& customSequence = QString(),
|
|
WId window = 0);
|
|
bool parseActions(const QString& sequence, const Entry* entry, QList<AutoTypeAction*>& actions);
|
|
QList<AutoTypeAction*> createActionFromTemplate(const QString& tmpl, const Entry* entry);
|
|
void restoreWindowState();
|
|
void resetAutoTypeState();
|
|
|
|
QMutex m_inAutoType;
|
|
QMutex m_inGlobalAutoTypeDialog;
|
|
int m_autoTypeDelay;
|
|
QPluginLoader* m_pluginLoader;
|
|
AutoTypePlatformInterface* m_plugin;
|
|
AutoTypeExecutor* m_executor;
|
|
static AutoType* m_instance;
|
|
|
|
QString m_windowTitleForGlobal;
|
|
WindowState m_windowState;
|
|
WId m_windowForGlobal;
|
|
|
|
Q_DISABLE_COPY(AutoType)
|
|
};
|
|
|
|
inline AutoType* autoType()
|
|
{
|
|
return AutoType::instance();
|
|
}
|
|
|
|
#endif // KEEPASSX_AUTOTYPE_H
|