mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Use spacing for layouting settings
This commit is contained in:
parent
8aaf7e9e5d
commit
4500bcd577
2 changed files with 6 additions and 27 deletions
|
@ -331,9 +331,14 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
||||||
|
|
||||||
QScroller::grabGesture(scrollArea_, QScroller::TouchGesture);
|
QScroller::grabGesture(scrollArea_, QScroller::TouchGesture);
|
||||||
|
|
||||||
|
auto spacingAroundForm = new QHBoxLayout;
|
||||||
|
spacingAroundForm->addStretch(1);
|
||||||
|
spacingAroundForm->addLayout(formLayout_, 0);
|
||||||
|
spacingAroundForm->addStretch(1);
|
||||||
|
|
||||||
auto scrollAreaContents_ = new QWidget{this};
|
auto scrollAreaContents_ = new QWidget{this};
|
||||||
scrollAreaContents_->setObjectName("UserSettingScrollWidget");
|
scrollAreaContents_->setObjectName("UserSettingScrollWidget");
|
||||||
scrollAreaContents_->setLayout(formLayout_);
|
scrollAreaContents_->setLayout(spacingAroundForm);
|
||||||
|
|
||||||
scrollArea_->setWidget(scrollAreaContents_);
|
scrollArea_->setWidget(scrollAreaContents_);
|
||||||
topLayout_->addLayout(topBarLayout_);
|
topLayout_->addLayout(topBarLayout_);
|
||||||
|
@ -432,31 +437,6 @@ UserSettingsPage::showEvent(QShowEvent *)
|
||||||
utils::humanReadableFingerprint(olm::client()->identity_keys().ed25519));
|
utils::humanReadableFingerprint(olm::client()->identity_keys().ed25519));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
UserSettingsPage::resizeEvent(QResizeEvent *event)
|
|
||||||
{
|
|
||||||
auto preWidth = width();
|
|
||||||
|
|
||||||
// based on the width of the widest item currently in the layout
|
|
||||||
// deviceFingerprintValue_ used for recalculating the margins of
|
|
||||||
// the formLayout_ on resize to help with small screens and mobile devices.
|
|
||||||
|
|
||||||
double minFormWidth = deviceFingerprintValue_->width();
|
|
||||||
|
|
||||||
if (preWidth * 0.5 > minFormWidth)
|
|
||||||
sideMargin_ = preWidth * 0.25;
|
|
||||||
else
|
|
||||||
sideMargin_ = static_cast<double>(preWidth - minFormWidth) / 2.;
|
|
||||||
|
|
||||||
if (sideMargin_ < 60)
|
|
||||||
sideMargin_ = 0;
|
|
||||||
|
|
||||||
formLayout_->setContentsMargins(
|
|
||||||
sideMargin_, LayoutTopMargin, sideMargin_, LayoutBottomMargin);
|
|
||||||
|
|
||||||
QWidget::resizeEvent(event);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
UserSettingsPage::paintEvent(QPaintEvent *)
|
UserSettingsPage::paintEvent(QPaintEvent *)
|
||||||
{
|
{
|
||||||
|
|
|
@ -152,7 +152,6 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void showEvent(QShowEvent *event) override;
|
void showEvent(QShowEvent *event) override;
|
||||||
void resizeEvent(QResizeEvent *event) override;
|
|
||||||
void paintEvent(QPaintEvent *event) override;
|
void paintEvent(QPaintEvent *event) override;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
Loading…
Reference in a new issue