Add action to open the entry URL.

Closes #37
This commit is contained in:
Felix Geyer 2012-07-27 18:38:52 +02:00
parent e9a96ff80a
commit 3a2f387892
6 changed files with 45 additions and 2 deletions

View file

@ -63,7 +63,8 @@ public:
EntryDelete,
EntryCopyUsername,
EntryCopyPassword,
EntryAutoType
EntryAutoType,
EntryOpenUrl
};
explicit DatabaseWidget(Database* db, QWidget* parent = Q_NULLPTR);
@ -90,6 +91,7 @@ public Q_SLOTS:
void copyUsername();
void copyPassword();
void performAutoType();
void openUrl();
void createGroup();
void deleteGroup();
void switchToEntryEdit();
@ -155,6 +157,7 @@ private:
QAction* m_actionEntryCopyUsername;
QAction* m_actionEntryCopyPassword;
QAction* m_actionEntryAutoType;
QAction* m_actionEntryOpenUrl;
};
#endif // KEEPASSX_DATABASEWIDGET_H