Implement GUI for creating entries.

This commit is contained in:
Felix Geyer 2011-12-27 16:04:59 +01:00
parent 019bcd380e
commit 4d8e9561a7
7 changed files with 51 additions and 11 deletions

View file

@ -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