mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Implement GUI for creating entries.
This commit is contained in:
parent
019bcd380e
commit
4d8e9561a7
7 changed files with 51 additions and 11 deletions
|
@ -38,6 +38,7 @@ public:
|
|||
EntryView* entryView();
|
||||
|
||||
public Q_SLOTS:
|
||||
void createEntry();
|
||||
void createGroup();
|
||||
void switchToEntryEdit();
|
||||
void switchToGroupEdit();
|
||||
|
@ -45,6 +46,7 @@ public Q_SLOTS:
|
|||
private Q_SLOTS:
|
||||
void switchToView(bool accepted);
|
||||
void switchToEntryEdit(Entry* entry);
|
||||
void switchToEntryEdit(Entry* entry, bool create);
|
||||
void switchToGroupEdit(Group* entry, bool create);
|
||||
|
||||
private:
|
||||
|
@ -54,7 +56,8 @@ private:
|
|||
GroupView* m_groupView;
|
||||
EntryView* m_entryView;
|
||||
Group* m_newGroup;
|
||||
Group* m_newGroupParent;
|
||||
Entry* m_newEntry;
|
||||
Group* m_newParent;
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_DATABASEWIDGET_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue