/************************************************************************** ** ** Copyright (C) 2012-2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Installer Framework. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** **************************************************************************/ #ifndef SETTINGS_H #define SETTINGS_H #include "constants.h" #include "installer_global.h" #include #include #include #include #include #if QT_VERSION < 0x050000 Q_DECLARE_METATYPE(QNetworkProxy) #endif namespace QInstaller { class Repository; class INSTALLER_EXPORT Settings { Q_DECLARE_TR_FUNCTIONS(Settings) public: enum Update { UpdatesApplied, NoUpdatesApplied }; enum ProxyType { NoProxy, SystemProxy, UserDefinedProxy }; enum ParseMode { StrictParseMode, RelaxedParseMode }; explicit Settings(); ~Settings(); Settings(const Settings &other); Settings &operator=(const Settings &other); static Settings fromFileAndPrefix(const QString &path, const QString &prefix, ParseMode parseMode = StrictParseMode); QString logo() const; QString title() const; QString publisher() const; QString url() const; QString watermark() const; QString banner() const; QString background() const; QString icon() const; QString installerApplicationIcon() const; QString installerWindowIcon() const; QString systemIconSuffix() const; QString applicationName() const; QString applicationVersion() const; QString runProgram() const; QString runProgramArguments() const; QString runProgramDescription() const; QString startMenuDir() const; QString targetDir() const; QString adminTargetDir() const; QString removeTargetDir() const; QString uninstallerName() const; QString uninstallerIniFile() const; QString configurationFileName() const; bool dependsOnLocalInstallerBinary() const; bool hasReplacementRepos() const; QSet repositories() const; QSet defaultRepositories() const; void setDefaultRepositories(const QSet &repositories); void addDefaultRepositories(const QSet &repositories); Settings::Update updateDefaultRepositories(const QHash > &updates); QSet temporaryRepositories() const; void setTemporaryRepositories(const QSet &repositories, bool replace); void addTemporaryRepositories(const QSet &repositories, bool replace); QSet userRepositories() const; void setUserRepositories(const QSet &repositories); void addUserRepositories(const QSet &repositories); bool allowSpaceInPath() const; bool allowNonAsciiCharacters() const; bool containsValue(const QString &key) const; QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const; QVariantList values(const QString &key, const QVariantList &defaultValue = QVariantList()) const; bool repositorySettingsPageVisible() const; Settings::ProxyType proxyType() const; void setProxyType(Settings::ProxyType type); QNetworkProxy ftpProxy() const; void setFtpProxy(const QNetworkProxy &proxy); QNetworkProxy httpProxy() const; void setHttpProxy(const QNetworkProxy &proxy); QStringList translations() const; void setTranslations(const QStringList &translations); private: class Private; QSharedDataPointer d; }; } Q_DECLARE_METATYPE(QInstaller::Settings) #endif // SETTINGS_H