-
Notifications
You must be signed in to change notification settings - Fork 65
Add device ID and device fingerprint to settings page like in Riot. #407
Conversation
2ea1c59
to
d9c3c32
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, sorry for the late review.
src/UserSettingsPage.cpp
Outdated
deviceIdValue_->setText(QString::fromStdString(http::client()->device_id())); | ||
|
||
// TODO: Do the HumanReadable part somewhere else | ||
QString fingerprint = QString::fromStdString(olm::client()->identity_keys().ed25519); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed to move this in Utils.
src/UserSettingsPage.cpp
Outdated
font.setWeight(65); | ||
|
||
auto encryptionLabel_ = new QLabel(tr("Encryption"), this); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add some top padding on this section so it will appear a little more distinct, like General
? Also it needs to be capitalized.
src/UserSettingsPage.cpp
Outdated
|
||
auto deviceFingerprintLabel = new QLabel(tr("Device Fingerprint"), this); | ||
deviceFingerprintLabel->setFont(font); | ||
deviceFingerprintValue_ = new QLabel(QString("Loading...")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could remove the placeholder, since the fingerprint is loaded instantly.
src/UserSettingsPage.cpp
Outdated
|
||
auto deviceIdLabel = new QLabel(tr("Device ID"), this); | ||
deviceIdLabel->setFont(font); | ||
deviceIdValue_ = new QLabel(QString("Loading...")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here for the placeholder.
|
||
QFont monospaceFont = QFont(font); | ||
monospaceFont.setFamily("Courier New"); | ||
monospaceFont.setStyleHint(QFont::Courier); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe adjust this font to be slightly smaller than the text on the left side so it would be more easily distinguishable.
Thanks! |
This PR add ID and fingerprint of the device to the settings page (Part of #369)
I am not fimilar with QT so best practices may be violated.
Showing the key in the QLabel is done in UserSettingsPage::showEvent because i got some errors loading the key during creating the SettingsWidget.
The riot sdks handle the ed25519 as the fingerprint and not part of the identityKey. Mabye that should change in the olmClient.
Furthermore i do the conversion to a human readable form in showEvent as well. If you want me to create a function to do that somewhere else please tell me.