/* * Copyright (C) 2012 Felix Geyer * Copyright (C) 2017 KeePassXC Team * * 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 . */ #ifndef KEEPASSX_AUTOTYPE_H #define KEEPASSX_AUTOTYPE_H #include #include #include 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(); void performAutoType(const Entry* entry, QWidget* hideWindow = nullptr); void performAutoTypeWithSequence(const Entry* entry, const QString& sequence, QWidget* hideWindow = nullptr); static bool verifyAutoTypeSyntax(const QString& sequence, const Entry* entry, QString& error); inline bool isAvailable() { return m_plugin; } static AutoType* instance(); static void createTestInstance(); public slots: void performGlobalAutoType(const QList>& dbList, const QString& search = {}); void raiseWindow(); signals: void globalAutoTypeTriggered(const QString& search); void autotypePerformed(); void autotypeRejected(); private slots: void startGlobalAutoType(const QString& search); 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); void restoreWindowState(); void resetAutoTypeState(); static QList> parseSequence(const QString& entrySequence, const Entry* entry, QString& error, bool syntaxOnly = false); QMutex m_inAutoType; QMutex m_inGlobalAutoTypeDialog; 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