Expand profile editor for SSH auth and host policy fields

This commit is contained in:
Keith Smith
2026-03-01 09:37:37 -07:00
parent 6a4bcb75eb
commit 71a2f2e868
3 changed files with 83 additions and 4 deletions

View File

@@ -7,6 +7,7 @@
class QComboBox;
class QLineEdit;
class QPushButton;
class QSpinBox;
class ProfileDialog : public QDialog
@@ -30,6 +31,11 @@ private:
QLineEdit* m_usernameInput;
QComboBox* m_protocolInput;
QComboBox* m_authModeInput;
QLineEdit* m_privateKeyPathInput;
QPushButton* m_browsePrivateKeyButton;
QComboBox* m_knownHostsPolicyInput;
void refreshAuthFields();
};
#endif