mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Describe special values in label
https://github.com/qbittorrent/qBittorrent/pull/18806#discussion_r1158346210 https://github.com/qbittorrent/qBittorrent/pull/18812#issuecomment-1500303976
This commit is contained in:
parent
a9ab2d9b9e
commit
9d7fcea5d6
3 changed files with 43 additions and 31 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* Bittorrent Client using Qt and libtorrent.
|
||||
* Copyright (C) 2015
|
||||
* Copyright (C) 2015 qBittorrent project
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -34,6 +34,7 @@
|
|||
#include <QSpinBox>
|
||||
#include <QTableWidget>
|
||||
|
||||
#include "gui/desktopintegration.h"
|
||||
#include "guiapplicationcomponent.h"
|
||||
|
||||
class AdvancedSettings final : public QTableWidget, public GUIApplicationComponent
|
||||
|
@ -51,11 +52,15 @@ signals:
|
|||
void settingsChanged();
|
||||
|
||||
private slots:
|
||||
void updateInterfaceAddressCombo();
|
||||
|
||||
#ifndef QBT_USES_LIBTORRENT2
|
||||
void updateCacheSpinSuffix(int value);
|
||||
#endif
|
||||
void updateSaveResumeDataIntervalSuffix(int value);
|
||||
void updateInterfaceAddressCombo();
|
||||
|
||||
#ifdef QBT_USES_CUSTOMDBUSNOTIFICATIONS
|
||||
void updateNotificationTimeoutSuffix(int value);
|
||||
#endif
|
||||
|
||||
private:
|
||||
void loadAdvancedSettings();
|
||||
|
@ -93,7 +98,7 @@ private:
|
|||
QCheckBox m_checkBoxIconsInMenusEnabled;
|
||||
#endif
|
||||
|
||||
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)) && defined(QT_DBUS_LIB)
|
||||
#ifdef QBT_USES_CUSTOMDBUSNOTIFICATIONS
|
||||
QSpinBox m_spinBoxNotificationTimeout;
|
||||
#endif
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue