mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-08 22:42:34 -04:00
Add an auto-type entry action.
This commit is contained in:
parent
bc207714da
commit
651c00239a
6 changed files with 49 additions and 1 deletions
|
@ -62,7 +62,8 @@ public:
|
|||
EntryEditView,
|
||||
EntryDelete,
|
||||
EntryCopyUsername,
|
||||
EntryCopyPassword
|
||||
EntryCopyPassword,
|
||||
EntryAutoType
|
||||
};
|
||||
|
||||
explicit DatabaseWidget(Database* db, QWidget* parent = Q_NULLPTR);
|
||||
|
@ -88,6 +89,7 @@ public Q_SLOTS:
|
|||
void deleteEntry();
|
||||
void copyUsername();
|
||||
void copyPassword();
|
||||
void performAutoType();
|
||||
void createGroup();
|
||||
void deleteGroup();
|
||||
void switchToEntryEdit();
|
||||
|
@ -152,6 +154,7 @@ private:
|
|||
QAction* m_actionEntryDelete;
|
||||
QAction* m_actionEntryCopyUsername;
|
||||
QAction* m_actionEntryCopyPassword;
|
||||
QAction* m_actionEntryAutoType;
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_DATABASEWIDGET_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue