Display download/upload speed in dock icon

Implementation is based on Transmission sources.

Closes #2761
Closes #3671
Closes #7098
Closes #11350
Closes #18527

PR #19595
This commit is contained in:
Nick Korotysh
2023-10-16 08:45:24 +02:00
committed by GitHub
parent d60f9c6142
commit e6ec3d0c2b
9 changed files with 317 additions and 12 deletions

View File

@@ -61,6 +61,13 @@ class TorrentCreatorDialog;
class TransferListFiltersWidget;
class TransferListWidget;
#ifdef Q_OS_MACOS
namespace MacUtils
{
class Badger;
}
#endif
namespace Net
{
struct DownloadResult;
@@ -245,4 +252,7 @@ private:
QTimer *m_programUpdateTimer = nullptr;
#endif
#ifdef Q_OS_MACOS
std::unique_ptr<MacUtils::Badger> m_badger;
#endif
};