summaryrefslogtreecommitdiffstats
path: root/tools/assistant/compat/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/assistant/compat/config.h')
-rw-r--r--tools/assistant/compat/config.h165
1 files changed, 165 insertions, 0 deletions
diff --git a/tools/assistant/compat/config.h b/tools/assistant/compat/config.h
new file mode 100644
index 0000000..0858ad8
--- /dev/null
+++ b/tools/assistant/compat/config.h
@@ -0,0 +1,165 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+** This file is part of the Qt Assistant of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the either Technology Preview License Agreement or the
+** Beta Release License Agreement.
+**
+** 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, Nokia gives you certain
+** additional rights. These rights are described in the Nokia Qt LGPL
+** Exception version 1.0, 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.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at qt-sales@nokia.com.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include "profile.h"
+
+#include <QString>
+#include <QStringList>
+#include <QPixmap>
+#include <QMap>
+
+#include <QtGui/QFont>
+#include <QtGui/QFontDatabase>
+
+QT_BEGIN_NAMESPACE
+
+class Profile;
+
+struct FontSettings
+{
+ FontSettings() : useWindowFont(false), useBrowserFont(false),
+ windowWritingSystem(QFontDatabase::Latin), browserWritingSystem(QFontDatabase::Latin)
+ { }
+
+ QFont windowFont;
+ QFont browserFont;
+
+ bool useWindowFont;
+ bool useBrowserFont;
+
+ QFontDatabase::WritingSystem windowWritingSystem;
+ QFontDatabase::WritingSystem browserWritingSystem;
+};
+
+class Config
+{
+public:
+
+ Config();
+
+ void load();
+ void save();
+ Profile *profile() const { return profil; }
+ QString profileName() const { return profil->props[QLatin1String("name")]; }
+ bool validProfileName() const;
+ void hideSideBar( bool b );
+ bool sideBarHidden() const;
+ QStringList mimePaths();
+
+ // From profile, read only
+ QStringList docFiles() const;
+ QStringList docTitles() const;
+ QString indexPage( const QString &title ) const;
+ QString docImageDir( const QString &title ) const;
+ QPixmap docIcon( const QString &title ) const;
+
+ QStringList profiles() const;
+ QString title() const;
+ QString aboutApplicationMenuText() const;
+ QString aboutURL() const;
+ QPixmap applicationIcon() const;
+
+ // From QSettings, read / write
+ QString homePage() const;
+ void setHomePage( const QString &hom ) { home = hom; }
+
+ QStringList source() const;
+ void setSource( const QStringList &s ) { src = s; }
+
+ int sideBarPage() const { return sideBar; }
+ void setSideBarPage( int sbp ) { sideBar = sbp; }
+
+ QByteArray windowGeometry() const { return winGeometry; }
+ void setWindowGeometry( const QByteArray &geometry ) { winGeometry = geometry; }
+
+ QByteArray mainWindowState() const { return mainWinState; }
+ void setMainWindowState( const QByteArray &state ) { mainWinState = state; }
+
+ qreal fontPointSize() const { return pointFntSize; }
+ void setFontPointSize(qreal size)
+ {
+ pointFntSize = size;
+ m_fontSettings.useBrowserFont = true;
+ m_fontSettings.browserFont.setPointSizeF(size);
+ }
+
+ FontSettings fontSettings() { return m_fontSettings; }
+ void setFontSettings(const FontSettings &settings) { m_fontSettings = settings; }
+
+ QString assistantDocPath() const;
+
+ bool docRebuild() const { return rebuildDocs; }
+ void setDocRebuild( bool rb ) { rebuildDocs = rb; }
+
+ void saveProfile( Profile *profile );
+ void loadDefaultProfile();
+ bool defaultProfileExists();
+
+ static Config *configuration();
+ static Config *loadConfig(const QString &profileFileName);
+
+private:
+ Config( const Config &c );
+ Config& operator=( const Config &c );
+
+ void saveSettings();
+
+private:
+ Profile *profil;
+
+ QStringList profileNames;
+ QString home;
+ QStringList src;
+ QByteArray mainWinState;
+ QByteArray winGeometry;
+ qreal pointFntSize;
+ int sideBar;
+ bool hideSidebar;
+ bool rebuildDocs;
+ FontSettings m_fontSettings;
+};
+
+QT_END_NAMESPACE
+
+#endif // CONFIG_H