mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 06:13:36 -07:00
Merge 1ce07a95f9
into feacfb0627
This commit is contained in:
commit
ec0a164785
5 changed files with 59 additions and 1 deletions
|
@ -1477,6 +1477,21 @@ void Preferences::setUpdateCheckEnabled(const bool enabled)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
bool Preferences::isSpeedInDockEnabled() const
|
||||||
|
{
|
||||||
|
return value(u"Preferences/Speed/ShowSpeedInDock"_s, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Preferences::setSpeedInDockEnabled(const bool enabled)
|
||||||
|
{
|
||||||
|
if (enabled == isSpeedInDockEnabled())
|
||||||
|
return;
|
||||||
|
|
||||||
|
setValue(u"Preferences/Speed/ShowSpeedInDock"_s, enabled);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool Preferences::confirmTorrentDeletion() const
|
bool Preferences::confirmTorrentDeletion() const
|
||||||
{
|
{
|
||||||
return value(u"Preferences/Advanced/confirmTorrentDeletion"_s, true);
|
return value(u"Preferences/Advanced/confirmTorrentDeletion"_s, true);
|
||||||
|
|
|
@ -318,6 +318,10 @@ public:
|
||||||
#if defined(Q_OS_WIN) || defined(Q_OS_MACOS)
|
#if defined(Q_OS_WIN) || defined(Q_OS_MACOS)
|
||||||
bool isUpdateCheckEnabled() const;
|
bool isUpdateCheckEnabled() const;
|
||||||
void setUpdateCheckEnabled(bool enabled);
|
void setUpdateCheckEnabled(bool enabled);
|
||||||
|
#endif
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
bool isSpeedInDockEnabled() const;
|
||||||
|
void setSpeedInDockEnabled(bool enabled);
|
||||||
#endif
|
#endif
|
||||||
bool confirmTorrentDeletion() const;
|
bool confirmTorrentDeletion() const;
|
||||||
void setConfirmTorrentDeletion(bool enabled);
|
void setConfirmTorrentDeletion(bool enabled);
|
||||||
|
|
|
@ -1452,6 +1452,12 @@ void MainWindow::loadPreferences()
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
// Clear dock badge immediately if speed display is disabled
|
||||||
|
if (!pref->isSpeedInDockEnabled())
|
||||||
|
m_badger->updateSpeed(0, 0);
|
||||||
|
#endif
|
||||||
|
|
||||||
qDebug("GUI settings loaded");
|
qDebug("GUI settings loaded");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1464,7 +1470,10 @@ void MainWindow::loadSessionStats()
|
||||||
|
|
||||||
// update global information
|
// update global information
|
||||||
#ifdef Q_OS_MACOS
|
#ifdef Q_OS_MACOS
|
||||||
m_badger->updateSpeed(status.payloadDownloadRate, status.payloadUploadRate);
|
if (Preferences::instance()->isSpeedInDockEnabled())
|
||||||
|
m_badger->updateSpeed(status.payloadDownloadRate, status.payloadUploadRate);
|
||||||
|
else
|
||||||
|
m_badger->updateSpeed(0, 0);
|
||||||
#else
|
#else
|
||||||
refreshTrayIconTooltip();
|
refreshTrayIconTooltip();
|
||||||
#endif // Q_OS_MACOS
|
#endif // Q_OS_MACOS
|
||||||
|
|
|
@ -1044,6 +1044,12 @@ void OptionsDialog::loadSpeedTabOptions()
|
||||||
m_ui->checkLimitTransportOverhead->setChecked(session->includeOverheadInLimits());
|
m_ui->checkLimitTransportOverhead->setChecked(session->includeOverheadInLimits());
|
||||||
m_ui->checkLimitLocalPeerRate->setChecked(!session->ignoreLimitsOnLAN());
|
m_ui->checkLimitLocalPeerRate->setChecked(!session->ignoreLimitsOnLAN());
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
m_ui->checkShowSpeedInDock->setChecked(pref->isSpeedInDockEnabled());
|
||||||
|
#else
|
||||||
|
m_ui->dockDisplayBox->hide();
|
||||||
|
#endif
|
||||||
|
|
||||||
connect(m_ui->spinUploadLimit, qSpinBoxValueChanged, this, &ThisType::enableApplyButton);
|
connect(m_ui->spinUploadLimit, qSpinBoxValueChanged, this, &ThisType::enableApplyButton);
|
||||||
connect(m_ui->spinDownloadLimit, qSpinBoxValueChanged, this, &ThisType::enableApplyButton);
|
connect(m_ui->spinDownloadLimit, qSpinBoxValueChanged, this, &ThisType::enableApplyButton);
|
||||||
|
|
||||||
|
@ -1058,6 +1064,10 @@ void OptionsDialog::loadSpeedTabOptions()
|
||||||
connect(m_ui->checkLimituTPConnections, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
connect(m_ui->checkLimituTPConnections, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
||||||
connect(m_ui->checkLimitTransportOverhead, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
connect(m_ui->checkLimitTransportOverhead, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
||||||
connect(m_ui->checkLimitLocalPeerRate, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
connect(m_ui->checkLimitLocalPeerRate, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
connect(m_ui->checkShowSpeedInDock, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void OptionsDialog::saveSpeedTabOptions() const
|
void OptionsDialog::saveSpeedTabOptions() const
|
||||||
|
@ -1079,6 +1089,10 @@ void OptionsDialog::saveSpeedTabOptions() const
|
||||||
session->setUTPRateLimited(m_ui->checkLimituTPConnections->isChecked());
|
session->setUTPRateLimited(m_ui->checkLimituTPConnections->isChecked());
|
||||||
session->setIncludeOverheadInLimits(m_ui->checkLimitTransportOverhead->isChecked());
|
session->setIncludeOverheadInLimits(m_ui->checkLimitTransportOverhead->isChecked());
|
||||||
session->setIgnoreLimitsOnLAN(!m_ui->checkLimitLocalPeerRate->isChecked());
|
session->setIgnoreLimitsOnLAN(!m_ui->checkLimitLocalPeerRate->isChecked());
|
||||||
|
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
pref->setSpeedInDockEnabled(m_ui->checkShowSpeedInDock->isChecked());
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void OptionsDialog::loadBittorrentTabOptions()
|
void OptionsDialog::loadBittorrentTabOptions()
|
||||||
|
|
|
@ -2635,6 +2635,22 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'.</st
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QGroupBox" name="dockDisplayBox">
|
||||||
|
<property name="title">
|
||||||
|
<string>Display</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="dockDisplayBoxLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="checkShowSpeedInDock">
|
||||||
|
<property name="text">
|
||||||
|
<string>Show speed in Dock</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="verticalSpacer_2">
|
<spacer name="verticalSpacer_2">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue