forked from alphaonex86/Ultracopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ThemesManager.h
87 lines (79 loc) · 3.09 KB
/
ThemesManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/** \file ThemesManager.h
\brief Define the class to manage and load the themes
\author alpha_one_x86
\licence GPL3, see the file COPYING */
#ifndef THEMES_MANAGER_H
#define THEMES_MANAGER_H
#include <QString>
#include <QObject>
#include <QIcon>
#include <QList>
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE_DIRECT
#include <QPluginLoader>
#endif
#include "Environment.h"
#include "ResourcesManager.h"
#include "OptionEngine.h"
#include "PluginsManager.h"
#include "LanguagesManager.h"
#include "LocalPluginOptions.h"
#include "FacilityEngine.h"
#include "interface/PluginInterface_Themes.h"
/** \brief Define the class to manage and load the themes
This class provide a core load and manage the themes */
class ThemesManager : public QObject
{
Q_OBJECT
//public slots:
/*/// \brief To change the current themes selected
bool changeCurrentTheme(QString theNewThemeToLoad);*/
public:
/** \brief To get image into the current themes, or default if not found
\param filePath The file path to search, like toto.png resolved with the root of the current themes
\see currentStylePath */
QIcon loadIcon(const QString &fileName);
/** \brief To get if one themes instance
\see Core() */
PluginInterface_Themes * getThemesInstance();
static ThemesManager *themesManager;
/// \brief Create the manager and load the defaults variables
ThemesManager();
/// \brief Destroy the themes manager
~ThemesManager();
private:
/// \brief The default themes path where it has theme's files
QString defaultStylePath;
/// \brief The current themes path loaded by ultracopier
QString currentStylePath;
/// \brief OptionEngineGroupKey then: Group -> Key
struct PluginsAvailableThemes
{
PluginsAvailable plugin;
PluginInterface_ThemesFactory *factory;
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE_DIRECT
QPluginLoader *pluginLoader;
#endif
LocalPluginOptions *options;
};
QList<PluginsAvailableThemes> pluginList;
int currentPluginIndex;
bool stopIt;
signals:
/// \brief send this signal when the themes have changed
void theThemeNeedBeUnloaded() const;
void theThemeIsReloaded() const;
void newThemeOptions(const QString &name,QWidget *,const bool &isLoaded,const bool &havePlugin) const;
void previouslyPluginAdded(PluginsAvailable) const;
private slots:
/// \brief reload the themes
void onePluginAdded(const PluginsAvailable &plugin);
#ifndef ULTRACOPIER_PLUGIN_ALL_IN_ONE
void onePluginWillBeRemoved(const PluginsAvailable &plugin);
#endif
void allPluginIsLoaded();
void newOptionValue(const QString &group,const QString &name,const QVariant &value);
#ifdef ULTRACOPIER_DEBUG
void debugInformation(const Ultracopier::DebugLevel &level, const QString& fonction, const QString& text, const QString& file, const int& ligne);
#endif // ULTRACOPIER_DEBUG
};
#endif // THEMES_MANAGER_H