mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-08 14:32:39 -04:00
Support for triggering Global Auto-Type from browser extension
This commit is contained in:
parent
be6835e42f
commit
c7cdce6e33
15 changed files with 164 additions and 62 deletions
|
@ -121,6 +121,7 @@ public:
|
|||
void setMainSplitterSizes(const QList<int>& sizes);
|
||||
QList<int> previewSplitterSizes() const;
|
||||
void setPreviewSplitterSizes(const QList<int>& sizes);
|
||||
void setSearchStringForAutoType(const QString& search);
|
||||
|
||||
signals:
|
||||
// relayed Database signals
|
||||
|
@ -151,7 +152,7 @@ signals:
|
|||
void previewSplitterSizesChanged();
|
||||
void entryViewStateChanged();
|
||||
void clearSearch();
|
||||
void requestGlobalAutoType();
|
||||
void requestGlobalAutoType(const QString& search);
|
||||
|
||||
public slots:
|
||||
bool lock();
|
||||
|
@ -297,6 +298,9 @@ private:
|
|||
|
||||
// Autoreload
|
||||
bool m_blockAutoSave;
|
||||
|
||||
// Auto-Type related
|
||||
QString m_searchStringForAutoType;
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_DATABASEWIDGET_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue