Lot of password related changes all over the place.

Password is no longer saved with the connection list.
Password is not entered along with other connection credentials.
Password is now asked for when required.
Still working on saving the password and auto retrieving it from the password manager.
This commit is contained in:
eelke 2018-11-04 11:26:20 +01:00
parent 6b9b602c64
commit 2230a4bd61
21 changed files with 508 additions and 195 deletions

View file

@ -34,13 +34,14 @@ public:
virtual bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;
void save();
void save(int index);
void save(size_t index);
void save(size_t index, const ConnectionConfig &cc);
static QString makeLongDescription(const ConnectionConfig &cfg);
private:
ConnectionList *m_connections;
static QString makeLongDescription(const ConnectionConfig &cfg);
};
#endif // CONNECTIONLISTMODEL_H