2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02:00
|
|
|
*
|
|
|
|
* 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 3 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-11 19:15:06 +02:00
|
|
|
#ifndef THEMEMANAGER_H
|
|
|
|
#define THEMEMANAGER_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QIcon>
|
2011-09-11 19:15:06 +02:00
|
|
|
#include <QHash>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ThemeManager;
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
2012-03-04 18:30:34 +01:00
|
|
|
class Preferences;
|
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT ThemeManager : public QWidget
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-03-05 11:30:18 +01:00
|
|
|
explicit ThemeManager(QWidget* parent, Preferences* preferences);
|
2011-09-11 19:15:06 +02:00
|
|
|
~ThemeManager();
|
|
|
|
|
|
|
|
void save();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void currentChanged();
|
2011-09-18 15:35:44 +02:00
|
|
|
void showLicense();
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct Theme {
|
|
|
|
bool isValid;
|
|
|
|
QIcon icon;
|
|
|
|
QString name;
|
|
|
|
QString author;
|
|
|
|
QString shortDescription;
|
|
|
|
QString longDescription;
|
2011-09-18 15:35:44 +02:00
|
|
|
QString license;
|
2011-09-11 19:15:06 +02:00
|
|
|
};
|
|
|
|
|
2013-06-07 12:59:22 +02:00
|
|
|
Theme parseTheme(const QString &path, const QString &name);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
Ui::ThemeManager* ui;
|
2012-03-04 18:30:34 +01:00
|
|
|
Preferences* m_preferences;
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
QString m_activeTheme;
|
|
|
|
QHash<QString, Theme> m_themeHash;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // THEMEMANAGER_H
|