mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-26 22:42:44 +01:00
155 lines
4.8 KiB
C++
155 lines
4.8 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef CONFIGFILE_H
|
|
#define CONFIGFILE_H
|
|
|
|
#include "owncloudlib.h"
|
|
#include <QSharedPointer>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
class QWidget;
|
|
class QHeaderView;
|
|
|
|
namespace OCC {
|
|
|
|
class AbstractCredentials;
|
|
|
|
/**
|
|
* @brief The ConfigFile class
|
|
* @ingroup libsync
|
|
*/
|
|
class OWNCLOUDSYNC_EXPORT ConfigFile
|
|
{
|
|
public:
|
|
ConfigFile();
|
|
|
|
enum Scope { UserScope, SystemScope };
|
|
|
|
QString configPath() const;
|
|
QString configPathWithAppName() const;
|
|
QString configFile() const;
|
|
QString excludeFile(Scope scope) const;
|
|
static QString excludeFileFromSystem(); // doesn't access config dir
|
|
|
|
bool exists();
|
|
|
|
QString defaultConnection() const;
|
|
|
|
// the certs do not depend on a connection.
|
|
QByteArray caCerts();
|
|
void setCaCerts( const QByteArray& );
|
|
|
|
bool passwordStorageAllowed(const QString &connection = QString::null );
|
|
|
|
// max count of lines in the log window
|
|
int maxLogLines() const;
|
|
void setMaxLogLines(int);
|
|
|
|
/* Server poll interval in milliseconds */
|
|
int remotePollInterval( const QString& connection = QString() ) const;
|
|
/* Set poll interval. Value in microseconds has to be larger than 5000 */
|
|
void setRemotePollInterval(int interval, const QString& connection = QString() );
|
|
|
|
/* Force sync interval, in milliseconds */
|
|
quint64 forceSyncInterval(const QString &connection = QString()) const;
|
|
|
|
bool monoIcons() const;
|
|
void setMonoIcons(bool);
|
|
|
|
bool crashReporter() const;
|
|
void setCrashReporter(bool enabled);
|
|
|
|
// proxy settings
|
|
void setProxyType(int proxyType,
|
|
const QString& host = QString(),
|
|
int port = 0, bool needsAuth = false,
|
|
const QString& user = QString(),
|
|
const QString& pass = QString());
|
|
|
|
int proxyType() const;
|
|
QString proxyHostName() const;
|
|
int proxyPort() const;
|
|
bool proxyNeedsAuth() const;
|
|
QString proxyUser() const;
|
|
QString proxyPassword() const;
|
|
|
|
/** 0: no limit, 1: manual, >0: automatic */
|
|
int useUploadLimit() const;
|
|
int useDownloadLimit() const;
|
|
void setUseUploadLimit(int);
|
|
void setUseDownloadLimit(int);
|
|
/** in kbyte/s */
|
|
int uploadLimit() const;
|
|
int downloadLimit() const;
|
|
void setUploadLimit(int kbytes);
|
|
void setDownloadLimit(int kbytes);
|
|
/** [checked, size in MB] **/
|
|
QPair<bool, quint64> newBigFolderSizeLimit() const;
|
|
void setNewBigFolderSizeLimit(bool isChecked, quint64 mbytes);
|
|
|
|
static bool setConfDir(const QString &value);
|
|
|
|
bool optionalDesktopNotifications() const;
|
|
void setOptionalDesktopNotifications(bool show);
|
|
|
|
int timeout() const;
|
|
|
|
// send a checksum as a header along with the transmission or not.
|
|
// possible values:
|
|
// empty: no checksum calculated or expected.
|
|
// or "Adler32", "MD5", "SHA1"
|
|
QString transmissionChecksum() const;
|
|
|
|
void saveGeometry(QWidget *w);
|
|
void restoreGeometry(QWidget *w);
|
|
|
|
// how often the check about new versions runs, default two hours
|
|
int updateCheckInterval( const QString& connection = QString() ) const;
|
|
|
|
bool skipUpdateCheck( const QString& connection = QString() ) const;
|
|
void setSkipUpdateCheck( bool, const QString& );
|
|
|
|
void saveGeometryHeader(QHeaderView *header);
|
|
void restoreGeometryHeader(QHeaderView *header);
|
|
|
|
QString certificatePath() const;
|
|
void setCertificatePath(const QString& cPath);
|
|
QString certificatePasswd() const;
|
|
void setCertificatePasswd(const QString& cPasswd);
|
|
|
|
protected:
|
|
QVariant getPolicySetting(const QString& policy, const QVariant& defaultValue = QVariant()) const;
|
|
void storeData(const QString& group, const QString& key, const QVariant& value);
|
|
QVariant retrieveData(const QString& group, const QString& key) const;
|
|
void removeData(const QString& group, const QString& key);
|
|
bool dataExists(const QString& group, const QString& key) const;
|
|
|
|
private:
|
|
QVariant getValue(const QString& param, const QString& group = QString::null,
|
|
const QVariant& defaultValue = QVariant()) const;
|
|
void setValue(const QString& key, const QVariant &value);
|
|
|
|
private:
|
|
typedef QSharedPointer< AbstractCredentials > SharedCreds;
|
|
|
|
static bool _askedUser;
|
|
static QString _oCVersion;
|
|
static QString _confDir;
|
|
};
|
|
|
|
}
|
|
#endif // CONFIGFILE_H
|