|
|
|
@ -43,450 +43,491 @@
@@ -43,450 +43,491 @@
|
|
|
|
|
|
|
|
|
|
#include <libtorrent/version.hpp> |
|
|
|
|
|
|
|
|
|
enum scheduler_days { EVERY_DAY, WEEK_DAYS, WEEK_ENDS, MON, TUE, WED, THU, FRI, SAT, SUN }; |
|
|
|
|
enum maxRatioAction {PAUSE_ACTION, REMOVE_ACTION}; |
|
|
|
|
namespace Proxy { |
|
|
|
|
enum ProxyType {HTTP=1, SOCKS5=2, HTTP_PW=3, SOCKS5_PW=4, SOCKS4=5}; |
|
|
|
|
enum scheduler_days |
|
|
|
|
{ |
|
|
|
|
EVERY_DAY, |
|
|
|
|
WEEK_DAYS, |
|
|
|
|
WEEK_ENDS, |
|
|
|
|
MON, |
|
|
|
|
TUE, |
|
|
|
|
WED, |
|
|
|
|
THU, |
|
|
|
|
FRI, |
|
|
|
|
SAT, |
|
|
|
|
SUN |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
enum maxRatioAction |
|
|
|
|
{ |
|
|
|
|
PAUSE_ACTION, |
|
|
|
|
REMOVE_ACTION |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
namespace Proxy |
|
|
|
|
{ |
|
|
|
|
enum ProxyType |
|
|
|
|
{ |
|
|
|
|
HTTP = 1, |
|
|
|
|
SOCKS5 = 2, |
|
|
|
|
HTTP_PW = 3, |
|
|
|
|
SOCKS5_PW = 4, |
|
|
|
|
SOCKS4 = 5 |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
namespace TrayIcon { |
|
|
|
|
enum Style { NORMAL = 0, MONO_DARK, MONO_LIGHT }; |
|
|
|
|
|
|
|
|
|
namespace TrayIcon |
|
|
|
|
{ |
|
|
|
|
enum Style |
|
|
|
|
{ |
|
|
|
|
NORMAL = 0, |
|
|
|
|
MONO_DARK, |
|
|
|
|
MONO_LIGHT |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
namespace DNS { |
|
|
|
|
enum Service { DYNDNS, NOIP, NONE = -1 }; |
|
|
|
|
|
|
|
|
|
namespace DNS |
|
|
|
|
{ |
|
|
|
|
enum Service |
|
|
|
|
{ |
|
|
|
|
DYNDNS, |
|
|
|
|
NOIP, |
|
|
|
|
NONE = -1 |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class Preferences : public QObject { |
|
|
|
|
Q_OBJECT |
|
|
|
|
Q_DISABLE_COPY(Preferences) |
|
|
|
|
class Preferences: public QObject |
|
|
|
|
{ |
|
|
|
|
Q_OBJECT |
|
|
|
|
Q_DISABLE_COPY(Preferences) |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
explicit Preferences(); |
|
|
|
|
static Preferences* m_instance; |
|
|
|
|
QHash<QString, QVariant> m_data; |
|
|
|
|
int m_randomPort; |
|
|
|
|
bool dirty; |
|
|
|
|
QTimer timer; |
|
|
|
|
mutable QReadWriteLock lock; |
|
|
|
|
const QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const; |
|
|
|
|
void setValue(const QString &key, const QVariant &value); |
|
|
|
|
explicit Preferences(); |
|
|
|
|
static Preferences* m_instance; |
|
|
|
|
QHash<QString, QVariant> m_data; |
|
|
|
|
int m_randomPort; |
|
|
|
|
bool dirty; |
|
|
|
|
QTimer timer; |
|
|
|
|
mutable QReadWriteLock lock; |
|
|
|
|
const QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const; |
|
|
|
|
void setValue(const QString &key, const QVariant &value); |
|
|
|
|
|
|
|
|
|
signals: |
|
|
|
|
void changed(); |
|
|
|
|
void changed(); |
|
|
|
|
|
|
|
|
|
public slots: |
|
|
|
|
void save(); |
|
|
|
|
void save(); |
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
static Preferences* instance(); |
|
|
|
|
static void drop(); |
|
|
|
|
~Preferences(); |
|
|
|
|
static Preferences* instance(); |
|
|
|
|
static void drop(); |
|
|
|
|
~Preferences(); |
|
|
|
|
|
|
|
|
|
// General options
|
|
|
|
|
QString getLocale() const; |
|
|
|
|
void setLocale(const QString &locale); |
|
|
|
|
bool useProgramNotification() const; |
|
|
|
|
void useProgramNotification(bool use); |
|
|
|
|
bool deleteTorrentFilesAsDefault() const; |
|
|
|
|
void setDeleteTorrentFilesAsDefault(bool del); |
|
|
|
|
bool confirmOnExit() const; |
|
|
|
|
void setConfirmOnExit(bool confirm); |
|
|
|
|
bool speedInTitleBar() const; |
|
|
|
|
void showSpeedInTitleBar(bool show); |
|
|
|
|
bool useAlternatingRowColors() const; |
|
|
|
|
void setAlternatingRowColors(bool b); |
|
|
|
|
bool useRandomPort() const; |
|
|
|
|
void setRandomPort(bool b); |
|
|
|
|
bool systrayIntegration() const; |
|
|
|
|
void setSystrayIntegration(bool enabled); |
|
|
|
|
bool isToolbarDisplayed() const; |
|
|
|
|
void setToolbarDisplayed(bool displayed); |
|
|
|
|
bool minimizeToTray() const; |
|
|
|
|
void setMinimizeToTray(bool b); |
|
|
|
|
bool closeToTray() const; |
|
|
|
|
void setCloseToTray(bool b); |
|
|
|
|
bool startMinimized() const; |
|
|
|
|
void setStartMinimized(bool b); |
|
|
|
|
bool isSplashScreenDisabled() const; |
|
|
|
|
void setSplashScreenDisabled(bool b); |
|
|
|
|
bool preventFromSuspend() const; |
|
|
|
|
void setPreventFromSuspend(bool b); |
|
|
|
|
// General options
|
|
|
|
|
QString getLocale() const; |
|
|
|
|
void setLocale(const QString &locale); |
|
|
|
|
bool useProgramNotification() const; |
|
|
|
|
void useProgramNotification(bool use); |
|
|
|
|
bool deleteTorrentFilesAsDefault() const; |
|
|
|
|
void setDeleteTorrentFilesAsDefault(bool del); |
|
|
|
|
bool confirmOnExit() const; |
|
|
|
|
void setConfirmOnExit(bool confirm); |
|
|
|
|
bool speedInTitleBar() const; |
|
|
|
|
void showSpeedInTitleBar(bool show); |
|
|
|
|
bool useAlternatingRowColors() const; |
|
|
|
|
void setAlternatingRowColors(bool b); |
|
|
|
|
bool useRandomPort() const; |
|
|
|
|
void setRandomPort(bool b); |
|
|
|
|
bool systrayIntegration() const; |
|
|
|
|
void setSystrayIntegration(bool enabled); |
|
|
|
|
bool isToolbarDisplayed() const; |
|
|
|
|
void setToolbarDisplayed(bool displayed); |
|
|
|
|
bool minimizeToTray() const; |
|
|
|
|
void setMinimizeToTray(bool b); |
|
|
|
|
bool closeToTray() const; |
|
|
|
|
void setCloseToTray(bool b); |
|
|
|
|
bool startMinimized() const; |
|
|
|
|
void setStartMinimized(bool b); |
|
|
|
|
bool isSplashScreenDisabled() const; |
|
|
|
|
void setSplashScreenDisabled(bool b); |
|
|
|
|
bool preventFromSuspend() const; |
|
|
|
|
void setPreventFromSuspend(bool b); |
|
|
|
|
#ifdef Q_OS_WIN |
|
|
|
|
bool WinStartup() const; |
|
|
|
|
void setWinStartup(bool b); |
|
|
|
|
bool WinStartup() const; |
|
|
|
|
void setWinStartup(bool b); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Downloads
|
|
|
|
|
QString getSavePath() const; |
|
|
|
|
void setSavePath(const QString &save_path); |
|
|
|
|
bool isTempPathEnabled() const; |
|
|
|
|
void setTempPathEnabled(bool enabled); |
|
|
|
|
QString getTempPath() const; |
|
|
|
|
void setTempPath(const QString &path); |
|
|
|
|
bool useIncompleteFilesExtension() const; |
|
|
|
|
void useIncompleteFilesExtension(bool enabled); |
|
|
|
|
bool appendTorrentLabel() const; |
|
|
|
|
void setAppendTorrentLabel(bool b); |
|
|
|
|
QString lastLocationPath() const; |
|
|
|
|
void setLastLocationPath(const QString &path); |
|
|
|
|
bool preAllocateAllFiles() const; |
|
|
|
|
void preAllocateAllFiles(bool enabled); |
|
|
|
|
bool useAdditionDialog() const; |
|
|
|
|
void useAdditionDialog(bool b); |
|
|
|
|
bool additionDialogFront() const; |
|
|
|
|
void additionDialogFront(bool b); |
|
|
|
|
bool addTorrentsInPause() const; |
|
|
|
|
void addTorrentsInPause(bool b); |
|
|
|
|
QStringList getScanDirs() const; |
|
|
|
|
void setScanDirs(const QStringList &dirs); |
|
|
|
|
QList<bool> getDownloadInScanDirs() const; |
|
|
|
|
void setDownloadInScanDirs(const QList<bool> &list); |
|
|
|
|
QString getScanDirsLastPath() const; |
|
|
|
|
void setScanDirsLastPath(const QString &path); |
|
|
|
|
bool isTorrentExportEnabled() const; |
|
|
|
|
QString getTorrentExportDir() const; |
|
|
|
|
void setTorrentExportDir(QString path); |
|
|
|
|
bool isFinishedTorrentExportEnabled() const; |
|
|
|
|
QString getFinishedTorrentExportDir() const; |
|
|
|
|
void setFinishedTorrentExportDir(QString path); |
|
|
|
|
bool isMailNotificationEnabled() const; |
|
|
|
|
void setMailNotificationEnabled(bool enabled); |
|
|
|
|
QString getMailNotificationEmail() const; |
|
|
|
|
void setMailNotificationEmail(const QString &mail); |
|
|
|
|
QString getMailNotificationSMTP() const; |
|
|
|
|
void setMailNotificationSMTP(const QString &smtp_server); |
|
|
|
|
bool getMailNotificationSMTPSSL() const; |
|
|
|
|
void setMailNotificationSMTPSSL(bool use); |
|
|
|
|
bool getMailNotificationSMTPAuth() const; |
|
|
|
|
void setMailNotificationSMTPAuth(bool use); |
|
|
|
|
QString getMailNotificationSMTPUsername() const; |
|
|
|
|
void setMailNotificationSMTPUsername(const QString &username); |
|
|
|
|
QString getMailNotificationSMTPPassword() const; |
|
|
|
|
void setMailNotificationSMTPPassword(const QString &password); |
|
|
|
|
int getActionOnDblClOnTorrentDl() const; |
|
|
|
|
void setActionOnDblClOnTorrentDl(int act); |
|
|
|
|
int getActionOnDblClOnTorrentFn() const; |
|
|
|
|
void setActionOnDblClOnTorrentFn(int act); |
|
|
|
|
// Downloads
|
|
|
|
|
QString getSavePath() const; |
|
|
|
|
void setSavePath(const QString &save_path); |
|
|
|
|
bool isTempPathEnabled() const; |
|
|
|
|
void setTempPathEnabled(bool enabled); |
|
|
|
|
QString getTempPath() const; |
|
|
|
|
void setTempPath(const QString &path); |
|
|
|
|
bool useIncompleteFilesExtension() const; |
|
|
|
|
void useIncompleteFilesExtension(bool enabled); |
|
|
|
|
bool appendTorrentLabel() const; |
|
|
|
|
void setAppendTorrentLabel(bool b); |
|
|
|
|
QString lastLocationPath() const; |
|
|
|
|
void setLastLocationPath(const QString &path); |
|
|
|
|
bool preAllocateAllFiles() const; |
|
|
|
|
void preAllocateAllFiles(bool enabled); |
|
|
|
|
bool useAdditionDialog() const; |
|
|
|
|
void useAdditionDialog(bool b); |
|
|
|
|
bool additionDialogFront() const; |
|
|
|
|
void additionDialogFront(bool b); |
|
|
|
|
bool addTorrentsInPause() const; |
|
|
|
|
void addTorrentsInPause(bool b); |
|
|
|
|
QStringList getScanDirs() const; |
|
|
|
|
void setScanDirs(const QStringList &dirs); |
|
|
|
|
QList<bool> getDownloadInScanDirs() const; |
|
|
|
|
void setDownloadInScanDirs(const QList<bool> &list); |
|
|
|
|
QString getScanDirsLastPath() const; |
|
|
|
|
void setScanDirsLastPath(const QString &path); |
|
|
|
|
bool isTorrentExportEnabled() const; |
|
|
|
|
QString getTorrentExportDir() const; |
|
|
|
|
void setTorrentExportDir(QString path); |
|
|
|
|
bool isFinishedTorrentExportEnabled() const; |
|
|
|
|
QString getFinishedTorrentExportDir() const; |
|
|
|
|
void setFinishedTorrentExportDir(QString path); |
|
|
|
|
bool isMailNotificationEnabled() const; |
|
|
|
|
void setMailNotificationEnabled(bool enabled); |
|
|
|
|
QString getMailNotificationEmail() const; |
|
|
|
|
void setMailNotificationEmail(const QString &mail); |
|
|
|
|
QString getMailNotificationSMTP() const; |
|
|
|
|
void setMailNotificationSMTP(const QString &smtp_server); |
|
|
|
|
bool getMailNotificationSMTPSSL() const; |
|
|
|
|
void setMailNotificationSMTPSSL(bool use); |
|
|
|
|
bool getMailNotificationSMTPAuth() const; |
|
|
|
|
void setMailNotificationSMTPAuth(bool use); |
|
|
|
|
QString getMailNotificationSMTPUsername() const; |
|
|
|
|
void setMailNotificationSMTPUsername(const QString &username); |
|
|
|
|
QString getMailNotificationSMTPPassword() const; |
|
|
|
|
void setMailNotificationSMTPPassword(const QString &password); |
|
|
|
|
int getActionOnDblClOnTorrentDl() const; |
|
|
|
|
void setActionOnDblClOnTorrentDl(int act); |
|
|
|
|
int getActionOnDblClOnTorrentFn() const; |
|
|
|
|
void setActionOnDblClOnTorrentFn(int act); |
|
|
|
|
|
|
|
|
|
// Connection options
|
|
|
|
|
int getSessionPort() const; |
|
|
|
|
void setSessionPort(int port); |
|
|
|
|
bool isUPnPEnabled() const; |
|
|
|
|
void setUPnPEnabled(bool enabled); |
|
|
|
|
int getGlobalDownloadLimit() const; |
|
|
|
|
void setGlobalDownloadLimit(int limit); |
|
|
|
|
int getGlobalUploadLimit() const; |
|
|
|
|
void setGlobalUploadLimit(int limit); |
|
|
|
|
int getAltGlobalDownloadLimit() const; |
|
|
|
|
void setAltGlobalDownloadLimit(int limit); |
|
|
|
|
int getAltGlobalUploadLimit() const; |
|
|
|
|
void setAltGlobalUploadLimit(int limit); |
|
|
|
|
bool isAltBandwidthEnabled() const; |
|
|
|
|
void setAltBandwidthEnabled(bool enabled); |
|
|
|
|
bool isSchedulerEnabled() const; |
|
|
|
|
void setSchedulerEnabled(bool enabled); |
|
|
|
|
QTime getSchedulerStartTime() const; |
|
|
|
|
void setSchedulerStartTime(const QTime &time); |
|
|
|
|
QTime getSchedulerEndTime() const; |
|
|
|
|
void setSchedulerEndTime(const QTime &time); |
|
|
|
|
scheduler_days getSchedulerDays() const; |
|
|
|
|
void setSchedulerDays(scheduler_days days); |
|
|
|
|
// Connection options
|
|
|
|
|
int getSessionPort() const; |
|
|
|
|
void setSessionPort(int port); |
|
|
|
|
bool isUPnPEnabled() const; |
|
|
|
|
void setUPnPEnabled(bool enabled); |
|
|
|
|
int getGlobalDownloadLimit() const; |
|
|
|
|
void setGlobalDownloadLimit(int limit); |
|
|
|
|
int getGlobalUploadLimit() const; |
|
|
|
|
void setGlobalUploadLimit(int limit); |
|
|
|
|
int getAltGlobalDownloadLimit() const; |
|
|
|
|
void setAltGlobalDownloadLimit(int limit); |
|
|
|
|
int getAltGlobalUploadLimit() const; |
|
|
|
|
void setAltGlobalUploadLimit(int limit); |
|
|
|
|
bool isAltBandwidthEnabled() const; |
|
|
|
|
void setAltBandwidthEnabled(bool enabled); |
|
|
|
|
bool isSchedulerEnabled() const; |
|
|
|
|
void setSchedulerEnabled(bool enabled); |
|
|
|
|
QTime getSchedulerStartTime() const; |
|
|
|
|
void setSchedulerStartTime(const QTime &time); |
|
|
|
|
QTime getSchedulerEndTime() const; |
|
|
|
|
void setSchedulerEndTime(const QTime &time); |
|
|
|
|
scheduler_days getSchedulerDays() const; |
|
|
|
|
void setSchedulerDays(scheduler_days days); |
|
|
|
|
|
|
|
|
|
// Proxy options
|
|
|
|
|
bool isProxyEnabled() const; |
|
|
|
|
bool isProxyAuthEnabled() const; |
|
|
|
|
void setProxyAuthEnabled(bool enabled); |
|
|
|
|
QString getProxyIp() const; |
|
|
|
|
void setProxyIp(const QString &ip); |
|
|
|
|
unsigned short getProxyPort() const; |
|
|
|
|
void setProxyPort(unsigned short port); |
|
|
|
|
QString getProxyUsername() const; |
|
|
|
|
void setProxyUsername(const QString &username); |
|
|
|
|
QString getProxyPassword() const; |
|
|
|
|
void setProxyPassword(const QString &password); |
|
|
|
|
int getProxyType() const; |
|
|
|
|
void setProxyType(int type); |
|
|
|
|
bool proxyPeerConnections() const; |
|
|
|
|
void setProxyPeerConnections(bool enabled); |
|
|
|
|
// Proxy options
|
|
|
|
|
bool isProxyEnabled() const; |
|
|
|
|
bool isProxyAuthEnabled() const; |
|
|
|
|
void setProxyAuthEnabled(bool enabled); |
|
|
|
|
QString getProxyIp() const; |
|
|
|
|
void setProxyIp(const QString &ip); |
|
|
|
|
unsigned short getProxyPort() const; |
|
|
|
|
void setProxyPort(unsigned short port); |
|
|
|
|
QString getProxyUsername() const; |
|
|
|
|
void setProxyUsername(const QString &username); |
|
|
|
|
QString getProxyPassword() const; |
|
|
|
|
void setProxyPassword(const QString &password); |
|
|
|
|
int getProxyType() const; |
|
|
|
|
void setProxyType(int type); |
|
|
|
|
bool proxyPeerConnections() const; |
|
|
|
|
void setProxyPeerConnections(bool enabled); |
|
|
|
|
#if LIBTORRENT_VERSION_NUM >= 10000 |
|
|
|
|
bool getForceProxy() const; |
|
|
|
|
void setForceProxy(bool enabled); |
|
|
|
|
bool getForceProxy() const; |
|
|
|
|
void setForceProxy(bool enabled); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Bittorrent options
|
|
|
|
|
int getMaxConnecs() const; |
|
|
|
|
void setMaxConnecs(int val); |
|
|
|
|
int getMaxConnecsPerTorrent() const; |
|
|
|
|
void setMaxConnecsPerTorrent(int val); |
|
|
|
|
int getMaxUploads() const; |
|
|
|
|
void setMaxUploads(int val); |
|
|
|
|
int getMaxUploadsPerTorrent() const; |
|
|
|
|
void setMaxUploadsPerTorrent(int val); |
|
|
|
|
bool isuTPEnabled() const; |
|
|
|
|
void setuTPEnabled(bool enabled); |
|
|
|
|
bool isuTPRateLimited() const; |
|
|
|
|
void setuTPRateLimited(bool enabled); |
|
|
|
|
bool isDHTEnabled() const; |
|
|
|
|
void setDHTEnabled(bool enabled); |
|
|
|
|
bool isPeXEnabled() const; |
|
|
|
|
void setPeXEnabled(bool enabled); |
|
|
|
|
bool isLSDEnabled() const; |
|
|
|
|
void setLSDEnabled(bool enabled); |
|
|
|
|
int getEncryptionSetting() const; |
|
|
|
|
void setEncryptionSetting(int val); |
|
|
|
|
qreal getGlobalMaxRatio() const; |
|
|
|
|
void setGlobalMaxRatio(qreal ratio); |
|
|
|
|
int getMaxRatioAction() const; |
|
|
|
|
void setMaxRatioAction(int act); |
|
|
|
|
// Bittorrent options
|
|
|
|
|
int getMaxConnecs() const; |
|
|
|
|
void setMaxConnecs(int val); |
|
|
|
|
int getMaxConnecsPerTorrent() const; |
|
|
|
|
void setMaxConnecsPerTorrent(int val); |
|
|
|
|
int getMaxUploads() const; |
|
|
|
|
void setMaxUploads(int val); |
|
|
|
|
int getMaxUploadsPerTorrent() const; |
|
|
|
|
void setMaxUploadsPerTorrent(int val); |
|
|
|
|
bool isuTPEnabled() const; |
|
|
|
|
void setuTPEnabled(bool enabled); |
|
|
|
|
bool isuTPRateLimited() const; |
|
|
|
|
void setuTPRateLimited(bool enabled); |
|
|
|
|
bool isDHTEnabled() const; |
|
|
|
|
void setDHTEnabled(bool enabled); |
|
|
|
|
bool isPeXEnabled() const; |
|
|
|
|
void setPeXEnabled(bool enabled); |
|
|
|
|
bool isLSDEnabled() const; |
|
|
|
|
void setLSDEnabled(bool enabled); |
|
|
|
|
int getEncryptionSetting() const; |
|
|
|
|
void setEncryptionSetting(int val); |
|
|
|
|
qreal getGlobalMaxRatio() const; |
|
|
|
|
void setGlobalMaxRatio(qreal ratio); |
|
|
|
|
int getMaxRatioAction() const; |
|
|
|
|
void setMaxRatioAction(int act); |
|
|
|
|
|
|
|
|
|
// IP Filter
|
|
|
|
|
bool isFilteringEnabled() const; |
|
|
|
|
void setFilteringEnabled(bool enabled); |
|
|
|
|
QString getFilter() const; |
|
|
|
|
void setFilter(const QString &path); |
|
|
|
|
QStringList bannedIPs() const; |
|
|
|
|
void banIP(const QString &ip); |
|
|
|
|
// IP Filter
|
|
|
|
|
bool isFilteringEnabled() const; |
|
|
|
|
void setFilteringEnabled(bool enabled); |
|
|
|
|
QString getFilter() const; |
|
|
|
|
void setFilter(const QString &path); |
|
|
|
|
QStringList bannedIPs() const; |
|
|
|
|
void banIP(const QString &ip); |
|
|
|
|
|
|
|
|
|
// Search
|
|
|
|
|
bool isSearchEnabled() const; |
|
|
|
|
void setSearchEnabled(bool enabled); |
|
|
|
|
// Search
|
|
|
|
|
bool isSearchEnabled() const; |
|
|
|
|
void setSearchEnabled(bool enabled); |
|
|
|
|
|
|
|
|
|
// Execution Log
|
|
|
|
|
bool isExecutionLogEnabled() const; |
|
|
|
|
void setExecutionLogEnabled(bool b); |
|
|
|
|
// Execution Log
|
|
|
|
|
bool isExecutionLogEnabled() const; |
|
|
|
|
void setExecutionLogEnabled(bool b); |
|
|
|
|
|
|
|
|
|
// Queueing system
|
|
|
|
|
bool isQueueingSystemEnabled() const; |
|
|
|
|
void setQueueingSystemEnabled(bool enabled); |
|
|
|
|
int getMaxActiveDownloads() const; |
|
|
|
|
void setMaxActiveDownloads(int val); |
|
|
|
|
int getMaxActiveUploads() const; |
|
|
|
|
void setMaxActiveUploads(int val); |
|
|
|
|
int getMaxActiveTorrents() const; |
|
|
|
|
void setMaxActiveTorrents(int val); |
|
|
|
|
bool ignoreSlowTorrentsForQueueing() const; |
|
|
|
|
void setIgnoreSlowTorrentsForQueueing(bool ignore); |
|
|
|
|
bool isWebUiEnabled() const; |
|
|
|
|
void setWebUiEnabled(bool enabled); |
|
|
|
|
bool isWebUiLocalAuthEnabled() const; |
|
|
|
|
void setWebUiLocalAuthEnabled(bool enabled); |
|
|
|
|
quint16 getWebUiPort() const; |
|
|
|
|
void setWebUiPort(quint16 port); |
|
|
|
|
bool useUPnPForWebUIPort() const; |
|
|
|
|
void setUPnPForWebUIPort(bool enabled); |
|
|
|
|
QString getWebUiUsername() const; |
|
|
|
|
void setWebUiUsername(const QString &username); |
|
|
|
|
QString getWebUiPassword() const; |
|
|
|
|
void setWebUiPassword(const QString &new_password); |
|
|
|
|
bool isWebUiHttpsEnabled() const; |
|
|
|
|
void setWebUiHttpsEnabled(bool enabled); |
|
|
|
|
QByteArray getWebUiHttpsCertificate() const; |
|
|
|
|
void setWebUiHttpsCertificate(const QByteArray &data); |
|
|
|
|
QByteArray getWebUiHttpsKey() const; |
|
|
|
|
void setWebUiHttpsKey(const QByteArray &data); |
|
|
|
|
bool isDynDNSEnabled() const; |
|
|
|
|
void setDynDNSEnabled(bool enabled); |
|
|
|
|
DNS::Service getDynDNSService() const; |
|
|
|
|
void setDynDNSService(int service); |
|
|
|
|
QString getDynDomainName() const; |
|
|
|
|
void setDynDomainName(const QString &name); |
|
|
|
|
QString getDynDNSUsername() const; |
|
|
|
|
void setDynDNSUsername(const QString &username); |
|
|
|
|
QString getDynDNSPassword() const; |
|
|
|
|
void setDynDNSPassword(const QString &password); |
|
|
|
|
// Queueing system
|
|
|
|
|
bool isQueueingSystemEnabled() const; |
|
|
|
|
void setQueueingSystemEnabled(bool enabled); |
|
|
|
|
int getMaxActiveDownloads() const; |
|
|
|
|
void setMaxActiveDownloads(int val); |
|
|
|
|
int getMaxActiveUploads() const; |
|
|
|
|
void setMaxActiveUploads(int val); |
|
|
|
|
int getMaxActiveTorrents() const; |
|
|
|
|
void setMaxActiveTorrents(int val); |
|
|
|
|
bool ignoreSlowTorrentsForQueueing() const; |
|
|
|
|
void setIgnoreSlowTorrentsForQueueing(bool ignore); |
|
|
|
|
bool isWebUiEnabled() const; |
|
|
|
|
void setWebUiEnabled(bool enabled); |
|
|
|
|
bool isWebUiLocalAuthEnabled() const; |
|
|
|
|
void setWebUiLocalAuthEnabled(bool enabled); |
|
|
|
|
quint16 getWebUiPort() const; |
|
|
|
|
void setWebUiPort(quint16 port); |
|
|
|
|
bool useUPnPForWebUIPort() const; |
|
|
|
|
void setUPnPForWebUIPort(bool enabled); |
|
|
|
|
QString getWebUiUsername() const; |
|
|
|
|
void setWebUiUsername(const QString &username); |
|
|
|
|
QString getWebUiPassword() const; |
|
|
|
|
void setWebUiPassword(const QString &new_password); |
|
|
|
|
bool isWebUiHttpsEnabled() const; |
|
|
|
|
void setWebUiHttpsEnabled(bool enabled); |
|
|
|
|
QByteArray getWebUiHttpsCertificate() const; |
|
|
|
|
void setWebUiHttpsCertificate(const QByteArray &data); |
|
|
|
|
QByteArray getWebUiHttpsKey() const; |
|
|
|
|
void setWebUiHttpsKey(const QByteArray &data); |
|
|
|
|
bool isDynDNSEnabled() const; |
|
|
|
|
void setDynDNSEnabled(bool enabled); |
|
|
|
|
DNS::Service getDynDNSService() const; |
|
|
|
|
void setDynDNSService(int service); |
|
|
|
|
QString getDynDomainName() const; |
|
|
|
|
void setDynDomainName(const QString &name); |
|
|
|
|
QString getDynDNSUsername() const; |
|
|
|
|
void setDynDNSUsername(const QString &username); |
|
|
|
|
QString getDynDNSPassword() const; |
|
|
|
|
void setDynDNSPassword(const QString &password); |
|
|
|
|
|
|
|
|
|
// Advanced settings
|
|
|
|
|
void setUILockPassword(const QString &clear_password); |
|
|
|
|
void clearUILockPassword(); |
|
|
|
|
QString getUILockPasswordMD5() const; |
|
|
|
|
bool isUILocked() const; |
|
|
|
|
void setUILocked(bool locked); |
|
|
|
|
bool isAutoRunEnabled() const; |
|
|
|
|
void setAutoRunEnabled(bool enabled); |
|
|
|
|
QString getAutoRunProgram() const; |
|
|
|
|
void setAutoRunProgram(const QString &program); |
|
|
|
|
bool shutdownWhenDownloadsComplete() const; |
|
|
|
|
void setShutdownWhenDownloadsComplete(bool shutdown); |
|
|
|
|
bool suspendWhenDownloadsComplete() const; |
|
|
|
|
void setSuspendWhenDownloadsComplete(bool suspend); |
|
|
|
|
bool hibernateWhenDownloadsComplete() const; |
|
|
|
|
void setHibernateWhenDownloadsComplete(bool hibernate); |
|
|
|
|
bool shutdownqBTWhenDownloadsComplete() const; |
|
|
|
|
void setShutdownqBTWhenDownloadsComplete(bool shutdown); |
|
|
|
|
uint diskCacheSize() const; |
|
|
|
|
void setDiskCacheSize(uint size); |
|
|
|
|
uint diskCacheTTL() const; |
|
|
|
|
void setDiskCacheTTL(uint ttl); |
|
|
|
|
bool osCache() const; |
|
|
|
|
void setOsCache(bool enable); |
|
|
|
|
uint saveResumeDataInterval() const; |
|
|
|
|
void setSaveResumeDataInterval(uint m); |
|
|
|
|
uint outgoingPortsMin() const; |
|
|
|
|
void setOutgoingPortsMin(uint val); |
|
|
|
|
uint outgoingPortsMax() const; |
|
|
|
|
void setOutgoingPortsMax(uint val); |
|
|
|
|
bool ignoreLimitsOnLAN() const; |
|
|
|
|
void ignoreLimitsOnLAN(bool ignore); |
|
|
|
|
bool includeOverheadInLimits() const; |
|
|
|
|
void includeOverheadInLimits(bool include); |
|
|
|
|
bool trackerExchangeEnabled() const; |
|
|
|
|
void setTrackerExchangeEnabled(bool enable); |
|
|
|
|
bool recheckTorrentsOnCompletion() const; |
|
|
|
|
void recheckTorrentsOnCompletion(bool recheck); |
|
|
|
|
unsigned int getRefreshInterval() const; |
|
|
|
|
void setRefreshInterval(uint interval); |
|
|
|
|
bool resolvePeerCountries() const; |
|
|
|
|
void resolvePeerCountries(bool resolve); |
|
|
|
|
bool resolvePeerHostNames() const; |
|
|
|
|
void resolvePeerHostNames(bool resolve); |
|
|
|
|
int getMaxHalfOpenConnections() const; |
|
|
|
|
void setMaxHalfOpenConnections(int value); |
|
|
|
|
QString getNetworkInterface() const; |
|
|
|
|
void setNetworkInterface(const QString& iface); |
|
|
|
|
QString getNetworkInterfaceName() const; |
|
|
|
|
void setNetworkInterfaceName(const QString& iface); |
|
|
|
|
bool getListenIPv6() const; |
|
|
|
|
void setListenIPv6(bool enable); |
|
|
|
|
QString getNetworkAddress() const; |
|
|
|
|
void setNetworkAddress(const QString& addr); |
|
|
|
|
bool isAnonymousModeEnabled() const; |
|
|
|
|
void enableAnonymousMode(bool enabled); |
|
|
|
|
bool isSuperSeedingEnabled() const; |
|
|
|
|
void enableSuperSeeding(bool enabled); |
|
|
|
|
bool announceToAllTrackers() const; |
|
|
|
|
void setAnnounceToAllTrackers(bool enabled); |
|
|
|
|
// Advanced settings
|
|
|
|
|
void setUILockPassword(const QString &clear_password); |
|
|
|
|
void clearUILockPassword(); |
|
|
|
|
QString getUILockPasswordMD5() const; |
|
|
|
|
bool isUILocked() const; |
|
|
|
|
void setUILocked(bool locked); |
|
|
|
|
bool isAutoRunEnabled() const; |
|
|
|
|
void setAutoRunEnabled(bool enabled); |
|
|
|
|
QString getAutoRunProgram() const; |
|
|
|
|
void setAutoRunProgram(const QString &program); |
|
|
|
|
bool shutdownWhenDownloadsComplete() const; |
|
|
|
|
void setShutdownWhenDownloadsComplete(bool shutdown); |
|
|
|
|
bool suspendWhenDownloadsComplete() const; |
|
|
|
|
void setSuspendWhenDownloadsComplete(bool suspend); |
|
|
|
|
bool hibernateWhenDownloadsComplete() const; |
|
|
|
|
void setHibernateWhenDownloadsComplete(bool hibernate); |
|
|
|
|
bool shutdownqBTWhenDownloadsComplete() const; |
|
|
|
|
void setShutdownqBTWhenDownloadsComplete(bool shutdown); |
|
|
|
|
uint diskCacheSize() const; |
|
|
|
|
void setDiskCacheSize(uint size); |
|
|
|
|
uint diskCacheTTL() const; |
|
|
|
|
void setDiskCacheTTL(uint ttl); |
|
|
|
|
bool osCache() const; |
|
|
|
|
void setOsCache(bool enable); |
|
|
|
|
uint saveResumeDataInterval() const; |
|
|
|
|
void setSaveResumeDataInterval(uint m); |
|
|
|
|
uint outgoingPortsMin() const; |
|
|
|
|
void setOutgoingPortsMin(uint val); |
|
|
|
|
uint outgoingPortsMax() const; |
|
|
|
|
void setOutgoingPortsMax(uint val); |
|
|
|
|
bool ignoreLimitsOnLAN() const; |
|
|
|
|
void ignoreLimitsOnLAN(bool ignore); |
|
|
|
|
bool includeOverheadInLimits() const; |
|
|
|
|
void includeOverheadInLimits(bool include); |
|
|
|
|
bool trackerExchangeEnabled() const; |
|
|
|
|
void setTrackerExchangeEnabled(bool enable); |
|
|
|
|
bool recheckTorrentsOnCompletion() const; |
|
|
|
|
void recheckTorrentsOnCompletion(bool recheck); |
|
|
|
|
unsigned int getRefreshInterval() const; |
|
|
|
|
void setRefreshInterval(uint interval); |
|
|
|
|
bool resolvePeerCountries() const; |
|
|
|
|
void resolvePeerCountries(bool resolve); |
|
|
|
|
bool resolvePeerHostNames() const; |
|
|
|
|
void resolvePeerHostNames(bool resolve); |
|
|
|
|
int getMaxHalfOpenConnections() const; |
|
|
|
|
void setMaxHalfOpenConnections(int value); |
|
|
|
|
QString getNetworkInterface() const; |
|
|
|
|
void setNetworkInterface(const QString& iface); |
|
|
|
|
QString getNetworkInterfaceName() const; |
|
|
|
|
void setNetworkInterfaceName(const QString& iface); |
|
|
|
|
bool getListenIPv6() const; |
|
|
|
|
void setListenIPv6(bool enable); |
|
|
|
|
QString getNetworkAddress() const; |
|
|
|
|
void setNetworkAddress(const QString& addr); |
|
|
|
|
bool isAnonymousModeEnabled() const; |
|
|
|
|
void enableAnonymousMode(bool enabled); |
|
|
|
|
bool isSuperSeedingEnabled() const; |
|
|
|
|
void enableSuperSeeding(bool enabled); |
|
|
|
|
bool announceToAllTrackers() const; |
|
|
|
|
void setAnnounceToAllTrackers(bool enabled); |
|
|
|
|
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC)) |
|
|
|
|
bool useSystemIconTheme() const; |
|
|
|
|
void useSystemIconTheme(bool enabled); |
|
|
|
|
bool useSystemIconTheme() const; |
|
|
|
|
void useSystemIconTheme(bool enabled); |
|
|
|
|
#endif |
|
|
|
|
QStringList getTorrentLabels() const; |
|
|
|
|
void setTorrentLabels(const QStringList& labels); |
|
|
|
|
void addTorrentLabel(const QString& label); |
|
|
|
|
void removeTorrentLabel(const QString& label); |
|
|
|
|
bool recursiveDownloadDisabled() const; |
|
|
|
|
void disableRecursiveDownload(bool disable=true); |
|
|
|
|
QStringList getTorrentLabels() const; |
|
|
|
|
void setTorrentLabels(const QStringList& labels); |
|
|
|
|
void addTorrentLabel(const QString& label); |
|
|
|
|
void removeTorrentLabel(const QString& label); |
|
|
|
|
bool recursiveDownloadDisabled() const; |
|
|
|
|
void disableRecursiveDownload(bool disable = true); |
|
|
|
|
#ifdef Q_OS_WIN |
|
|
|
|
static QString getPythonPath(); |
|
|
|
|
bool neverCheckFileAssoc() const; |
|
|
|
|
void setNeverCheckFileAssoc(bool check = true); |
|
|
|
|
static bool isTorrentFileAssocSet(); |
|
|
|
|
static bool isMagnetLinkAssocSet(); |
|
|
|
|
static void setTorrentFileAssoc(bool set); |
|
|
|
|
static void setMagnetLinkAssoc(bool set); |
|
|
|
|
static QString getPythonPath(); |
|
|
|
|
bool neverCheckFileAssoc() const; |
|
|
|
|
void setNeverCheckFileAssoc(bool check = true); |
|
|
|
|
static bool isTorrentFileAssocSet(); |
|
|
|
|
static bool isMagnetLinkAssocSet(); |
|
|
|
|
static void setTorrentFileAssoc(bool set); |
|
|
|
|
static void setMagnetLinkAssoc(bool set); |
|
|
|
|
#endif |
|
|
|
|
bool isTrackerEnabled() const; |
|
|
|
|
void setTrackerEnabled(bool enabled); |
|
|
|
|
int getTrackerPort() const; |
|
|
|
|
void setTrackerPort(int port); |
|
|
|
|
bool isTrackerEnabled() const; |
|
|
|
|
void setTrackerEnabled(bool enabled); |
|
|
|
|
int getTrackerPort() const; |
|
|
|
|
void setTrackerPort(int port); |
|
|
|
|
#if defined(Q_OS_WIN) || defined(Q_OS_MAC) |
|
|
|
|
bool isUpdateCheckEnabled() const; |
|
|
|
|
void setUpdateCheckEnabled(bool enabled); |
|
|
|
|
bool isUpdateCheckEnabled() const; |
|
|
|
|
void setUpdateCheckEnabled(bool enabled); |
|
|
|
|
#endif |
|
|
|
|
bool confirmTorrentDeletion() const; |
|
|
|
|
void setConfirmTorrentDeletion(bool enabled); |
|
|
|
|
TrayIcon::Style trayIconStyle() const; |
|
|
|
|
void setTrayIconStyle(TrayIcon::Style style); |
|
|
|
|
bool confirmTorrentDeletion() const; |
|
|
|
|
void setConfirmTorrentDeletion(bool enabled); |
|
|
|
|
TrayIcon::Style trayIconStyle() const; |
|
|
|
|
void setTrayIconStyle(TrayIcon::Style style); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Stuff that don't appear in the Options GUI but are saved
|
|
|
|
|
// in the same file.
|
|
|
|
|
QByteArray getAddNewTorrentDialogState() const; |
|
|
|
|
void setAddNewTorrentDialogState(const QByteArray &state); |
|
|
|
|
int getAddNewTorrentDialogPos() const; |
|
|
|
|
void setAddNewTorrentDialogPos(const int &pos); |
|
|
|
|
int getAddNewTorrentDialogWidth() const; |
|
|
|
|
void setAddNewTorrentDialogWidth(const int &width); |
|
|
|
|
bool getAddNewTorrentDialogExpanded() const; |
|
|
|
|
void setAddNewTorrentDialogExpanded(const bool expanded); |
|
|
|
|
QStringList getAddNewTorrentDialogPathHistory() const; |
|
|
|
|
void setAddNewTorrentDialogPathHistory(const QStringList &history); |
|
|
|
|
QDateTime getDNSLastUpd() const; |
|
|
|
|
void setDNSLastUpd(const QDateTime &date); |
|
|
|
|
QString getDNSLastIP() const; |
|
|
|
|
void setDNSLastIP(const QString &ip); |
|
|
|
|
bool getAcceptedLegal() const; |
|
|
|
|
void setAcceptedLegal(const bool accepted); |
|
|
|
|
QByteArray getMainGeometry() const; |
|
|
|
|
void setMainGeometry(const QByteArray &geometry); |
|
|
|
|
QByteArray getMainVSplitterState() const; |
|
|
|
|
void setMainVSplitterState(const QByteArray &state); |
|
|
|
|
QString getMainLastDir() const; |
|
|
|
|
void setMainLastDir(const QString &path); |
|
|
|
|
// Stuff that don't appear in the Options GUI but are saved
|
|
|
|
|
// in the same file.
|
|
|
|
|
QByteArray getAddNewTorrentDialogState() const; |
|
|
|
|
void setAddNewTorrentDialogState(const QByteArray &state); |
|
|
|
|
int getAddNewTorrentDialogPos() const; |
|
|
|
|
void setAddNewTorrentDialogPos(const int &pos); |
|
|
|
|
int getAddNewTorrentDialogWidth() const; |
|
|
|
|
void setAddNewTorrentDialogWidth(const int &width); |
|
|
|
|
bool getAddNewTorrentDialogExpanded() const; |
|
|
|
|
void setAddNewTorrentDialogExpanded(const bool expanded); |
|
|
|
|
QStringList getAddNewTorrentDialogPathHistory() const; |
|
|
|
|
void setAddNewTorrentDialogPathHistory(const QStringList &history); |
|
|
|
|
QDateTime getDNSLastUpd() const; |
|
|
|
|
void setDNSLastUpd(const QDateTime &date); |
|
|
|
|
QString getDNSLastIP() const; |
|
|
|
|
void setDNSLastIP(const QString &ip); |
|
|
|
|
bool getAcceptedLegal() const; |
|
|
|
|
void setAcceptedLegal(const bool accepted); |
|
|
|
|
QByteArray getMainGeometry() const; |
|
|
|
|
void setMainGeometry(const QByteArray &geometry); |
|
|
|
|
QByteArray getMainVSplitterState() const; |
|
|
|
|
void setMainVSplitterState(const QByteArray &state); |
|
|
|
|
QString getMainLastDir() const; |
|
|
|
|
void setMainLastDir(const QString &path); |
|
|
|
|
#ifndef DISABLE_GUI |
|
|
|
|
QSize getPrefSize(const QSize &defaultSize) const; |
|
|
|
|
void setPrefSize(const QSize &size); |
|
|
|
|
QSize getPrefSize(const QSize &defaultSize) const; |
|
|
|
|
void setPrefSize(const QSize &size); |
|
|
|
|
#endif |
|
|
|
|
QPoint getPrefPos() const; |
|
|
|
|
void setPrefPos(const QPoint &pos); |
|
|
|
|
QStringList getPrefHSplitterSizes() const; |
|
|
|
|
void setPrefHSplitterSizes(const QStringList &sizes); |
|
|
|
|
QByteArray getPeerListState() const; |
|
|
|
|
void setPeerListState(const QByteArray &state); |
|
|
|
|
QString getPropSplitterSizes() const; |
|
|
|
|
void setPropSplitterSizes(const QString &sizes); |
|
|
|
|
QByteArray getPropFileListState() const; |
|
|
|
|
void setPropFileListState(const QByteArray &state); |
|
|
|
|
int getPropCurTab() const; |
|
|
|
|
void setPropCurTab(const int &tab); |
|
|
|
|
bool getPropVisible() const; |
|
|
|
|
void setPropVisible(const bool visible); |
|
|
|
|
QByteArray getPropTrackerListState() const; |
|
|
|
|
void setPropTrackerListState(const QByteArray &state); |
|
|
|
|
QByteArray getRssGeometry() const; |
|
|
|
|
void setRssGeometry(const QByteArray &geometry); |
|
|
|
|
QByteArray getRssHSplitterSizes() const; |
|
|
|
|
void setRssHSplitterSizes(const QByteArray &sizes); |
|
|
|
|
QStringList getRssOpenFolders() const; |
|
|
|
|
void setRssOpenFolders(const QStringList &folders); |
|
|
|
|
QByteArray getRssHSplitterState() const; |
|
|
|
|
void setRssHSplitterState(const QByteArray &state); |
|
|
|
|
QByteArray getRssVSplitterState() const; |
|
|
|
|
void setRssVSplitterState(const QByteArray &state); |
|
|
|
|
QString getSearchColsWidth() const; |
|
|
|
|
void setSearchColsWidth(const QString &width); |
|
|
|
|
QStringList getSearchEngDisabled() const; |
|
|
|
|
void setSearchEngDisabled(const QStringList &engines); |
|
|
|
|
QString getCreateTorLastAddPath() const; |
|
|
|
|
void setCreateTorLastAddPath(const QString &path); |
|
|
|
|
QString getCreateTorLastSavePath() const; |
|
|
|
|
void setCreateTorLastSavePath(const QString &path); |
|
|
|
|
QString getCreateTorTrackers() const; |
|
|
|
|
void setCreateTorTrackers(const QString &path); |
|
|
|
|
QByteArray getCreateTorGeometry() const; |
|
|
|
|
void setCreateTorGeometry(const QByteArray &geometry); |
|
|
|
|
bool getCreateTorIgnoreRatio() const; |
|
|
|
|
void setCreateTorIgnoreRatio(const bool ignore); |
|
|
|
|
QString getTorImportLastContentDir() const; |
|
|
|
|
void setTorImportLastContentDir(const QString &path); |
|
|
|
|
QByteArray getTorImportGeometry() const; |
|
|
|
|
void setTorImportGeometry(const QByteArray &geometry); |
|
|
|
|
int getTransSelFilter() const; |
|
|
|
|
void setTransSelFilter(const int &index); |
|
|
|
|
QByteArray getTransHeaderState() const; |
|
|
|
|
void setTransHeaderState(const QByteArray &state); |
|
|
|
|
int getToolbarTextPosition() const; |
|
|
|
|
void setToolbarTextPosition(const int position); |
|
|
|
|
QPoint getPrefPos() const; |
|
|
|
|
void setPrefPos(const QPoint &pos); |
|
|
|
|
QStringList getPrefHSplitterSizes() const; |
|
|
|
|
void setPrefHSplitterSizes(const QStringList &sizes); |
|
|
|
|
QByteArray getPeerListState() const; |
|
|
|
|
void setPeerListState(const QByteArray &state); |
|
|
|
|
QString getPropSplitterSizes() const; |
|
|
|
|
void setPropSplitterSizes(const QString &sizes); |
|
|
|
|
QByteArray getPropFileListState() const; |
|
|
|
|
void setPropFileListState(const QByteArray &state); |
|
|
|
|
int getPropCurTab() const; |
|
|
|
|
void setPropCurTab(const int &tab); |
|
|
|
|
bool getPropVisible() const; |
|
|
|
|
void setPropVisible(const bool visible); |
|
|
|
|
QByteArray getPropTrackerListState() const; |
|
|
|
|
void setPropTrackerListState(const QByteArray &state); |
|
|
|
|
QByteArray getRssGeometry() const; |
|
|
|
|
void setRssGeometry(const QByteArray &geometry); |
|
|
|
|
QByteArray getRssHSplitterSizes() const; |
|
|
|
|
void setRssHSplitterSizes(const QByteArray &sizes); |
|
|
|
|
QStringList getRssOpenFolders() const; |
|
|
|
|
void setRssOpenFolders(const QStringList &folders); |
|
|
|
|
QByteArray getRssHSplitterState() const; |
|
|
|
|
void setRssHSplitterState(const QByteArray &state); |
|
|
|
|
QByteArray getRssVSplitterState() const; |
|
|
|
|
void setRssVSplitterState(const QByteArray &state); |
|
|
|
|
QString getSearchColsWidth() const; |
|
|
|
|
void setSearchColsWidth(const QString &width); |
|
|
|
|
QStringList getSearchEngDisabled() const; |
|
|
|
|
void setSearchEngDisabled(const QStringList &engines); |
|
|
|
|
QString getCreateTorLastAddPath() const; |
|
|
|
|
void setCreateTorLastAddPath(const QString &path); |
|
|
|
|
QString getCreateTorLastSavePath() const; |
|
|
|
|
void setCreateTorLastSavePath(const QString &path); |
|
|
|
|
QString getCreateTorTrackers() const; |
|
|
|
|
void setCreateTorTrackers(const QString &path); |
|
|
|
|
QByteArray getCreateTorGeometry() const; |
|
|
|
|
void setCreateTorGeometry(const QByteArray &geometry); |
|
|
|
|
bool getCreateTorIgnoreRatio() const; |
|
|
|
|
void setCreateTorIgnoreRatio(const bool ignore); |
|
|
|
|
QString getTorImportLastContentDir() const; |
|
|
|
|
void setTorImportLastContentDir(const QString &path); |
|
|
|
|
QByteArray getTorImportGeometry() const; |
|
|
|
|
void setTorImportGeometry(const QByteArray &geometry); |
|
|
|
|
int getTransSelFilter() const; |
|
|
|
|
void setTransSelFilter(const int &index); |
|
|
|
|
QByteArray getTransHeaderState() const; |
|
|
|
|
void setTransHeaderState(const QByteArray &state); |
|
|
|
|
int getToolbarTextPosition() const; |
|
|
|
|
void setToolbarTextPosition(const int position); |
|
|
|
|
|
|
|
|
|
// Temp code.
|
|
|
|
|
// See TorrentStatistics::loadStats() for details.
|
|
|
|
|
QVariantHash getStats() const; |
|
|
|
|
void removeStats(); |
|
|
|
|
// Temp code.
|
|
|
|
|
// See TorrentStatistics::loadStats() for details.
|
|
|
|
|
QVariantHash getStats() const; |
|
|
|
|
void removeStats(); |
|
|
|
|
|
|
|
|
|
//From old RssSettings class
|
|
|
|
|
bool isRSSEnabled() const; |
|
|
|
|
void setRSSEnabled(const bool enabled); |
|
|
|
|
uint getRSSRefreshInterval() const; |
|
|
|
|
void setRSSRefreshInterval(const uint &interval); |
|
|
|
|
int getRSSMaxArticlesPerFeed() const; |
|
|
|
|
void setRSSMaxArticlesPerFeed(const int &nb); |
|
|
|
|
bool isRssDownloadingEnabled() const; |
|
|
|
|
void setRssDownloadingEnabled(const bool b); |
|
|
|
|
QStringList getRssFeedsUrls() const; |
|
|
|
|
void setRssFeedsUrls(const QStringList &rssFeeds); |
|
|
|
|
QStringList getRssFeedsAliases() const; |
|
|
|
|
void setRssFeedsAliases(const QStringList &rssAliases); |
|
|
|
|
QList<QByteArray> getHostNameCookies(const QString &host_name) const; |
|
|
|
|
QList<QNetworkCookie> getHostNameQNetworkCookies(const QString& host_name) const; |
|
|
|
|
void setHostNameCookies(const QString &host_name, const QList<QByteArray> &cookies); |
|
|
|
|
//From old RssSettings class
|
|
|
|
|
bool isRSSEnabled() const; |
|
|
|
|
void setRSSEnabled(const bool enabled); |
|
|
|
|
uint getRSSRefreshInterval() const; |
|
|
|
|
void setRSSRefreshInterval(const uint &interval); |
|
|
|
|
int getRSSMaxArticlesPerFeed() const; |
|
|
|
|
void setRSSMaxArticlesPerFeed(const int &nb); |
|
|
|
|
bool isRssDownloadingEnabled() const; |
|
|
|
|
void setRssDownloadingEnabled(const bool b); |
|
|
|
|
QStringList getRssFeedsUrls() const; |
|
|
|
|
void setRssFeedsUrls(const QStringList &rssFeeds); |
|
|
|
|
QStringList getRssFeedsAliases() const; |
|
|
|
|
void setRssFeedsAliases(const QStringList &rssAliases); |
|
|
|
|
QList<QByteArray> getHostNameCookies(const QString &host_name) const; |
|
|
|
|
QList<QNetworkCookie> getHostNameQNetworkCookies(const QString& host_name) const; |
|
|
|
|
void setHostNameCookies(const QString &host_name, const QList<QByteArray> &cookies); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
#endif // PREFERENCES_H
|
|
|
|
|